[FFmpeg-cvslog] r9167 - trunk/doc/faq.texi
benoit
subversion
Fri Jun 1 14:03:33 CEST 2007
Author: benoit
Date: Fri Jun 1 14:03:33 2007
New Revision: 9167
Log:
A bit more clear FAQ 1.2
Patch by V????ctor Paes wzrlpy zehc arsystel com
Modified:
trunk/doc/faq.texi
Modified: trunk/doc/faq.texi
==============================================================================
--- trunk/doc/faq.texi (original)
+++ trunk/doc/faq.texi Fri Jun 1 14:03:33 2007
@@ -16,19 +16,21 @@ Even if ffmpeg can read the file format,
codecs. Please consult the supported codec list in the ffmpeg
documentation.
- at section How do I encode JPEGs to another format ?
+ at section How do I encode single pictures to movies ?
-If the JPEGs are named img1.jpg, img2.jpg, img3.jpg,..., use:
+First, rename your pictures to follow a numerical sequence.
+For example, img1.jpg, img2.jpg, img3.jpg,...
+Then you may run:
@example
ffmpeg -f image2 -i img%d.jpg /tmp/a.mpg
@end example
- at samp{%d} is replaced by the image number.
+Notice that @samp{%d} is replaced by the image number.
- at file{img%03d.jpg} generates @file{img001.jpg}, @file{img002.jpg}, etc...
+ at file{img%03d.jpg} means the sequence @file{img001.jpg}, @file{img002.jpg}, etc...
-The same system is used for the other image formats.
+The same logic is used for any image format that ffmpeg reads.
@section How do I encode movie to single pictures ?
More information about the ffmpeg-cvslog
mailing list