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