]> git.sesse.net Git - ffmpeg/blob - doc/FAQ
* Change extern inline to static inline so that it will compile without optimization
[ffmpeg] / doc / FAQ
1
2 1) ffserver doesn't not work. 
3
4 ffmpeg development is now concentrated on the codec and format
5 handling. New developments broke ffserver, so don't expect it to work
6 correctly. It is planned to fix it ASAP.
7
8 2) I cannot read this AVI file.
9
10 Even if ffmpeg can read the AVI format, it does not support all its
11 codecs. Please consult the supported codec list on the ffmpeg project
12 page.
13
14 3) I cannot read this Real Audio/Video file.
15
16 See (2). ffmpeg only supports Real Video 1.0 and AC3 as Real
17 codecs. It mean that you cannot view files encoded with real tools
18 after version 5.0.
19
20 4) I get audio/video synchro problems when grabbing.
21
22 Currently, the grabbing stuff does not handle synchronisation
23 correctly. You are free to correct it. It is planned to fix it ASAP.
24
25 5) How do I encode jpegs to another format ?
26
27 If the jpegs are named img1.jpg, img2.jpg, img3.jpg,..., use:
28
29   ffmpeg -i img%d.jpg /tmp/a.mpg
30
31 '%d' is replaced by the image number.
32
33 'img%03d.jpg' generates img001.jpg, img002.jpg, etc...
34
35 The same system is used for the other image formats.
36
37 6) FFmpeg does not support codec XYZ. Can you include a Windows DLL
38    loader to support it ?
39
40 No ! FFmpeg only supports open source codecs. Windows DLLs are not
41 portable, bloated and often slow.