We are trying to convert a quicktime mpeg 4 file to a mpeg2 transport stream using vlc command line. Given the following parameters
C:\Program Files\VideoLAN\VLC>vlc -I dummy -vvv c:\smaller.mov :sout=#transcode{
vcodec=mp2v,vb=15000,acodec=mpga,ab=192,channels=2}:duplicate{dst=std{access=file
,mux=ts,url="c:\d2.ts"}}
give us a decent quality mpeg2. If we increase the bitrate however,
C:\Program Files\VideoLAN\VLC>vlc -I dummy -vvv c:\smaller.mov :sout=#transcode{
vcodec=mp2v,vb=20000,acodec=mpga,ab=192,channels=2}:duplicate{dst=std{access=file
,mux=ts,url="c:\d2.ts"}}
it results in a lower quality file. Is there anything we can do about it?