Familien Schøler's blog

Lidt af hvert – blogbart eller ej, så er der en lille risiko for at du finder det her

Mobile (ipod,ipad,phone, …) video conversion

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”

Send en kommentar