summaryrefslogtreecommitdiff
path: root/doc/demuxers.texi
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2011-12-08 17:20:17 +0100
committerLuca Barbato <lu_zero@gentoo.org>2011-12-09 18:26:31 +0100
commitca410b4eb025c63f2740c8db7ae8d6d98715f5e3 (patch)
tree5fc724df41f3ef6b4e7409b7f1f668383f6149e1 /doc/demuxers.texi
parent9bdfe9ac1c2ecffd23436b8aecee39d749ba0bd8 (diff)
doc: update demuxers section
Cleanup tags usage and update commandline examples.
Diffstat (limited to 'doc/demuxers.texi')
-rw-r--r--doc/demuxers.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/demuxers.texi b/doc/demuxers.texi
index fc03459417..c3049ddfc4 100644
--- a/doc/demuxers.texi
+++ b/doc/demuxers.texi
@@ -49,19 +49,19 @@ sequence of filenames of the form @file{i%m%g-1.jpg},
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
+The following example shows how to use @command{avconv} for creating a
video from the images in the file sequence @file{img-001.jpeg},
@file{img-002.jpeg}, ..., assuming an input framerate of 10 frames per
second:
@example
-ffmpeg -r 10 -f image2 -i 'img-%03d.jpeg' out.avi
+avconv -i 'img-%03d.jpeg' -r 10 out.mkv
@end example
Note that the pattern must not necessarily contain "%d" or
"%0@var{N}d", for example to convert a single image file
@file{img.jpeg} you can employ the command:
@example
-ffmpeg -f image2 -i img.jpeg img.png
+avconv -i img.jpeg img.png
@end example
@section applehttp