Browse Source

update docs to reflect AVImageFormat removing

Originally committed as revision 6899 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Baptiste Coudurier 19 years ago
parent
commit
3c88ea2476
2 changed files with 6 additions and 15 deletions
  1. +6
    -9
      doc/faq.texi
  2. +0
    -6
      doc/ffplay-doc.texi

+ 6
- 9
doc/faq.texi View File

@@ -30,19 +30,16 @@ If the JPEGs are named img1.jpg, img2.jpg, img3.jpg,..., use:


The same system is used for the other image formats. The same system is used for the other image formats.


(Note: you need -f image2 for all image formats except GIF; see next section).
@section How do I encode movie to single pictures ?


@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 @example
ffmpeg -f image2 -i menu.png -f image2 menu.jpg
ffmpeg -i movie.mpg movie%d.jpg
@end example @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
@file{movie1.jpg}, @file{movie2.jpg}, etc...


Instead of relying on file format self-recognition, you may also use Instead of relying on file format self-recognition, you may also use
@table @option @table @option
@@ -54,7 +51,7 @@ to force the encoding.


Applying that to the previous example: Applying that to the previous example:
@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 @end example


Beware that there is no "jpeg" codec. Use "mjpeg" instead. Beware that there is no "jpeg" codec. Use "mjpeg" instead.


+ 0
- 6
doc/ffplay-doc.texi View File

@@ -43,12 +43,6 @@ disable video
disable graphical display disable graphical display
@item -f fmt @item -f fmt
force format force format
@item -img img_fmt
This option is used to force a given image format
when playing image sequences. Example:
@example
ffplay -img pgmyuv tests/vsynth1/%d.pgm
@end example
@end table @end table


@section Advanced options @section Advanced options


Loading…
Cancel
Save