I am looking to batch convert a bunch of XviD avi's to H264 MP4 for compatability with my LG ST600. The ST600 plays avi's but constantly stutters and pixelates but MP4's play fine. I have converted a few 1 at a time using handbrake and the resulted MP4's play perfect on the ST600 and I am happy with the output quality. I would like to use an application that will allow me to just feed a bunch of avi's then convert them to mp4 preserving the originals files resolution and file size. Something like Avirecomp which alays keeps original resolution and file size for the output settings except instead of going avi -> avi I would be going avi-> mp4. Any suggestions? Thanks
+ Reply to Thread
Results 1 to 5 of 5
-
-
Freemake video converter(ADWARE ALERT!!, be sure to deselect any toolbars when you install it). Load all avis. Click to MP4. Select preset Same source. Convert. But be sure to test with one mp4 and see how it works. And remeber that you LG might not support HD frame size/resolutions.
Or maybe a command line batch with ffmpeg. -
I would probably just send them through a ffmpeg batch file. Can't really address keeping them the same size, but can give you basically the same quality.
Code:ffmpeg -i input -vcodec libx264 -crf 18 -acodec copy output.mp4
Anyhow, a simple batch file for this would be:
Code:setlocal set ffmpeg="Path\To\ffmpeg.exe" FOR %%A IN (*.avi) DO ( %ffmpeg% -i %%A -vcodec libx264 -crf 18 -acodec copy %%~nA.mp4 )
-
I thought I'd point out that handbrake does have a batch encode option. Select 'add to queue' once your file conversion is set the way you want. Then add another and repeat until you have as many as you want in the batch.
Edit - though i think you still have to fiddle with some individual settings with each file like subtitles and audio settings. But the video details you want like resolution and stuff should autopopulate from your last setting. The audio and subtitles will need to be set for each file so far as I know. There are handbrake guides out there so check one out for the batch encoding features for more detaill.Donatello - The Shredder? Michelangelo - Maybe all that hardware is for making coleslaw?
Similar Threads
-
Need to batch (or queue) convert raw h264 file to mp4
By dukestravels07 in forum Newbie / General discussionsReplies: 10Last Post: 29th Mar 2015, 11:45 -
MPEG Streamclip MPEG-TS to MPEG4/H264 (file size & aspect ratio query)
By Heathy65 in forum Video ConversionReplies: 5Last Post: 4th Apr 2012, 11:31 -
How to convert DVD TV episodes to AVI Xvid or MP4 H264 with subtitles
By Baldrick in forum User guidesReplies: 9Last Post: 5th Jun 2010, 02:06 -
MP4/h264 Exact File Size Encoding
By Trismegistus in forum Video ConversionReplies: 1Last Post: 23rd May 2010, 08:57 -
h264 (MP4) to XviD (AVI) Conversion Trouble
By m93 in forum Video ConversionReplies: 5Last Post: 12th Dec 2008, 10:21