I have some files that are badly encoded with the wrong AR. If I play them in VLC the picture is all squashed. It's easy to change this in the GUI. Select 16:9 and the picture is perfect. So I want to transcode them to the correct aspect ratio. But it's impossible.
From the command line I can get the file to play on the screen in the correct AR using
Code: Select all
vlc vts_01_0.vob --aspect-ratio "16:9"
Code: Select all
vlc "vts_01_0.vob" --aspect-ratio "16:9" --sout "#transcode{vcodec=mp2v}:std{access=file,mux=ps,dst="vlcfile.mpg"}"
I then tried duplicate so I could observe what was happening
Code: Select all
vlc "vts_01_0.vob" --aspect-ratio "16:9" --sout "#transcode{vcodec=mp2v}:duplicate{dst=std{access=file,mux=ps,dst="vlcfile.mpg"},dst=display}"
I read somewhere that it may be a bug in the current version. So I downloaded 1.2.0-git-20100502 ... etc, but it was no better.
Can anyone suggest how to do this.