OSDN Git Service

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