I'm trying to find a way of encoding a bunch of files with x264.
Basically, is if it possible to run these through a yuv4mpeg-pipe, and if so, how?
Or do I have to merge them after encoding?
The clips are captured with Fraps, and since the developers are keeping the avi 1.0 spec, each session gets split into a million files...*facepalm*
I've read that MP4Box supports concatenation of clips, but so far I haven't got the binaries working..
Also, it only supports 20 files at a time, which means a considerably longer script -- thus plan B...
Thanks!
+ Reply to Thread
Results 1 to 3 of 3
-
-
From the top of my head -
cat file*.avi | ffmpeg -i - -s 1280x720 -f yuv4mpegpipe - | x264 $options -o out.264 - 1280x720 --fps 30000/1001
Note the - after out.264, which signifies standard in
When using standard in with x264, you need to specify the resolution and fps.Linux _is_ user-friendly. It is not ignorant-friendly and idiot-friendly.
Similar Threads
-
MeGUI x264 encoding problem. Video stutters/flickers.
By EasyDrama in forum Video ConversionReplies: 17Last Post: 20th Mar 2014, 23:36 -
Help With Batch Encoding Multiple DV files to h.264 MP4's.
By mpalm887 in forum Video ConversionReplies: 2Last Post: 27th Jan 2010, 23:02 -
ripping/encoding a blu-ray with multiple .m2ts files
By badreligionhead in forum Blu-ray RippingReplies: 5Last Post: 4th Nov 2009, 20:37 -
Best CPU chart for x264 HD Video Encoding Performance
By INFRATOM in forum Media Center PC / MediaCentersReplies: 1Last Post: 2nd Feb 2009, 22:55 -
Cutting x264 Video Files
By Ruro Jiruries in forum EditingReplies: 8Last Post: 13th Oct 2008, 17:11