]> git.sesse.net Git - ffmpeg/blob - doc/ffmpeg.texi
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / doc / ffmpeg.texi
1 \input texinfo @c -*- texinfo -*-
2
3 @settitle ffmpeg Documentation
4 @titlepage
5 @center @titlefont{ffmpeg Documentation}
6 @end titlepage
7
8 @top
9
10 @contents
11
12 @chapter Synopsis
13
14 The generic syntax is:
15
16 @example
17 @c man begin SYNOPSIS
18 ffmpeg [global options] [[infile options][@option{-i} @var{infile}]]... @{[outfile options] @var{outfile}@}...
19 @c man end
20 @end example
21
22 @chapter Description
23 @c man begin DESCRIPTION
24
25 ffmpeg is a very fast video and audio converter that can also grab from
26 a live audio/video source. It can also convert between arbitrary sample
27 rates and resize video on the fly with a high quality polyphase filter.
28
29 As a general rule, options are applied to the next specified
30 file. Therefore, order is important, and you can have the same
31 option on the command line multiple times. Each occurrence is
32 then applied to the next input or output file.
33 Exceptions from this rule are the global options (e.g. verbosity level),
34 which should be specified first.
35
36 @itemize
37 @item
38 To set the video bitrate of the output file to 64kbit/s:
39 @example
40 ffmpeg -i input.avi -b 64k output.avi
41 @end example
42
43 @item
44 To force the frame rate of the output file to 24 fps:
45 @example
46 ffmpeg -i input.avi -r 24 output.avi
47 @end example
48
49 @item
50 To force the frame rate of the input file (valid for raw formats only)
51 to 1 fps and the frame rate of the output file to 24 fps:
52 @example
53 ffmpeg -r 1 -i input.m2v -r 24 output.avi
54 @end example
55 @end itemize
56
57 The format option may be needed for raw input files.
58
59 @c man end DESCRIPTION
60
61 @chapter Stream selection
62 @c man begin STREAM SELECTION
63
64 By default ffmpeg tries to pick the "best" stream of each type present in input
65 files and add them to each output file. For video, this means the highest
66 resolution, for audio the highest channel count. For subtitle it's simply the
67 first subtitle stream.
68
69 You can disable some of those defaults by using @code{-vn/-an/-sn} options. For
70 full manual control, use the @code{-map} option, which disables the defaults just
71 described.
72
73 @c man end STREAM SELECTION
74
75 @chapter Options
76 @c man begin OPTIONS
77
78 @include avtools-common-opts.texi
79
80 @section Main options
81
82 @table @option
83
84 @item -f @var{fmt} (@emph{input/output})
85 Force input or output file format. The format is normally autodetected for input
86 files and guessed from file extension for output files, so this option is not
87 needed in most cases.
88
89 @item -i @var{filename} (@emph{input})
90 input file name
91
92 @item -y (@emph{global})
93 Overwrite output files without asking.
94
95 @item -c[:@var{stream_specifier}] @var{codec} (@emph{input/output,per-stream})
96 @itemx -codec[:@var{stream_specifier}] @var{codec} (@emph{input/output,per-stream})
97 Select an encoder (when used before an output file) or a decoder (when used
98 before an input file) for one or more streams. @var{codec} is the name of a
99 decoder/encoder or a special value @code{copy} (output only) to indicate that
100 the stream is not to be reencoded.
101
102 For example
103 @example
104 ffmpeg -i INPUT -map 0 -c:v libx264 -c:a copy OUTPUT
105 @end example
106 encodes all video streams with libx264 and copies all audio streams.
107
108 For each stream, the last matching @code{c} option is applied, so
109 @example
110 ffmpeg -i INPUT -map 0 -c copy -c:v:1 libx264 -c:a:137 libvorbis OUTPUT
111 @end example
112 will copy all the streams except the second video, which will be encoded with
113 libx264, and the 138th audio, which will be encoded with libvorbis.
114
115 @item -t @var{duration} (@emph{output})
116 Stop writing the output after its duration reaches @var{duration}.
117 @var{duration} may be a number in seconds, or in @code{hh:mm:ss[.xxx]} form.
118
119 @item -fs @var{limit_size} (@emph{output})
120 Set the file size limit.
121
122 @item -ss @var{position} (@emph{input/output})
123 When used as an input option (before @code{-i}), seeks in this input file to
124 @var{position}. When used as an output option (before an output filename),
125 decodes but discards input until the timestamps reach @var{position}. This is
126 slower, but more accurate.
127
128 @var{position} may be either in seconds or in @code{hh:mm:ss[.xxx]} form.
129
130 @item -itsoffset @var{offset} (@emph{input})
131 Set the input time offset in seconds.
132 @code{[-]hh:mm:ss[.xxx]} syntax is also supported.
133 The offset is added to the timestamps of the input files.
134 Specifying a positive offset means that the corresponding
135 streams are delayed by @var{offset} seconds.
136
137 @item -timestamp @var{time} (@emph{output})
138 Set the recording timestamp in the container.
139 The syntax for @var{time} is:
140 @example
141 now|([(YYYY-MM-DD|YYYYMMDD)[T|t| ]]((HH[:MM[:SS[.m...]]])|(HH[MM[SS[.m...]]]))[Z|z])
142 @end example
143 If the value is "now" it takes the current time.
144 Time is local time unless 'Z' or 'z' is appended, in which case it is
145 interpreted as UTC.
146 If the year-month-day part is not specified it takes the current
147 year-month-day.
148
149 @item -metadata[:metadata_specifier] @var{key}=@var{value} (@emph{output,per-metadata})
150 Set a metadata key/value pair.
151
152 An optional @var{metadata_specifier} may be given to set metadata
153 on streams or chapters. See @code{-map_metadata} documentation for
154 details.
155
156 This option overrides metadata set with @code{-map_metadata}. It is
157 also possible to delete metadata by using an empty value.
158
159 For example, for setting the title in the output file:
160 @example
161 ffmpeg -i in.avi -metadata title="my title" out.flv
162 @end example
163
164 To set the language of the second stream:
165 @example
166 ffmpeg -i INPUT -metadata:s:1 language=eng OUTPUT
167 @end example
168
169 @item -v @var{number} (@emph{global})
170 This option is deprecated and has no effect, use -loglevel
171 to set verbosity level.
172
173 @item -target @var{type} (@emph{output})
174 Specify target file type (@code{vcd}, @code{svcd}, @code{dvd}, @code{dv},
175 @code{dv50}). @var{type} may be prefixed with @code{pal-}, @code{ntsc-} or
176 @code{film-} to use the corresponding standard. All the format options
177 (bitrate, codecs, buffer sizes) are then set automatically. You can just type:
178
179 @example
180 ffmpeg -i myfile.avi -target vcd /tmp/vcd.mpg
181 @end example
182
183 Nevertheless you can specify additional options as long as you know
184 they do not conflict with the standard, as in:
185
186 @example
187 ffmpeg -i myfile.avi -target vcd -bf 2 /tmp/vcd.mpg
188 @end example
189
190 @item -dframes @var{number} (@emph{output})
191 Set the number of data frames to record. This is an alias for @code{-frames:d}.
192
193 @item -frames[:@var{stream_specifier}] @var{framecount} (@emph{output,per-stream})
194 Stop writing to the stream after @var{framecount} frames.
195
196 @item -q[:@var{stream_specifier}] @var{q} (@emph{output,per-stream})
197 @itemx -qscale[:@var{stream_specifier}] @var{q} (@emph{output,per-stream})
198 Use fixed quality scale (VBR). The meaning of @var{q} is
199 codec-dependent.
200
201 @item -filter[:@var{stream_specifier}] @var{filter_graph}
202 @var{filter_graph} is a description of the filter graph to apply to
203 the stream. Use @code{-filters} to show all the available filters
204 (including also sources and sinks).
205
206 @end table
207
208 @section Video Options
209
210 @table @option
211 @item -vframes @var{number} (@emph{output})
212 Set the number of video frames to record. This is an alias for @code{-frames:v}.
213 @item -r[:@var{stream_specifier}] @var{fps} (@emph{input/output,per-stream})
214 Set frame rate (Hz value, fraction or abbreviation), (default = 25).
215 @item -s[:@var{stream_specifier}] @var{size} (@emph{input/output,per-stream})
216 Set frame size. The format is @samp{wxh} (ffserver default = 160x128, ffmpeg default = same as source).
217 The following abbreviations are recognized:
218 @table @samp
219 @item sqcif
220 128x96
221 @item qcif
222 176x144
223 @item cif
224 352x288
225 @item 4cif
226 704x576
227 @item 16cif
228 1408x1152
229 @item qqvga
230 160x120
231 @item qvga
232 320x240
233 @item vga
234 640x480
235 @item svga
236 800x600
237 @item xga
238 1024x768
239 @item uxga
240 1600x1200
241 @item qxga
242 2048x1536
243 @item sxga
244 1280x1024
245 @item qsxga
246 2560x2048
247 @item hsxga
248 5120x4096
249 @item wvga
250 852x480
251 @item wxga
252 1366x768
253 @item wsxga
254 1600x1024
255 @item wuxga
256 1920x1200
257 @item woxga
258 2560x1600
259 @item wqsxga
260 3200x2048
261 @item wquxga
262 3840x2400
263 @item whsxga
264 6400x4096
265 @item whuxga
266 7680x4800
267 @item cga
268 320x200
269 @item ega
270 640x350
271 @item hd480
272 852x480
273 @item hd720
274 1280x720
275 @item hd1080
276 1920x1080
277 @end table
278
279 @item -aspect[:@var{stream_specifier}] @var{aspect} (@emph{output,per-stream})
280 Set the video display aspect ratio specified by @var{aspect}.
281
282 @var{aspect} can be a floating point number string, or a string of the
283 form @var{num}:@var{den}, where @var{num} and @var{den} are the
284 numerator and denominator of the aspect ratio. For example "4:3",
285 "16:9", "1.3333", and "1.7777" are valid argument values.
286
287 @item -croptop @var{size}
288 @item -cropbottom @var{size}
289 @item -cropleft @var{size}
290 @item -cropright @var{size}
291 All the crop options have been removed. Use -vf
292 crop=width:height:x:y instead.
293
294 @item -padtop @var{size}
295 @item -padbottom @var{size}
296 @item -padleft @var{size}
297 @item -padright @var{size}
298 @item -padcolor @var{hex_color}
299 All the pad options have been removed. Use -vf
300 pad=width:height:x:y:color instead.
301
302 @item -vn (@emph{output})
303 Disable video recording.
304 @item -bt @var{tolerance}
305 Set video bitrate tolerance (in bits, default 4000k).
306 Has a minimum value of: (target_bitrate/target_framerate).
307 In 1-pass mode, bitrate tolerance specifies how far ratecontrol is
308 willing to deviate from the target average bitrate value. This is
309 not related to min/max bitrate. Lowering tolerance too much has
310 an adverse effect on quality.
311 @item -maxrate @var{bitrate}
312 Set max video bitrate (in bit/s).
313 Requires -bufsize to be set.
314 @item -minrate @var{bitrate}
315 Set min video bitrate (in bit/s).
316 Most useful in setting up a CBR encode:
317 @example
318 ffmpeg -i myfile.avi -b 4000k -minrate 4000k -maxrate 4000k -bufsize 1835k out.m2v
319 @end example
320 It is of little use elsewise.
321 @item -bufsize @var{size}
322 Set video buffer verifier buffer size (in bits).
323 @item -vcodec @var{codec} (@emph{output})
324 Set the video codec. This is an alias for @code{-codec:v}.
325 @item -same_quant
326 Use same quantizer as source (implies VBR).
327
328 Note that this is NOT SAME QUALITY. Do not use this option unless you know you
329 need it.
330
331 @item -pass @var{n}
332 Select the pass number (1 or 2). It is used to do two-pass
333 video encoding. The statistics of the video are recorded in the first
334 pass into a log file (see also the option -passlogfile),
335 and in the second pass that log file is used to generate the video
336 at the exact requested bitrate.
337 On pass 1, you may just deactivate audio and set output to null,
338 examples for Windows and Unix:
339 @example
340 ffmpeg -i foo.mov -c:v libxvid -pass 1 -an -f rawvideo -y NUL
341 ffmpeg -i foo.mov -c:v libxvid -pass 1 -an -f rawvideo -y /dev/null
342 @end example
343
344 @item -passlogfile @var{prefix} (@emph{global})
345 Set two-pass log file name prefix to @var{prefix}, the default file name
346 prefix is ``ffmpeg2pass''. The complete file name will be
347 @file{PREFIX-N.log}, where N is a number specific to the output
348 stream
349
350 @item -vlang @var{code}
351 Set the ISO 639 language code (3 letters) of the current video stream.
352
353 @item -vf @var{filter_graph} (@emph{output})
354 @var{filter_graph} is a description of the filter graph to apply to
355 the input video.
356 Use the option "-filters" to show all the available filters (including
357 also sources and sinks).  This is an alias for @code{-filter:v}.
358
359 @end table
360
361 @section Advanced Video Options
362
363 @table @option
364 @item -pix_fmt[:@var{stream_specifier}] @var{format} (@emph{input/output,per-stream})
365 Set pixel format. Use @code{-pix_fmts} to show all the supported
366 pixel formats.
367 @item -sws_flags @var{flags} (@emph{input/output})
368 Set SwScaler flags.
369 @item -g @var{gop_size}
370 Set the group of pictures size.
371 @item -intra
372 deprecated, use -g 1
373 @item -vdt @var{n}
374 Discard threshold.
375 @item -qmin @var{q}
376 minimum video quantizer scale (VBR)
377 @item -qmax @var{q}
378 maximum video quantizer scale (VBR)
379 @item -qdiff @var{q}
380 maximum difference between the quantizer scales (VBR)
381 @item -qblur @var{blur}
382 video quantizer scale blur (VBR) (range 0.0 - 1.0)
383 @item -qcomp @var{compression}
384 video quantizer scale compression (VBR) (default 0.5).
385 Constant of ratecontrol equation. Recommended range for default rc_eq: 0.0-1.0
386
387 @item -lmin @var{lambda}
388 minimum video lagrange factor (VBR)
389 @item -lmax @var{lambda}
390 max video lagrange factor (VBR)
391 @item -mblmin @var{lambda}
392 minimum macroblock quantizer scale (VBR)
393 @item -mblmax @var{lambda}
394 maximum macroblock quantizer scale (VBR)
395
396 These four options (lmin, lmax, mblmin, mblmax) use 'lambda' units,
397 but you may use the QP2LAMBDA constant to easily convert from 'q' units:
398 @example
399 ffmpeg -i src.ext -lmax 21*QP2LAMBDA dst.ext
400 @end example
401
402 @item -rc_init_cplx @var{complexity}
403 initial complexity for single pass encoding
404 @item -b_qfactor @var{factor}
405 qp factor between P- and B-frames
406 @item -i_qfactor @var{factor}
407 qp factor between P- and I-frames
408 @item -b_qoffset @var{offset}
409 qp offset between P- and B-frames
410 @item -i_qoffset @var{offset}
411 qp offset between P- and I-frames
412 @item -rc_eq @var{equation}
413 Set rate control equation (see section "Expression Evaluation")
414 (default = @code{tex^qComp}).
415
416 When computing the rate control equation expression, besides the
417 standard functions defined in the section "Expression Evaluation", the
418 following functions are available:
419 @table @var
420 @item bits2qp(bits)
421 @item qp2bits(qp)
422 @end table
423
424 and the following constants are available:
425 @table @var
426 @item iTex
427 @item pTex
428 @item tex
429 @item mv
430 @item fCode
431 @item iCount
432 @item mcVar
433 @item var
434 @item isI
435 @item isP
436 @item isB
437 @item avgQP
438 @item qComp
439 @item avgIITex
440 @item avgPITex
441 @item avgPPTex
442 @item avgBPTex
443 @item avgTex
444 @end table
445
446 @item -rc_override[:@var{stream_specifier}] @var{override} (@emph{output,per-stream})
447 Rate control override for specific intervals, formated as "int,int,int"
448 list separated with slashes. Two first values are the beginning and
449 end frame numbers, last one is quantizer to use if positive, or quality
450 factor if negative.
451 @item -me_method @var{method}
452 Set motion estimation method to @var{method}.
453 Available methods are (from lowest to best quality):
454 @table @samp
455 @item zero
456 Try just the (0, 0) vector.
457 @item phods
458 @item log
459 @item x1
460 @item hex
461 @item umh
462 @item epzs
463 (default method)
464 @item full
465 exhaustive search (slow and marginally better than epzs)
466 @end table
467
468 @item -dct_algo @var{algo}
469 Set DCT algorithm to @var{algo}. Available values are:
470 @table @samp
471 @item 0
472 FF_DCT_AUTO (default)
473 @item 1
474 FF_DCT_FASTINT
475 @item 2
476 FF_DCT_INT
477 @item 3
478 FF_DCT_MMX
479 @item 4
480 FF_DCT_MLIB
481 @item 5
482 FF_DCT_ALTIVEC
483 @end table
484
485 @item -idct_algo @var{algo}
486 Set IDCT algorithm to @var{algo}. Available values are:
487 @table @samp
488 @item 0
489 FF_IDCT_AUTO (default)
490 @item 1
491 FF_IDCT_INT
492 @item 2
493 FF_IDCT_SIMPLE
494 @item 3
495 FF_IDCT_SIMPLEMMX
496 @item 4
497 FF_IDCT_LIBMPEG2MMX
498 @item 5
499 FF_IDCT_PS2
500 @item 6
501 FF_IDCT_MLIB
502 @item 7
503 FF_IDCT_ARM
504 @item 8
505 FF_IDCT_ALTIVEC
506 @item 9
507 FF_IDCT_SH4
508 @item 10
509 FF_IDCT_SIMPLEARM
510 @end table
511
512 @item -er @var{n}
513 Set error resilience to @var{n}.
514 @table @samp
515 @item 1
516 FF_ER_CAREFUL (default)
517 @item 2
518 FF_ER_COMPLIANT
519 @item 3
520 FF_ER_AGGRESSIVE
521 @item 4
522 FF_ER_VERY_AGGRESSIVE
523 @end table
524
525 @item -ec @var{bit_mask}
526 Set error concealment to @var{bit_mask}. @var{bit_mask} is a bit mask of
527 the following values:
528 @table @samp
529 @item 1
530 FF_EC_GUESS_MVS (default = enabled)
531 @item 2
532 FF_EC_DEBLOCK (default = enabled)
533 @end table
534
535 @item -bf @var{frames}
536 Use 'frames' B-frames (supported for MPEG-1, MPEG-2 and MPEG-4).
537 @item -mbd @var{mode}
538 macroblock decision
539 @table @samp
540 @item 0
541 FF_MB_DECISION_SIMPLE: Use mb_cmp (cannot change it yet in ffmpeg).
542 @item 1
543 FF_MB_DECISION_BITS: Choose the one which needs the fewest bits.
544 @item 2
545 FF_MB_DECISION_RD: rate distortion
546 @end table
547
548 @item -4mv
549 Use four motion vector by macroblock (MPEG-4 only).
550 @item -part
551 Use data partitioning (MPEG-4 only).
552 @item -bug @var{param}
553 Work around encoder bugs that are not auto-detected.
554 @item -strict @var{strictness}
555 How strictly to follow the standards.
556 @item -aic
557 Enable Advanced intra coding (h263+).
558 @item -umv
559 Enable Unlimited Motion Vector (h263+)
560
561 @item -deinterlace
562 Deinterlace pictures.
563 @item -ilme
564 Force interlacing support in encoder (MPEG-2 and MPEG-4 only).
565 Use this option if your input file is interlaced and you want
566 to keep the interlaced format for minimum losses.
567 The alternative is to deinterlace the input stream with
568 @option{-deinterlace}, but deinterlacing introduces losses.
569 @item -psnr
570 Calculate PSNR of compressed frames.
571 @item -vstats
572 Dump video coding statistics to @file{vstats_HHMMSS.log}.
573 @item -vstats_file @var{file}
574 Dump video coding statistics to @var{file}.
575 @item -top[:@var{stream_specifier}] @var{n} (@emph{output,per-stream})
576 top=1/bottom=0/auto=-1 field first
577 @item -dc @var{precision}
578 Intra_dc_precision.
579 @item -vtag @var{fourcc/tag} (@emph{output})
580 Force video tag/fourcc. This is an alias for @code{-tag:v}.
581 @item -qphist (@emph{global})
582 Show QP histogram
583 @item -vbsf @var{bitstream_filter}
584 Deprecated see -bsf
585 @item -force_key_frames[:@var{stream_specifier}] @var{time}[,@var{time}...] (@emph{output,per-stream})
586 Force key frames at the specified timestamps, more precisely at the first
587 frames after each specified time.
588 This option can be useful to ensure that a seek point is present at a
589 chapter mark or any other designated place in the output file.
590 The timestamps must be specified in ascending order.
591 @end table
592
593 @section Audio Options
594
595 @table @option
596 @item -aframes @var{number} (@emph{output})
597 Set the number of audio frames to record. This is an alias for @code{-frames:a}.
598 @item -ar[:@var{stream_specifier}] @var{freq} (@emph{input/output,per-stream})
599 Set the audio sampling frequency. For output streams it is set by
600 default to the frequency of the corresponding input stream. For input
601 streams this option only makes sense for audio grabbing devices and raw
602 demuxers and is mapped to the corresponding demuxer options.
603 @item -aq @var{q} (@emph{output})
604 Set the audio quality (codec-specific, VBR). This is an alias for -q:a.
605 @item -ac[:@var{stream_specifier}] @var{channels} (@emph{input/output,per-stream})
606 Set the number of audio channels. For output streams it is set by
607 default to the number of input audio channels. For input streams
608 this option only makes sense for audio grabbing devices and raw demuxers
609 and is mapped to the corresponding demuxer options.
610 @item -an (@emph{output})
611 Disable audio recording.
612 @item -acodec @var{codec} (@emph{input/output})
613 Set the audio codec. This is an alias for @code{-codec:a}.
614 @item -sample_fmt[:@var{stream_specifier}] @var{sample_fmt} (@emph{output,per-stream})
615 Set the audio sample format. Use @code{-help sample_fmts} to get a list
616 of supported sample formats.
617 @end table
618
619 @section Advanced Audio options:
620
621 @table @option
622 @item -atag @var{fourcc/tag} (@emph{output})
623 Force audio tag/fourcc. This is an alias for @code{-tag:a}.
624 @item -audio_service_type @var{type}
625 Set the type of service that the audio stream contains.
626 @table @option
627 @item ma
628 Main Audio Service (default)
629 @item ef
630 Effects
631 @item vi
632 Visually Impaired
633 @item hi
634 Hearing Impaired
635 @item di
636 Dialogue
637 @item co
638 Commentary
639 @item em
640 Emergency
641 @item vo
642 Voice Over
643 @item ka
644 Karaoke
645 @end table
646 @item -absf @var{bitstream_filter}
647 Deprecated, see -bsf
648 @end table
649
650 @section Subtitle options:
651
652 @table @option
653 @item -slang @var{code}
654 Set the ISO 639 language code (3 letters) of the current subtitle stream.
655 @item -scodec @var{codec} (@emph{input/output})
656 Set the subtitle codec. This is an alias for @code{-codec:s}.
657 @item -sn (@emph{output})
658 Disable subtitle recording.
659 @item -sbsf @var{bitstream_filter}
660 Deprecated, see -bsf
661 @end table
662
663 @section Audio/Video grab options
664
665 @table @option
666 @item -isync (@emph{global})
667 Synchronize read on input.
668 @end table
669
670 @section Advanced options
671
672 @table @option
673 @item -map [-]@var{input_file_id}[:@var{stream_specifier}][,@var{sync_file_id}[:@var{stream_specifier}]] (@emph{output})
674
675 Designate one or more input streams as a source for the output file. Each input
676 stream is identified by the input file index @var{input_file_id} and
677 the input stream index @var{input_stream_id} within the input
678 file. Both indices start at 0. If specified,
679 @var{sync_file_id}:@var{stream_specifier} sets which input stream
680 is used as a presentation sync reference.
681
682 The first @code{-map} option on the command line specifies the
683 source for output stream 0, the second @code{-map} option specifies
684 the source for output stream 1, etc.
685
686 A @code{-} character before the stream identifier creates a "negative" mapping.
687 It disables matching streams from already created mappings.
688
689 For example, to map ALL streams from the first input file to output
690 @example
691 ffmpeg -i INPUT -map 0 output
692 @end example
693
694 For example, if you have two audio streams in the first input file,
695 these streams are identified by "0:0" and "0:1". You can use
696 @code{-map} to select which streams to place in an output file. For
697 example:
698 @example
699 ffmpeg -i INPUT -map 0:1 out.wav
700 @end example
701 will map the input stream in @file{INPUT} identified by "0:1" to
702 the (single) output stream in @file{out.wav}.
703
704 For example, to select the stream with index 2 from input file
705 @file{a.mov} (specified by the identifier "0:2"), and stream with
706 index 6 from input @file{b.mov} (specified by the identifier "1:6"),
707 and copy them to the output file @file{out.mov}:
708 @example
709 ffmpeg -i a.mov -i b.mov -c copy -map 0:2 -map 1:6 out.mov
710 @end example
711
712 To select all video and the third audio stream from an input file:
713 @example
714 ffmpeg -i INPUT -map 0:v -map 0:a:2 OUTPUT
715 @end example
716
717 To map all the streams except the second audio, use negative mappings
718 @example
719 ffmpeg -i INPUT -map 0 -map -0:a:1 OUTPUT
720 @end example
721
722 Note that using this option disables the default mappings for this output file.
723
724 @item -map_metadata[:@var{metadata_type}][:@var{index}] @var{infile}[:@var{metadata_type}][:@var{index}] (@emph{output,per-metadata})
725 Set metadata information of the next output file from @var{infile}. Note that
726 those are file indices (zero-based), not filenames.
727 Optional @var{metadata_type} parameters specify, which metadata to copy - (g)lobal
728 (i.e. metadata that applies to the whole file), per-(s)tream, per-(c)hapter or
729 per-(p)rogram. All metadata specifiers other than global must be followed by the
730 stream/chapter/program index. If metadata specifier is omitted, it defaults to
731 global.
732
733 By default, global metadata is copied from the first input file,
734 per-stream and per-chapter metadata is copied along with streams/chapters. These
735 default mappings are disabled by creating any mapping of the relevant type. A negative
736 file index can be used to create a dummy mapping that just disables automatic copying.
737
738 For example to copy metadata from the first stream of the input file to global metadata
739 of the output file:
740 @example
741 ffmpeg -i in.ogg -map_metadata 0:s:0 out.mp3
742 @end example
743 @item -map_chapters @var{input_file_index} (@emph{output})
744 Copy chapters from input file with index @var{input_file_index} to the next
745 output file. If no chapter mapping is specified, then chapters are copied from
746 the first input file with at least one chapter. Use a negative file index to
747 disable any chapter copying.
748 @item -debug @var{category}
749 Print specific debug info.
750 @var{category} is a number or a string containing one of the following values:
751 @table @samp
752 @item bitstream
753 @item buffers
754 picture buffer allocations
755 @item bugs
756 @item dct_coeff
757 @item er
758 error recognition
759 @item mb_type
760 macroblock (MB) type
761 @item mmco
762 memory management control operations (H.264)
763 @item mv
764 motion vector
765 @item pict
766 picture info
767 @item pts
768 @item qp
769 per-block quantization parameter (QP)
770 @item rc
771 rate control
772 @item skip
773 @item startcode
774 @item thread_ops
775 threading operations
776 @item vis_mb_type
777 visualize block types
778 @item vis_qp
779 visualize quantization parameter (QP), lower QP are tinted greener
780 @end table
781 @item -benchmark (@emph{global})
782 Show benchmarking information at the end of an encode.
783 Shows CPU time used and maximum memory consumption.
784 Maximum memory consumption is not supported on all systems,
785 it will usually display as 0 if not supported.
786 @item -timelimit @var{duration} (@emph{global})
787 Exit after ffmpeg has been running for @var{duration} seconds.
788 @item -dump (@emph{global})
789 Dump each input packet to stderr.
790 @item -hex (@emph{global})
791 When dumping packets, also dump the payload.
792 @item -ps @var{size}
793 Set RTP payload size in bytes.
794 @item -re (@emph{input})
795 Read input at native frame rate. Mainly used to simulate a grab device.
796 @item -loop_input
797 Loop over the input stream. Currently it works only for image
798 streams. This option is used for automatic FFserver testing.
799 This option is deprecated, use -loop 1.
800 @item -loop_output @var{number_of_times}
801 Repeatedly loop output for formats that support looping such as animated GIF
802 (0 will loop the output infinitely).
803 This option is deprecated, use -loop.
804 @item -threads @var{count}
805 Thread count.
806 @item -vsync @var{parameter}
807 Video sync method.
808
809 @table @option
810 @item 0
811 Each frame is passed with its timestamp from the demuxer to the muxer.
812 @item 1
813 Frames will be duplicated and dropped to achieve exactly the requested
814 constant framerate.
815 @item 2
816 Frames are passed through with their timestamp or dropped so as to
817 prevent 2 frames from having the same timestamp.
818 @item -1
819 Chooses between 1 and 2 depending on muxer capabilities. This is the
820 default method.
821 @end table
822
823 With -map you can select from which stream the timestamps should be
824 taken. You can leave either video or audio unchanged and sync the
825 remaining stream(s) to the unchanged one.
826
827 @item -async @var{samples_per_second}
828 Audio sync method. "Stretches/squeezes" the audio stream to match the timestamps,
829 the parameter is the maximum samples per second by which the audio is changed.
830 -async 1 is a special case where only the start of the audio stream is corrected
831 without any later correction.
832 @item -copyts
833 Copy timestamps from input to output.
834 @item -copytb
835 Copy input stream time base from input to output when stream copying.
836 @item -shortest
837 Finish encoding when the shortest input stream ends.
838 @item -dts_delta_threshold
839 Timestamp discontinuity delta threshold.
840 @item -muxdelay @var{seconds} (@emph{input})
841 Set the maximum demux-decode delay.
842 @item -muxpreload @var{seconds} (@emph{input})
843 Set the initial demux-decode delay.
844 @item -streamid @var{output-stream-index}:@var{new-value} (@emph{output})
845 Assign a new stream-id value to an output stream. This option should be
846 specified prior to the output filename to which it applies.
847 For the situation where multiple output files exist, a streamid
848 may be reassigned to a different value.
849
850 For example, to set the stream 0 PID to 33 and the stream 1 PID to 36 for
851 an output mpegts file:
852 @example
853 ffmpeg -i infile -streamid 0:33 -streamid 1:36 out.ts
854 @end example
855
856 @item -bsf[:@var{stream_specifier}] @var{bitstream_filters} (@emph{output,per-stream})
857 Set bitstream filters for matching streams. @var{bistream_filters} is
858 a comma-separated list of bitstream filters. Use the @code{-bsfs} option
859 to get the list of bitstream filters.
860 @example
861 ffmpeg -i h264.mp4 -c:v copy -vbsf h264_mp4toannexb -an out.h264
862 @end example
863 @example
864 ffmpeg -i file.mov -an -vn -sbsf mov2textsub -c:s copy -f rawvideo sub.txt
865 @end example
866
867 @item -tag[:@var{stream_specifier}] @var{codec_tag} (@emph{output,per-stream})
868 Force a tag/fourcc for matching streams.
869 @end table
870
871 @section Preset files
872 A preset file contains a sequence of @var{option}=@var{value} pairs,
873 one for each line, specifying a sequence of options which would be
874 awkward to specify on the command line. Lines starting with the hash
875 ('#') character are ignored and are used to provide comments. Check
876 the @file{ffpresets} directory in the FFmpeg source tree for examples.
877
878 Preset files are specified with the @code{vpre}, @code{apre},
879 @code{spre}, and @code{fpre} options. The @code{fpre} option takes the
880 filename of the preset instead of a preset name as input and can be
881 used for any kind of codec. For the @code{vpre}, @code{apre}, and
882 @code{spre} options, the options specified in a preset file are
883 applied to the currently selected codec of the same type as the preset
884 option.
885
886 The argument passed to the @code{vpre}, @code{apre}, and @code{spre}
887 preset options identifies the preset file to use according to the
888 following rules:
889
890 First ffmpeg searches for a file named @var{arg}.ffpreset in the
891 directories @file{$FFMPEG_DATADIR} (if set), and @file{$HOME/.ffmpeg}, and in
892 the datadir defined at configuration time (usually @file{PREFIX/share/ffmpeg})
893 or in a @file{ffpresets} folder along the executable on win32,
894 in that order. For example, if the argument is @code{libx264-max}, it will
895 search for the file @file{libx264-max.ffpreset}.
896
897 If no such file is found, then ffmpeg will search for a file named
898 @var{codec_name}-@var{arg}.ffpreset in the above-mentioned
899 directories, where @var{codec_name} is the name of the codec to which
900 the preset file options will be applied. For example, if you select
901 the video codec with @code{-vcodec libx264} and use @code{-vpre max},
902 then it will search for the file @file{libx264-max.ffpreset}.
903 @c man end OPTIONS
904
905 @chapter Tips
906 @c man begin TIPS
907
908 @itemize
909 @item
910 For streaming at very low bitrate application, use a low frame rate
911 and a small GOP size. This is especially true for RealVideo where
912 the Linux player does not seem to be very fast, so it can miss
913 frames. An example is:
914
915 @example
916 ffmpeg -g 3 -r 3 -t 10 -b 50k -s qcif -f rv10 /tmp/b.rm
917 @end example
918
919 @item
920 The parameter 'q' which is displayed while encoding is the current
921 quantizer. The value 1 indicates that a very good quality could
922 be achieved. The value 31 indicates the worst quality. If q=31 appears
923 too often, it means that the encoder cannot compress enough to meet
924 your bitrate. You must either increase the bitrate, decrease the
925 frame rate or decrease the frame size.
926
927 @item
928 If your computer is not fast enough, you can speed up the
929 compression at the expense of the compression ratio. You can use
930 '-me zero' to speed up motion estimation, and '-intra' to disable
931 motion estimation completely (you have only I-frames, which means it
932 is about as good as JPEG compression).
933
934 @item
935 To have very low audio bitrates, reduce the sampling frequency
936 (down to 22050 Hz for MPEG audio, 22050 or 11025 for AC-3).
937
938 @item
939 To have a constant quality (but a variable bitrate), use the option
940 '-qscale n' when 'n' is between 1 (excellent quality) and 31 (worst
941 quality).
942
943 @end itemize
944 @c man end TIPS
945
946 @chapter Examples
947 @c man begin EXAMPLES
948
949 @section Video and Audio grabbing
950
951 If you specify the input format and device then ffmpeg can grab video
952 and audio directly.
953
954 @example
955 ffmpeg -f oss -i /dev/dsp -f video4linux2 -i /dev/video0 /tmp/out.mpg
956 @end example
957
958 Note that you must activate the right video source and channel before
959 launching ffmpeg with any TV viewer such as
960 @uref{http://linux.bytesex.org/xawtv/, xawtv} by Gerd Knorr. You also
961 have to set the audio recording levels correctly with a
962 standard mixer.
963
964 @section X11 grabbing
965
966 Grab the X11 display with ffmpeg via
967
968 @example
969 ffmpeg -f x11grab -s cif -r 25 -i :0.0 /tmp/out.mpg
970 @end example
971
972 0.0 is display.screen number of your X11 server, same as
973 the DISPLAY environment variable.
974
975 @example
976 ffmpeg -f x11grab -s cif -r 25 -i :0.0+10,20 /tmp/out.mpg
977 @end example
978
979 0.0 is display.screen number of your X11 server, same as the DISPLAY environment
980 variable. 10 is the x-offset and 20 the y-offset for the grabbing.
981
982 @section Video and Audio file format conversion
983
984 Any supported file format and protocol can serve as input to ffmpeg:
985
986 Examples:
987 @itemize
988 @item
989 You can use YUV files as input:
990
991 @example
992 ffmpeg -i /tmp/test%d.Y /tmp/out.mpg
993 @end example
994
995 It will use the files:
996 @example
997 /tmp/test0.Y, /tmp/test0.U, /tmp/test0.V,
998 /tmp/test1.Y, /tmp/test1.U, /tmp/test1.V, etc...
999 @end example
1000
1001 The Y files use twice the resolution of the U and V files. They are
1002 raw files, without header. They can be generated by all decent video
1003 decoders. You must specify the size of the image with the @option{-s} option
1004 if ffmpeg cannot guess it.
1005
1006 @item
1007 You can input from a raw YUV420P file:
1008
1009 @example
1010 ffmpeg -i /tmp/test.yuv /tmp/out.avi
1011 @end example
1012
1013 test.yuv is a file containing raw YUV planar data. Each frame is composed
1014 of the Y plane followed by the U and V planes at half vertical and
1015 horizontal resolution.
1016
1017 @item
1018 You can output to a raw YUV420P file:
1019
1020 @example
1021 ffmpeg -i mydivx.avi hugefile.yuv
1022 @end example
1023
1024 @item
1025 You can set several input files and output files:
1026
1027 @example
1028 ffmpeg -i /tmp/a.wav -s 640x480 -i /tmp/a.yuv /tmp/a.mpg
1029 @end example
1030
1031 Converts the audio file a.wav and the raw YUV video file a.yuv
1032 to MPEG file a.mpg.
1033
1034 @item
1035 You can also do audio and video conversions at the same time:
1036
1037 @example
1038 ffmpeg -i /tmp/a.wav -ar 22050 /tmp/a.mp2
1039 @end example
1040
1041 Converts a.wav to MPEG audio at 22050 Hz sample rate.
1042
1043 @item
1044 You can encode to several formats at the same time and define a
1045 mapping from input stream to output streams:
1046
1047 @example
1048 ffmpeg -i /tmp/a.wav -map 0:a -b 64k /tmp/a.mp2 -map 0:a -b 128k /tmp/b.mp2
1049 @end example
1050
1051 Converts a.wav to a.mp2 at 64 kbits and to b.mp2 at 128 kbits. '-map
1052 file:index' specifies which input stream is used for each output
1053 stream, in the order of the definition of output streams.
1054
1055 @item
1056 You can transcode decrypted VOBs:
1057
1058 @example
1059 ffmpeg -i snatch_1.vob -f avi -c:v mpeg4 -b:v 800k -g 300 -bf 2 -c:a libmp3lame -b:a 128k snatch.avi
1060 @end example
1061
1062 This is a typical DVD ripping example; the input is a VOB file, the
1063 output an AVI file with MPEG-4 video and MP3 audio. Note that in this
1064 command we use B-frames so the MPEG-4 stream is DivX5 compatible, and
1065 GOP size is 300 which means one intra frame every 10 seconds for 29.97fps
1066 input video. Furthermore, the audio stream is MP3-encoded so you need
1067 to enable LAME support by passing @code{--enable-libmp3lame} to configure.
1068 The mapping is particularly useful for DVD transcoding
1069 to get the desired audio language.
1070
1071 NOTE: To see the supported input formats, use @code{ffmpeg -formats}.
1072
1073 @item
1074 You can extract images from a video, or create a video from many images:
1075
1076 For extracting images from a video:
1077 @example
1078 ffmpeg -i foo.avi -r 1 -s WxH -f image2 foo-%03d.jpeg
1079 @end example
1080
1081 This will extract one video frame per second from the video and will
1082 output them in files named @file{foo-001.jpeg}, @file{foo-002.jpeg},
1083 etc. Images will be rescaled to fit the new WxH values.
1084
1085 If you want to extract just a limited number of frames, you can use the
1086 above command in combination with the -vframes or -t option, or in
1087 combination with -ss to start extracting from a certain point in time.
1088
1089 For creating a video from many images:
1090 @example
1091 ffmpeg -f image2 -i foo-%03d.jpeg -r 12 -s WxH foo.avi
1092 @end example
1093
1094 The syntax @code{foo-%03d.jpeg} specifies to use a decimal number
1095 composed of three digits padded with zeroes to express the sequence
1096 number. It is the same syntax supported by the C printf function, but
1097 only formats accepting a normal integer are suitable.
1098
1099 @item
1100 You can put many streams of the same type in the output:
1101
1102 @example
1103 ffmpeg -i test1.avi -i test2.avi -map 0.3 -map 0.2 -map 0.1 -map 0.0 -c copy test12.nut
1104 @end example
1105
1106 The resulting output file @file{test12.avi} will contain first four streams from
1107 the input file in reverse order.
1108
1109 @end itemize
1110 @c man end EXAMPLES
1111
1112 @include eval.texi
1113 @include decoders.texi
1114 @include encoders.texi
1115 @include demuxers.texi
1116 @include muxers.texi
1117 @include indevs.texi
1118 @include outdevs.texi
1119 @include protocols.texi
1120 @include bitstream_filters.texi
1121 @include filters.texi
1122 @include metadata.texi
1123
1124 @ignore
1125
1126 @setfilename ffmpeg
1127 @settitle ffmpeg video converter
1128
1129 @c man begin SEEALSO
1130 ffplay(1), ffprobe(1), ffserver(1) and the FFmpeg HTML documentation
1131 @c man end
1132
1133 @c man begin AUTHORS
1134 See git history
1135 @c man end
1136
1137 @end ignore
1138
1139 @bye