Log in

View Full Version : Batch Conversion


Jimpants
21st August 2010, 23:03
I was wondering if there is a way to batch convert a folder or mpeg files and compress them into avi. Currently I am using avi.net which lets me convert, but you have to input the files individually and i was wondering if there was a way to automate this process. So for instance I would select a folder called rip where my files are stored as MPEG and say I want all of the files to be output at 720 pixels wide and 2000 kbps and have it convert all of the files in that folder. Sorry I am not incredibly experienced in the art of ripping so I hope my post is clear, if not I will gladly provide more information.
Thanks!

J_Darnley
22nd August 2010, 14:32
Use a batch script with command line tool. For example:

FOR %%A IN (*.mpeg) DO (
ffmpeg -i "%%~A" "%%~nA.avi"
)