How would I string together a few VOB or AVI files to make one file? Using linux?
I can do the conversion from VOB to AVI, but then I have a few avi files for one movie. I'm not concerned whether I have to concatenate the VOB or the AVI files so long as the product is one file in the end.
+ Reply to Thread
Results 1 to 7 of 7
-
-
Thanks, but I tried that and I can't seem get that thing to compile. I tried this:
cat file1.avi file2.avi file3.avi file4.avi >> whole_file.avi
But when I play it, it only recognizes file1.avi, but I know the rest of them are in the file because if you add up the file sizes it equals the size of whole_file.avi.
But when I do this:
ffmpeg -i whole_file.avi -f avi -vcodec libx264 -aspect 4:3 -b 1024k -g 300 -bf 2 -acodec libmp3lame -ab 128k ./file-final.avi
It seems to come out fine, but I already converted it. I don't need to convert it twice? Plus, the quality is reduced... -
This seems to work, but it drops many frames and the audio/video are out-of-sync:
Code:mencoder -ovc copy -oac copy -o all.VOB $(ls -1 *.VOB)
Similar Threads
-
DVD (VOB files) to avi
By hilario in forum DVD RippingReplies: 6Last Post: 30th Oct 2009, 10:44 -
Best way to concatenate nine 10-minute Flash videos?
By Verlager in forum LinuxReplies: 18Last Post: 27th Apr 2009, 01:28 -
Converting .vob files to AVI
By abrathet in forum ffmpegX general discussionReplies: 1Last Post: 21st Sep 2008, 20:43 -
For VOB files to AVI, I use avi.net . . Question
By nhbfan12345 in forum DVD RippingReplies: 4Last Post: 10th Sep 2008, 23:02 -
VOB to Multiple Avi Files
By Idlewild in forum ffmpegX general discussionReplies: 2Last Post: 25th Jan 2008, 01:41