search for: theora_fil

Displaying 2 results from an estimated 2 matches for "theora_fil".

Did you mean: theora_file
2004 Sep 12
1
using theora
...yte raw dv format video clip. First, I copied these lines from ogg-theora-microhowto.html <snip> mplayer -ao pcm -aofile stream.wav -vo null file_to_be_encoded.avi & mplayer -vo yuv4mpeg -ao null -nosound file_to_be_encoded.avi & encoder_example -v 1 -a 1 stream.wav stream.yuv > theora_file.ogg </snip> into a file named "encode", substituted "file_to_be_encoded" and "theora_file" with my own filenames, and gave "encode" execute permission. It took about 15 minutes to encode my dv format clip, the resulting .ogg file was 6.8 MBytes, and...
2002 Sep 27
2
Using Theora Micro-HOWTO
...original: mplayer -ao null -nosound -vo yuv4mpeg file_to_be_encoded.avi & (and then - I do this in a separate terminal window, but as far as I know it can be done in the same window, albeit messily as both programs output status messages) encoder_example -v 1 -a 1 stream.wav stream.yuv > theora_file.ogg (if/when encoder_example supports 'piped' pcm data, you will be able to: mkfifo -m 660 stream.wav and there will be only one mplayer command line to call before the encoder_example: mplayer -ao pcm -aofile stream.wav -vo yuv4mpeg file_to_be_encoded.avi & The encoder_example l...