Convert .VOB files to .AVI in Linux with FFMPEG:
$ ffmpeg -i input.vob -f avi -vcodec mpeg4 -b 800k -g 300 -bf 2 -acodec libmp3lame -ab 128k output.avi
*NOTES:
- where input.vob is the vob file you want to convert and output.avi your desired avi file name.
- the $ sign at the start of the command is to signify the terminal's prompt, no need to type this in.
0 comments:
Post a Comment