Mobile (ipod,ipad,phone, …) video conversion
25. december, 2011
How to convert all your camera/phone videoclips in the current folder to streaming mp4 format (get ffmpeg and mp4box – they are free):
1: open a cmd prompt
2: cd into videoclip folder, so the folder is the current path
3: run these commands
mkdir output
for /r %v in (*.*) do ffmpeg.exe -i “%v” -vcodec libx264 -pass 1 “output\%~v.mp4″
cd output
for /r %v in (*.*) do mp4box -isma -inter 500 “%v”
