Greetings friends, this was kind of a hassle to put together, so I figured I should post it somewhere for posterity
This is a windows command line command which will loop through all of the avi files in the current directory and all subdirectories, converting them to 3gp format using H264 and AAC at the proper resolution with FFMPEG
You have to have FFMPEG and the correct codecs available
Put this into a file named .bat, then run it (or just paste this command into a windows command shell prompt)
Code:
FOR /r %%n IN ("*.avi") DO ffmpeg -i "%%n" -threads 3 -s qcif -vcodec libx264 -acodec libfaac -ac 1 -r 25 -ab 128000 -s 480x320 -y "%%n.3gp"
There you have it, no need to fork over $30 for some program to do it for you
Bookmarks