PDA

View Full Version : How do you use ffmpeg2theora?


FISHERMAN
March 8th, 2006, 08:49 AM
How do you use ffmpeg2theora? I've searched and serched, but I couldn't really find an answer.
I probably should tell that a relative newbie with CLI.
Example: I have a file XYZ.avi and I want to convert it to a theora file(with ffmpeg2theora). What should I do?

John.Michael.Kane
March 8th, 2006, 12:31 PM
http://www.dogphilosophy.net/SECTION-Technical_Stuff/ogg-theora-microhowto.html
http://www.annodex.net/anx_theora.html
http://www.v2v.cc/~j/ffmpeg2theora/
http://www.videolan.org/doc/videolan-howto/en/ch09.html

JuanC
March 15th, 2006, 07:55 PM
Take a look here :
http://www.v2v.cc/~j/ffmpeg2theora/examples.html

Example :
ffmpeg2theora -v 7 -a 3 XYZ.avi

This output a XYZ.ogg file with Video Quality 7 (of 10) and Audio Quality 3 (of 10).

For more info type ffmpeg2theora -h

Lovechild
March 16th, 2006, 06:58 AM
oh.. now I can finally wath all these old vids - great tools, if only it was a GStreamer 0.10 based app then it would handle more formats

H.E. Pennypacker
July 25th, 2006, 12:21 AM
To use ffmpeg2theora, first go to the folder the video file is located it in (using cd command). Then, type ffmpeg2theora filename.extension (e.g. susie.mpg). It will then convert the file into Ogg Theora without changing anything, and without replacing the original file.

I highly recommend Ogg Theora for saving space without losing video quality. Ogg Theora files are generally smaller when converted, and they still retain their quality.

So far, I have had luck with all MPG videos, and on and off luck with WMV, MOV, and AVI using ffmpeg2theora.

zachsmith88
November 30th, 2010, 03:25 AM
I have figured out how to use this for converting single files really well. However, when I use:
$ ffmpeg2theora *.flv

to convert all files associated with that type they don't keep their original file names. In fact the input files are at the bottom of the alphabet and they end up getting renamed to whatever file is at the top of the alphabet.

If anyone has some insight on this issue that would be great.

saulgoode
November 30th, 2010, 05:33 AM
You should've probably started a new thread with your question. Nonetheless, you can apply ffmpeg2theora to multiple files using a 'for' loop.

for x in *.flv; do ffmpeg2theora "$x" ; done