1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-04-19 09:02:26 +02:00

added image question

Originally committed as revision 124 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Fabrice Bellard 2001-09-16 21:47:32 +00:00
parent 919f448d95
commit 61a663b268

13
doc/FAQ
View File

@ -21,3 +21,16 @@ after version 5.0.
Currently, the grabbing stuff does not handle synchronisation Currently, the grabbing stuff does not handle synchronisation
correctly. You are free to correct it. It is planned to fix it ASAP. 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.