Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorFabrice Bellard <fabrice@bellard.org>2001-09-17 01:47:32 +0400
committerFabrice Bellard <fabrice@bellard.org>2001-09-17 01:47:32 +0400
commit61a663b268d298b8b15279719c716feb8b85d481 (patch)
tree4d953073bfea79f744ffeb63d12d7e13f5a67705 /doc
parent919f448d9581906be0ea89638f972deb26eb64c7 (diff)
added image question
Originally committed as revision 124 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'doc')
-rw-r--r--doc/FAQ13
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/FAQ b/doc/FAQ
index 22b3f56db1..1393a8b161 100644
--- a/doc/FAQ
+++ b/doc/FAQ
@@ -21,3 +21,16 @@ after version 5.0.
Currently, the grabbing stuff does not handle synchronisation
correctly. You are free to correct it. It is planned to fix it ASAP.
+
+5) How do I encode jpegs to another format ?
+
+If the jpegs are named img1.jpg, img2.jpg, img3.jpg,..., use:
+
+ ffmpeg -i img%d.jpg /tmp/a.mpg
+
+'%d' is replaced by the image number.
+
+'img%03d.jpg' generates img001.jpg, img002.jpg, etc...
+
+The same system is used for the other image formats.
+