Commit | Line | Data |
---|---|---|
9181577c FB |
1 | \input texinfo @c -*- texinfo -*- |
2 | ||
3 | @settitle FFmpeg Documentation | |
4 | @titlepage | |
5 | @sp 7 | |
6 | @center @titlefont{FFmpeg Documentation} | |
7 | @sp 3 | |
8 | @end titlepage | |
9 | ||
10 | ||
11 | @chapter Introduction | |
12 | ||
13 | FFmpeg is a very fast video and audio converter. It can also grab from | |
14 | a live audio/video source. | |
15 | ||
16 | The command line interface is designed to be intuitive, in the sense | |
17 | that ffmpeg tries to figure out all the parameters, when | |
18 | possible. You have usually to give only the target bitrate you want. | |
19 | ||
20 | FFmpeg can also convert from any sample rate to any other, and resize | |
21 | video on the fly with a high quality polyphase filter. | |
22 | ||
23 | @chapter Quick Start | |
24 | ||
e99c4e10 | 25 | @c man begin EXAMPLES |
9181577c FB |
26 | @section Video and Audio grabbing |
27 | ||
e99c4e10 FB |
28 | FFmpeg can use a video4linux compatible video source and any Open Sound |
29 | System audio source: | |
30 | ||
9181577c | 31 | @example |
e99c4e10 | 32 | ffmpeg /tmp/out.mpg |
9181577c FB |
33 | @end example |
34 | ||
e99c4e10 FB |
35 | Note that you must activate the right video source and channel before |
36 | launching ffmpeg. You can use any TV viewer such as xawtv | |
37 | (@url{http://bytesex.org/xawtv/}) by Gerd Knorr which I find very | |
38 | good. You must also set correctly the audio recording levels with a | |
39 | standard mixer. | |
9181577c | 40 | |
6bf40f39 | 41 | @section Video and Audio file format conversion |
9181577c FB |
42 | |
43 | * ffmpeg can use any supported file format and protocol as input: | |
44 | ||
45 | Examples: | |
46 | ||
47 | * You can input from YUV files: | |
48 | ||
49 | @example | |
e99c4e10 | 50 | ffmpeg -i /tmp/test%d.Y /tmp/out.mpg |
9181577c FB |
51 | @end example |
52 | ||
e99c4e10 | 53 | It will use the files: |
9181577c | 54 | @example |
e99c4e10 FB |
55 | /tmp/test0.Y, /tmp/test0.U, /tmp/test0.V, |
56 | /tmp/test1.Y, /tmp/test1.U, /tmp/test1.V, etc... | |
9181577c FB |
57 | @end example |
58 | ||
e99c4e10 FB |
59 | The Y files use twice the resolution of the U and V files. They are |
60 | raw files, without header. They can be generated by all decent video | |
61 | decoders. You must specify the size of the image with the @option{-s} option | |
62 | if ffmpeg cannot guess it. | |
9181577c FB |
63 | |
64 | * You can input from a RAW YUV420P file: | |
65 | ||
66 | @example | |
e99c4e10 | 67 | ffmpeg -i /tmp/test.yuv /tmp/out.avi |
9181577c FB |
68 | @end example |
69 | ||
e99c4e10 FB |
70 | The RAW YUV420P is a file containing RAW YUV planar, for each frame first |
71 | come the Y plane followed by U and V planes, which are half vertical and | |
72 | horizontal resolution. | |
9181577c FB |
73 | |
74 | * You can output to a RAW YUV420P file: | |
75 | ||
76 | @example | |
e99c4e10 | 77 | ffmpeg -i mydivx.avi -o hugefile.yuv |
9181577c FB |
78 | @end example |
79 | ||
80 | * You can set several input files and output files: | |
81 | ||
82 | @example | |
e99c4e10 | 83 | ffmpeg -i /tmp/a.wav -s 640x480 -i /tmp/a.yuv /tmp/a.mpg |
9181577c FB |
84 | @end example |
85 | ||
e99c4e10 FB |
86 | Convert the audio file a.wav and the raw yuv video file a.yuv |
87 | to mpeg file a.mpg | |
9181577c | 88 | |
6bf40f39 | 89 | * You can also do audio and video conversions at the same time: |
9181577c FB |
90 | |
91 | @example | |
e99c4e10 | 92 | ffmpeg -i /tmp/a.wav -ar 22050 /tmp/a.mp2 |
9181577c FB |
93 | @end example |
94 | ||
e99c4e10 | 95 | Convert the sample rate of a.wav to 22050 Hz and encode it to MPEG audio. |
9181577c FB |
96 | |
97 | * You can encode to several formats at the same time and define a | |
e99c4e10 | 98 | mapping from input stream to output streams: |
9181577c FB |
99 | |
100 | @example | |
e99c4e10 | 101 | ffmpeg -i /tmp/a.wav -ab 64 /tmp/a.mp2 -ab 128 /tmp/b.mp2 -map 0:0 -map 0:0 |
9181577c FB |
102 | @end example |
103 | ||
e99c4e10 FB |
104 | Convert a.wav to a.mp2 at 64 kbits and b.mp2 at 128 kbits. '-map |
105 | file:index' specify which input stream is used for each output | |
106 | stream, in the order of the definition of output streams. | |
9181577c FB |
107 | |
108 | * You can transcode decrypted VOBs | |
109 | ||
110 | @example | |
e99c4e10 | 111 | ffmpeg -i snatch_1.vob -f avi -vcodec mpeg4 -b 800 -g 300 -bf 2 -acodec mp3 -ab 128 snatch.avi |
9181577c FB |
112 | @end example |
113 | ||
e99c4e10 FB |
114 | This is a typical DVD ripper example, input from a VOB file, output |
115 | to an AVI file with MPEG-4 video and MP3 audio, note that in this | |
116 | command we use B frames so the MPEG-4 stream is DivX5 compatible, GOP | |
117 | size is 300 that means an INTRA frame every 10 seconds for 29.97 fps | |
118 | input video. Also the audio stream is MP3 encoded so you need LAME | |
119 | support which is enabled using @code{--enable-mp3lame} when | |
120 | configuring. The mapping is particularly useful for DVD transcoding | |
121 | to get the desired audio language. | |
9181577c | 122 | |
e99c4e10 FB |
123 | NOTE: to see the supported input formats, use @code{ffmpeg -formats}. |
124 | @c man end | |
9181577c FB |
125 | |
126 | @chapter Invocation | |
127 | ||
128 | @section Syntax | |
129 | ||
e99c4e10 | 130 | The generic syntax is: |
9181577c FB |
131 | |
132 | @example | |
e99c4e10 FB |
133 | @c man begin SYNOPSIS |
134 | ffmpeg [[options][@option{-i} @var{input_file}]]... @{[options] @var{output_file}@}... | |
135 | @c man end | |
9181577c | 136 | @end example |
e99c4e10 FB |
137 | @c man begin DESCRIPTION |
138 | If no input file is given, audio/video grabbing is done. | |
9181577c | 139 | |
e99c4e10 FB |
140 | As a general rule, options are applied to the next specified |
141 | file. For example, if you give the @option{-b 64} option, it sets the video | |
142 | bitrate of the next file. Format option may be needed for raw input | |
143 | files. | |
9181577c | 144 | |
e99c4e10 FB |
145 | By default, ffmpeg tries to convert as losslessly as possible: it |
146 | uses the same audio and video parameter for the outputs as the one | |
147 | specified for the inputs. | |
148 | @c man end | |
9181577c | 149 | |
e99c4e10 | 150 | @c man begin OPTIONS |
9181577c FB |
151 | @section Main options |
152 | ||
e99c4e10 | 153 | @table @option |
9181577c FB |
154 | @item -L |
155 | show license | |
156 | @item -h | |
e99c4e10 FB |
157 | show help |
158 | @item -formats | |
9181577c FB |
159 | show available formats, codecs, protocols, ... |
160 | @item -f fmt | |
161 | force format | |
162 | @item -i filename | |
163 | input file name | |
164 | ||
165 | @item -y | |
166 | overwrite output files | |
167 | ||
168 | @item -t duration | |
169 | set the recording time in seconds. @code{hh:mm:ss[.xxx]} syntax is also | |
170 | supported. | |
171 | ||
172 | @item -title string | |
173 | set the title | |
174 | ||
175 | @item -author string | |
176 | set the author | |
177 | ||
178 | @item -copyright string | |
179 | set the copyright | |
180 | ||
181 | @item -comment string | |
182 | set the comment | |
183 | ||
9181577c FB |
184 | @end table |
185 | ||
186 | @section Video Options | |
187 | ||
e99c4e10 | 188 | @table @option |
9181577c FB |
189 | @item -s size |
190 | set frame size [160x128] | |
191 | @item -r fps | |
192 | set frame rate [25] | |
193 | @item -b bitrate | |
194 | set the video bitrate in kbit/s [200] | |
195 | @item -vn | |
196 | disable video recording [no] | |
197 | @item -bt tolerance | |
198 | set video bitrate tolerance (in kbit/s) | |
199 | @item -sameq | |
200 | use same video quality as source (implies VBR) | |
201 | ||
202 | @item -pass n | |
203 | select the pass number (1 or 2). It is useful to do two pass encoding. The statistics of the video are recorded in the first pass and the video at the exact requested bit rate is generated in the second pass. | |
204 | ||
205 | @item -passlogfile file | |
206 | select two pass log file name | |
207 | ||
208 | @end table | |
209 | ||
210 | @section Audio Options | |
211 | ||
e99c4e10 | 212 | @table @option |
9181577c FB |
213 | @item -ab bitrate |
214 | set audio bitrate (in kbit/s) | |
215 | @item -ar freq | |
216 | set the audio sampling freq [44100] | |
217 | @item -ab bitrate | |
218 | set the audio bitrate in kbit/s [64] | |
219 | @item -ac channels | |
220 | set the number of audio channels [1] | |
221 | @item -an | |
222 | disable audio recording [no] | |
223 | @end table | |
224 | ||
225 | @section Advanced options | |
226 | ||
e99c4e10 | 227 | @table @option |
9181577c FB |
228 | @item -map file:stream |
229 | set input stream mapping | |
230 | @item -g gop_size | |
231 | set the group of picture size | |
232 | @item -intra | |
233 | use only intra frames | |
234 | @item -qscale q | |
235 | use fixed video quantiser scale (VBR) | |
236 | @item -qmin q | |
237 | min video quantiser scale (VBR) | |
238 | @item -qmax q | |
239 | max video quantiser scale (VBR) | |
240 | @item -qdiff q | |
241 | max difference between the quantiser scale (VBR) | |
242 | @item -qblur blur | |
243 | video quantiser scale blur (VBR) | |
244 | @item -qcomp compression | |
245 | video quantiser scale compression (VBR) | |
246 | @item -vd device | |
247 | set video device | |
248 | @item -vcodec codec | |
249 | force video codec | |
250 | @item -me method | |
251 | set motion estimation method | |
252 | @item -bf frames | |
253 | use 'frames' B frames (only MPEG-4) | |
254 | @item -hq | |
255 | activate high quality settings | |
256 | @item -4mv | |
257 | use four motion vector by macroblock (only MPEG-4) | |
258 | @item -ad device | |
259 | set audio device | |
260 | @item -acodec codec | |
261 | force audio codec | |
262 | @item -deinterlace | |
263 | deinterlace pictures | |
264 | @item -benchmark | |
265 | add timings for benchmarking | |
266 | @item -hex | |
267 | dump each input packet | |
268 | @item -psnr | |
269 | calculate PSNR of compressed frames | |
270 | @item -vstats | |
271 | dump video coding statistics to file | |
272 | @end table | |
e99c4e10 FB |
273 | @c man end |
274 | ||
275 | @ignore | |
276 | ||
277 | @setfilename ffmpeg | |
278 | @settitle FFmpeg video converter | |
279 | ||
280 | @c man begin SEEALSO | |
281 | ffserver(1), ffplay(1) and the html documentation of @file{ffmpeg}. | |
282 | @c man end | |
283 | ||
284 | @c man begin AUTHOR | |
285 | Fabrice Bellard | |
286 | @c man end | |
287 | ||
288 | @end ignore | |
9181577c FB |
289 | |
290 | @section Protocols | |
291 | ||
47d944d2 FB |
292 | The filename can be @file{-} to read from the standard input or to write |
293 | to the standard output. | |
9181577c FB |
294 | |
295 | ffmpeg handles also many protocols specified with the URL syntax. | |
296 | ||
e99c4e10 | 297 | Use 'ffmpeg -formats' to have a list of the supported protocols. |
9181577c | 298 | |
e99c4e10 FB |
299 | The protocol @code{http:} is currently used only to communicate with |
300 | ffserver (see the ffserver documentation). When ffmpeg will be a | |
301 | video player it will also be used for streaming :-) | |
9181577c FB |
302 | |
303 | @chapter Tips | |
304 | ||
305 | @itemize | |
306 | @item For streaming at very low bit rate application, use a low frame rate | |
e99c4e10 FB |
307 | and a small gop size. This is especially true for real video where |
308 | the Linux player does not seem to be very fast, so it can miss | |
309 | frames. An example is: | |
9181577c FB |
310 | |
311 | @example | |
e99c4e10 | 312 | ffmpeg -g 3 -r 3 -t 10 -b 50 -s qcif -f rv10 /tmp/b.rm |
9181577c FB |
313 | @end example |
314 | ||
315 | @item The parameter 'q' which is displayed while encoding is the current | |
e99c4e10 FB |
316 | quantizer. The value of 1 indicates that a very good quality could |
317 | be achieved. The value of 31 indicates the worst quality. If q=31 | |
318 | too often, it means that the encoder cannot compress enough to meet | |
319 | your bit rate. You must either increase the bit rate, decrease the | |
320 | frame rate or decrease the frame size. | |
9181577c FB |
321 | |
322 | @item If your computer is not fast enough, you can speed up the | |
e99c4e10 FB |
323 | compression at the expense of the compression ratio. You can use |
324 | '-me zero' to speed up motion estimation, and '-intra' to disable | |
325 | completely motion estimation (you have only I frames, which means it | |
326 | is about as good as JPEG compression). | |
9181577c FB |
327 | |
328 | @item To have very low bitrates in audio, reduce the sampling frequency | |
e99c4e10 | 329 | (down to 22050 kHz for mpeg audio, 22050 or 11025 for ac3). |
9181577c FB |
330 | |
331 | @item To have a constant quality (but a variable bitrate), use the option | |
e99c4e10 FB |
332 | '-qscale n' when 'n' is between 1 (excellent quality) and 31 (worst |
333 | quality). | |
9181577c FB |
334 | |
335 | @item When converting video files, you can use the '-sameq' option which | |
e99c4e10 FB |
336 | uses in the encoder the same quality factor than in the decoder. It |
337 | allows to be almost lossless in encoding. | |
9181577c FB |
338 | |
339 | @end itemize | |
340 | ||
341 | @chapter Supported File Formats and Codecs | |
342 | ||
343 | You can use the @code{-formats} option to have an exhaustive list. | |
344 | ||
345 | @section File Formats | |
346 | ||
6bf40f39 | 347 | FFmpeg supports the following file formats through the @code{libavformat} |
0699d2fe | 348 | library: |
9181577c FB |
349 | |
350 | @multitable @columnfractions .4 .1 .1 | |
351 | @item Supported File Format @tab Encoding @tab Decoding @tab Comments | |
352 | @item MPEG audio @tab X @tab X | |
353 | @item MPEG1 systems @tab X @tab X | |
354 | @tab muxed audio and video | |
355 | @item MPEG2 PS @tab X @tab X | |
356 | @tab also known as @code{VOB} file | |
357 | @item MPEG2 TS @tab @tab X | |
358 | @tab also known as DVB Transport Stream | |
359 | @item ASF@tab X @tab X | |
360 | @item AVI@tab X @tab X | |
361 | @item WAV@tab X @tab X | |
362 | @item Macromedia Flash@tab X @tab X | |
363 | @tab Only embedded audio is decoded | |
2eb5d024 FB |
364 | @item FLV @tab X @tab X |
365 | @tab Macromedia Flash video files | |
9181577c | 366 | @item Real Audio and Video @tab X @tab X |
9181577c FB |
367 | @item Raw AC3 @tab X @tab X |
368 | @item Raw MJPEG @tab X @tab X | |
369 | @item Raw MPEG video @tab X @tab X | |
370 | @item Raw PCM8/16 bits, mulaw/Alaw@tab X @tab X | |
371 | @item SUN AU format @tab X @tab X | |
372 | @item Quicktime @tab @tab X | |
373 | @item MPEG4 @tab @tab X | |
374 | @tab MPEG4 is a variant of Quicktime | |
0699d2fe | 375 | @item Raw MPEG4 video @tab X @tab X |
9181577c | 376 | @item DV @tab @tab X |
701b603d MM |
377 | @item 4xm @tab @tab X |
378 | @tab 4X Technologies format, used in some games | |
9181577c FB |
379 | @end multitable |
380 | ||
381 | @code{X} means that the encoding (resp. decoding) is supported. | |
382 | ||
0699d2fe FB |
383 | @section Image Formats |
384 | ||
385 | FFmpeg can read and write images for each frame of a video sequence. The | |
386 | following image formats are supported: | |
387 | ||
388 | @multitable @columnfractions .4 .1 .1 | |
389 | @item Supported Image Format @tab Encoding @tab Decoding @tab Comments | |
390 | @item PGM, PPM @tab X @tab X | |
2eb5d024 FB |
391 | @item PAM @tab X @tab X @tab PAM is a PNM extension with alpha support |
392 | @item PGMYUV @tab X @tab X @tab PGM with U and V components in YUV 4:2:0 | |
0699d2fe FB |
393 | @item JPEG @tab X @tab X @tab Progressive JPEG is not supported |
394 | @item .Y.U.V @tab X @tab X @tab One raw file per component | |
2eb5d024 FB |
395 | @item Animated GIF @tab X @tab X @tab Only uncompressed GIFs are generated |
396 | @item PNG @tab X @tab X @tab 2 bit and 4 bit/pixel not supported yet | |
0699d2fe FB |
397 | @end multitable |
398 | ||
399 | @code{X} means that the encoding (resp. decoding) is supported. | |
400 | ||
9181577c FB |
401 | @section Video Codecs |
402 | ||
403 | @multitable @columnfractions .4 .1 .1 .7 | |
404 | @item Supported Codec @tab Encoding @tab Decoding @tab Comments | |
4745b5bf | 405 | @item MPEG1 video @tab X @tab X |
9181577c FB |
406 | @item MPEG2 video @tab @tab X |
407 | @item MPEG4 @tab X @tab X @tab Also known as DIVX4/5 | |
408 | @item MSMPEG4 V1 @tab X @tab X | |
409 | @item MSMPEG4 V2 @tab X @tab X | |
410 | @item MSMPEG4 V3 @tab X @tab X @tab Also known as DIVX3 | |
411 | @item WMV7 @tab X @tab X | |
701b603d | 412 | @item WMV8 @tab X @tab X @tab Not completely working |
9181577c FB |
413 | @item H263(+) @tab X @tab X @tab Also known as Real Video 1.0 |
414 | @item MJPEG @tab X @tab X | |
415 | @item DV @tab @tab X | |
4745b5bf | 416 | @item Huff YUV @tab X @tab X |
701b603d MM |
417 | @item Asus v1 @tab X @tab X @tab fourcc: ASV1 |
418 | @item Creative YUV @tab @tab X @tab fourcc: CYUV | |
419 | @item H.264 @tab @tab X | |
420 | @item Sorenson Video 1 @tab @tab X @tab fourcc: SVQ1 | |
421 | @item Sorenson Video 3 @tab @tab X @tab fourcc: SVQ3 | |
422 | @item On2 VP3 @tab @tab X @tab still experimental | |
423 | @item Intel Indeo 3 @tab @tab X @tab only works on i386 right now | |
2eb5d024 | 424 | @item FLV @tab X @tab X @tab Flash H263 variant |
9181577c FB |
425 | @end multitable |
426 | ||
427 | @code{X} means that the encoding (resp. decoding) is supported. | |
428 | ||
60837265 FB |
429 | Check at @url{http://www.mplayerhq.hu/~michael/codec-features.html} to |
430 | get a precise comparison of FFmpeg MPEG4 codec compared to the other | |
431 | solutions. | |
432 | ||
9181577c FB |
433 | @section Audio Codecs |
434 | ||
435 | @multitable @columnfractions .4 .1 .1 .1 .7 | |
436 | @item Supported Codec @tab Encoding @tab Decoding @tab Comments | |
437 | @item MPEG audio layer 2 @tab IX @tab IX | |
438 | @item MPEG audio layer 1/3 @tab IX @tab IX | |
6bf40f39 | 439 | @tab MP3 encoding is supported through the external library LAME |
9181577c | 440 | @item AC3 @tab IX @tab X |
2eb5d024 | 441 | @tab liba52 is used internally for decoding |
34d7008d | 442 | @item Vorbis @tab X @tab X |
2eb5d024 | 443 | @tab supported through the external library libvorbis |
4745b5bf | 444 | @item WMA V1/V2 @tab @tab X |
701b603d MM |
445 | @item Microsoft ADPCM @tab X @tab X |
446 | @item IMA ADPCM @tab X @tab X | |
2eb5d024 FB |
447 | @item RA144 @tab @tab X |
448 | @tab Real 14400 bit/s codec | |
449 | @item RA288 @tab @tab X | |
450 | @tab Real 28800 bit/s codec | |
451 | @item AMR-NB @tab X @tab X | |
452 | @tab supported through an external library | |
453 | @item DV audio @tab @tab X | |
9181577c FB |
454 | @end multitable |
455 | ||
456 | @code{X} means that the encoding (resp. decoding) is supported. | |
457 | ||
458 | @code{I} means that an integer only version is available too (ensures highest | |
459 | performances on systems without hardware floating point support). | |
460 | ||
47d944d2 FB |
461 | @chapter Platform Specific information |
462 | ||
463 | @section Linux | |
464 | ||
465 | ffmpeg should be compiled with at least GCC 2.95.3. GCC 3.2 is the | |
6bf40f39 | 466 | preferred compiler now for ffmpeg. All future optimizations will depend on |
47d944d2 FB |
467 | features only found in GCC 3.2. |
468 | ||
469 | @section BSD | |
470 | ||
471 | @section Windows | |
472 | ||
473 | @section MacOS X | |
474 | ||
475 | @section BeOS | |
476 | ||
477 | The configure script should guess the configuration itself. | |
478 | Networking support is currently not finished. | |
479 | errno issues fixed by Andrew Bachmann. | |
480 | ||
481 | Old stuff: | |
482 | ||
483 |