]> git.sesse.net Git - ffmpeg/blob - doc/faq.html
updated html docs
[ffmpeg] / doc / faq.html
1 <HTML>
2 <HEAD>
3 <!-- Created by texi2html 1.56k from faq.texi on 28 December 2002 -->
4
5 <TITLE>FFmpeg FAQ</TITLE>
6 </HEAD>
7 <BODY>
8 <H1>FFmpeg FAQ</H1>
9 <P>
10 <P><HR><P>
11 <H1>Table of Contents</H1>
12 <UL>
13 <LI><A NAME="TOC1" HREF="faq.html#SEC1">1. General Problems</A>
14 <UL>
15 <LI><A NAME="TOC2" HREF="faq.html#SEC2">1.1 ffserver doesn't not work.</A>
16 <LI><A NAME="TOC3" HREF="faq.html#SEC3">1.2 I cannot read this file although this format seems to be suppored by ffmpeg.</A>
17 <LI><A NAME="TOC4" HREF="faq.html#SEC4">1.3 I get audio/video synchro problems when grabbing.</A>
18 <LI><A NAME="TOC5" HREF="faq.html#SEC5">1.4 How do I encode jpegs to another format ?</A>
19 <LI><A NAME="TOC6" HREF="faq.html#SEC6">1.5 FFmpeg does not support codec XXX. Can you include a Windows DLL loader to support it ?</A>
20 <LI><A NAME="TOC7" HREF="faq.html#SEC7">1.6 How can I read from the standard input or write to the standard output ?</A>
21 </UL>
22 <LI><A NAME="TOC8" HREF="faq.html#SEC8">2. Development</A>
23 <UL>
24 <LI><A NAME="TOC9" HREF="faq.html#SEC9">2.1 Can you support my C compiler XXX ?</A>
25 <LI><A NAME="TOC10" HREF="faq.html#SEC10">2.2 I want to use ffmpeg or libavcodec under Windows. Can you support my proprietary C compiler XXX ?</A>
26 <LI><A NAME="TOC11" HREF="faq.html#SEC11">2.3 Can you add automake, libtool or autoconf support ?</A>
27 </UL>
28 </UL>
29 <P><HR><P>
30
31 <P>
32 FFmpeg FAQ
33
34
35
36
37 <H1><A NAME="SEC1" HREF="faq.html#TOC1">1. General Problems</A></H1>
38
39
40
41 <H2><A NAME="SEC2" HREF="faq.html#TOC2">1.1 ffserver doesn't not work.</A></H2>
42
43 <P>
44 ffmpeg development is now concentrated on the codec and format
45 handling. New developments broke ffserver, so don't expect it to work
46 correctly. It is planned to fix it ASAP.
47
48
49
50
51 <H2><A NAME="SEC3" HREF="faq.html#TOC3">1.2 I cannot read this file although this format seems to be suppored by ffmpeg.</A></H2>
52
53 <P>
54 Even if ffmpeg can read the file format, it may not support all its
55 codecs. Please consult the supported codec list in the ffmpeg
56 documentation.
57
58
59
60
61 <H2><A NAME="SEC4" HREF="faq.html#TOC4">1.3 I get audio/video synchro problems when grabbing.</A></H2>
62
63 <P>
64 Currently, the grabbing stuff does not handle synchronisation
65 correctly. You are free to correct it. It is planned to fix it ASAP.
66
67
68
69
70 <H2><A NAME="SEC5" HREF="faq.html#TOC5">1.4 How do I encode jpegs to another format ?</A></H2>
71
72 <P>
73 If the jpegs are named img1.jpg, img2.jpg, img3.jpg,..., use:
74
75
76
77 <PRE>
78   ffmpeg -i img%d.jpg /tmp/a.mpg
79 </PRE>
80
81 <P>
82 <SAMP>`%d'</SAMP> is replaced by the image number.
83
84
85 <P>
86 <TT>`img%03d.jpg'</TT> generates <TT>`img001.jpg'</TT>, <TT>`img002.jpg'</TT>, etc...
87
88
89 <P>
90 The same system is used for the other image formats.
91
92
93
94
95 <H2><A NAME="SEC6" HREF="faq.html#TOC6">1.5 FFmpeg does not support codec XXX. Can you include a Windows DLL loader to support it ?</A></H2>
96
97 <P>
98 No. FFmpeg only supports open source codecs. Windows DLLs are not
99 portable, bloated and often slow.
100
101
102
103
104 <H2><A NAME="SEC7" HREF="faq.html#TOC7">1.6 How can I read from the standard input or write to the standard output ?</A></H2>
105
106 <P>
107 Use <TT>`-'</TT> as filename.
108
109
110
111
112 <H1><A NAME="SEC8" HREF="faq.html#TOC8">2. Development</A></H1>
113
114
115
116 <H2><A NAME="SEC9" HREF="faq.html#TOC9">2.1 Can you support my C compiler XXX ?</A></H2>
117
118 <P>
119 No. Only GCC is supported. GCC is ported on most systems available and I
120 don't see the need to pollute the source code with <CODE>#ifdef</CODE>s
121 related to the compiler.
122
123
124
125
126 <H2><A NAME="SEC10" HREF="faq.html#TOC10">2.2 I want to use ffmpeg or libavcodec under Windows. Can you support my proprietary C compiler XXX ?</A></H2>
127
128 <P>
129 No. Use <CODE>mingw-gcc</CODE> available at <A HREF="http://www.mingw.org/">http://www.mingw.org/</A> to
130 compile the code. It generates object files fully compatible with other
131 windows compilers.
132
133
134
135
136 <H2><A NAME="SEC11" HREF="faq.html#TOC11">2.3 Can you add automake, libtool or autoconf support ?</A></H2>
137
138 <P>
139 No. These tools are too blowted and they complicate the build. Moreover,
140 since only <SAMP>`gcc'</SAMP> is supported they would add little advantages in
141 terms of portability.
142
143
144 <P><HR><P>
145 This document was generated on 28 December 2002 using
146 <A HREF="http://wwwinfo.cern.ch/dis/texi2html/">texi2html</A>&nbsp;1.56k.
147 </BODY>
148 </HTML>