[FFmpeg-cvslog] doc/demuxers: fix image2 examples

Paul B Mahol git at videolan.org
Sun Sep 29 20:19:00 CEST 2013


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Sun Sep 29 16:36:25 2013 +0000| [5a47f12390d2419ab502276869b388c871dde338] | committer: Paul B Mahol

doc/demuxers: fix image2 examples

Signed-off-by: Paul B Mahol <onemda at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5a47f12390d2419ab502276869b388c871dde338
---

 doc/demuxers.texi |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/doc/demuxers.texi b/doc/demuxers.texi
index 44db21f..bfc0bdc 100644
--- a/doc/demuxers.texi
+++ b/doc/demuxers.texi
@@ -262,20 +262,20 @@ Use @command{ffmpeg} for creating a video from the images in the file
 sequence @file{img-001.jpeg}, @file{img-002.jpeg}, ..., assuming an
 input frame rate of 10 frames per second:
 @example
-ffmpeg -i 'img-%03d.jpeg' -r 10 out.mkv
+ffmpeg -framerate 10 -i 'img-%03d.jpeg' out.mkv
 @end example
 
 @item
 As above, but start by reading from a file with index 100 in the sequence:
 @example
-ffmpeg -start_number 100 -i 'img-%03d.jpeg' -r 10 out.mkv
+ffmpeg -framerate 10 -start_number 100 -i 'img-%03d.jpeg' out.mkv
 @end example
 
 @item
 Read images matching the "*.png" glob pattern , that is all the files
 terminating with the ".png" suffix:
 @example
-ffmpeg -pattern_type glob -i "*.png" -r 10 out.mkv
+ffmpeg -framerate 10 -pattern_type glob -i "*.png" out.mkv
 @end example
 @end itemize
 



More information about the ffmpeg-cvslog mailing list