Creating Ogg video files on Linux
A easy way to convert a video to theora (ogg) format is to use
ffmpeg2theora.
Just download
the binary and run
| ffmpeg2theora videoclip.avi |
| mkfifo stream.wav |
| mkfifo stream.yuv |
| mplayer -quiet -ao pcm -aofile stream.wav -vo null -vc null inputvideo.avi |
| mplayer -quiet -vo yuv4mpeg -ao null -ac null -nosound inputvideo.avi |
| encoder_example -v 3 -a 2 stream.wav stream.yuv > outfile.ogg |