i was testing transcoding of a MPEG PS with mpeg 4 codec with VLC and FFMPEG separately.
Though i select the encoder as FFMPEG with VLC, the quality is very poor comparing with the FFMPEG encoded clip.
also i'm very much bandwidth restricted and that's why i'm keeping 200kbps/18 fps, i simply cannot afford bandwidth.
VLC transocde code: (under windows, only the sout is shown here)
Code: Select all
:no-sout-audio :sout=#transcode{venc=ffmpeg,vcodec=mp4v,width=320,height=240,vb=200,fps=18}:display
Code: Select all
ffmpeg -i music.mpg -vcodec mpeg4 -vb 200000 -r 18 -s 320x240 -an -f mp4 music.mp4
any ideas how to improve the quality with mpeg4 transcoding in VLC ? Since VLC only allow few ffmpeg options, i cannot use ffmpeg solely.
( i played with the advanced ffmpeg options mentioned in the wiki, but still it couldn't match the original ffmpeg encoder it seems)