diff options
author | tripp <eliared@yahoo.com> | 2008-07-27 19:38:25 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-07-27 19:38:25 +0000 |
commit | 9c1703720003af918afd4ab2d273b4f43fddaef1 (patch) | |
tree | 64ea4a921b6defbec811fc05f8ff328cec8d2b09 | |
parent | d3d265b28866f6ef6f9ea588a7049c60c7b74b5b (diff) | |
download | ffmpeg-9c1703720003af918afd4ab2d273b4f43fddaef1.tar.gz |
Fix and clarify invalid examples for framerate override in the documentation.
patch by tripp, eliared yahoo com
Originally committed as revision 14431 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | doc/ffmpeg-doc.texi | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/doc/ffmpeg-doc.texi b/doc/ffmpeg-doc.texi index b87fd3ac0c..57dde53557 100644 --- a/doc/ffmpeg-doc.texi +++ b/doc/ffmpeg-doc.texi @@ -164,19 +164,15 @@ then applied to the next input or output file. ffmpeg -i input.avi -b 64k output.avi @end example -* To force the frame rate of the input and output file to 24 fps: -@example -ffmpeg -r 24 -i input.avi output.avi -@end example - * To force the frame rate of the output file to 24 fps: @example ffmpeg -i input.avi -r 24 output.avi @end example -* To force the frame rate of input file to 1 fps and the output file to 24 fps: +* To force the frame rate of the input file (valid for raw formats only) +to 1 fps and the frame rate of the output file to 24 fps: @example -ffmpeg -r 1 -i input.avi -r 24 output.avi +ffmpeg -r 1 -i input.m2v -r 24 output.avi @end example The format option may be needed for raw input files. |