Thursday, December 2, 2010

Convert mp4 into ogv

With ffmpeg2theora you can convert mp4 files to theora ogv files.

ffmpeg2theora filename.mp4

In the following case all mp4 in that directory will be converted into ogv without video output.

for i in *.mp4; do ffmpeg2theora --novideo -a5 "$i"; done

No comments: