[SCM] libav/experimental: Add documentation for the image2 demuxer.

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 17:21:39 UTC 2013


The following commit has been merged in the experimental branch:
commit 2bd02e2f0ed44e32ae8c501c03fdd953f8951403
Author: Stefano Sabatini <stefano.sabatini-lala at poste.it>
Date:   Sun Jan 9 10:22:23 2011 +0000

    Add documentation for the image2 demuxer.
    
    Originally committed as revision 26283 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/doc/demuxers.texi b/doc/demuxers.texi
index d6d9d96..5fcaf4f 100644
--- a/doc/demuxers.texi
+++ b/doc/demuxers.texi
@@ -18,4 +18,45 @@ enabled demuxers.
 
 The description of some of the currently available demuxers follows.
 
+ at section image2
+
+Image file demuxer.
+
+This demuxer reads from a list of image files specified by a pattern.
+
+The filename of each file to read must contain a sequential number,
+which specifies the position of the file in the sequence.
+
+The pattern must contain the string "%d" or "%0 at var{N}d", which
+specifies the position of the characters representing the seqential
+number in each filename matched by the pattern. If the form
+"%d0 at var{N}d" is used, the string representing the number in each
+filename is 0-padded and @var{N} is the total number of 0-padded
+digits representing the number. The literal character '%' can be
+specified in the pattern with the string "%%".
+
+The first filename of the file sequence specified by the pattern must
+contain a number inclusively contained between 0 and 4, all the
+following numbers must be sequential.
+
+The pattern may contain a suffix which is used to automatically
+determine the format of the images contained in the files.
+
+For example the pattern "img-%03d.bmp" will match a sequence of
+filenames of the form @file{img-001.bmp}, @file{img-002.bmp}, ...,
+ at file{img-010.bmp}, etc.; the pattern "i%%m%%g-%d.jpg" will match a
+sequence of filenames of the form @file{i%m%g-1.jpg},
+ at file{i%m%g-2.jpg}, ..., @file{i%m%g-10.jpg}, etc.
+
+The size, the pixel format, and the format of each image must be the
+same for all the files in the sequence.
+
+The following example shows how to use @file{ffmpeg} for creating a
+video from the images in the file sequence @file{img-001.jpeg},
+ at file{img-002.jpeg}, ..., assuming an input framerate of 10 frames per
+second:
+ at example
+ffmpeg -r 10 -f image2 -i 'img-%03d.jpeg' out.avi
+ at end example
+
 @c man end INPUT DEVICES

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list