[Ffmpeg-cvslog] r6899 - in trunk/doc: faq.texi ffplay-doc.texi

bcoudurier subversion
Sun Nov 5 14:31:58 CET 2006


Author: bcoudurier
Date: Sun Nov  5 14:31:57 2006
New Revision: 6899

Modified:
   trunk/doc/faq.texi
   trunk/doc/ffplay-doc.texi

Log:
update docs to reflect AVImageFormat removing

Modified: trunk/doc/faq.texi
==============================================================================
--- trunk/doc/faq.texi	(original)
+++ trunk/doc/faq.texi	Sun Nov  5 14:31:57 2006
@@ -30,19 +30,16 @@
 
 The same system is used for the other image formats.
 
-(Note: you need -f image2 for all image formats except GIF; see next section).
+ at section How do I encode movie to single pictures ?
 
- at section Only GIF is listed by -format. Is that the only accepted image format?
+Use:
 
-No, there are more; they are listed among the video codecs:
-  jpeg, png, ppm, pbm, pam, pgm.
-
-For example:
 @example
-  ffmpeg -f image2 -i menu.png -f image2 menu.jpg
+  ffmpeg -i movie.mpg movie%d.jpg
 @end example
 
-The @file{menu.png} used as input will be converted to @file{menu.jpg}.
+The @file{movie.mpg} used as input will be converted to
+ at file{movie1.jpg}, @file{movie2.jpg}, etc...
 
 Instead of relying on file format self-recognition, you may also use
 @table @option
@@ -54,7 +51,7 @@
 
 Applying that to the previous example:
 @example
-  ffmpeg -f image2 -vcodec png -i menu.png -f image2 -vcodec mjpeg menu.jpg
+  ffmpeg -i movie.mpg -f image2 -vcodec mjpeg menu%d.jpg
 @end example
 
 Beware that there is no "jpeg" codec. Use "mjpeg" instead.

Modified: trunk/doc/ffplay-doc.texi
==============================================================================
--- trunk/doc/ffplay-doc.texi	(original)
+++ trunk/doc/ffplay-doc.texi	Sun Nov  5 14:31:57 2006
@@ -43,12 +43,6 @@
 disable graphical display
 @item -f fmt
 force format
- at item -img img_fmt
-This option is used to force a given image format
-when playing image sequences. Example:
- at example
-ffplay -img pgmyuv tests/vsynth1/%d.pgm
- at end example
 @end table
 
 @section Advanced options




More information about the ffmpeg-cvslog mailing list