]> git.sesse.net Git - ffmpeg/blob - doc/ffmpeg-doc.texi
cb822308556b47dd03bdd983dd39e74130948c96
[ffmpeg] / doc / ffmpeg-doc.texi
1 \input texinfo @c -*- texinfo -*-
2
3 @settitle FFmpeg Documentation
4 @titlepage
5 @sp 7
6 @center @titlefont{FFmpeg Documentation}
7 @sp 3
8 @end titlepage
9
10
11 @chapter Introduction
12
13 FFmpeg is a very fast video and audio converter. It can also grab from
14 a live audio/video source.
15
16 The command line interface is designed to be intuitive, in the sense
17 that FFmpeg tries to figure out all parameters that can possibly be
18 derived automatically. You usually only have to specify the target
19 bitrate you want.
20
21 FFmpeg can also convert from any sample rate to any other, and resize
22 video on the fly with a high quality polyphase filter.
23
24 @chapter Quick Start
25
26 @c man begin EXAMPLES
27 @section Video and Audio grabbing
28
29 FFmpeg can grab video and audio from devices given that you specify the input
30 format and device.
31
32 @example
33 ffmpeg -f oss -i /dev/dsp -f video4linux2 -i /dev/video0 /tmp/out.mpg
34 @end example
35
36 Note that you must activate the right video source and channel before
37 launching FFmpeg with any TV viewer such as xawtv
38 (@url{http://bytesex.org/xawtv/}) by Gerd Knorr. You also
39 have to set the audio recording levels correctly with a
40 standard mixer.
41
42 @section X11 grabbing
43
44 FFmpeg can grab the X11 display.
45
46 @example
47 ffmpeg -f x11grab -s cif -i :0.0 /tmp/out.mpg
48 @end example
49
50 0.0 is display.screen number of your X11 server, same as
51 the DISPLAY environment variable.
52
53 @example
54 ffmpeg -f x11grab -s cif -i :0.0+10,20 /tmp/out.mpg
55 @end example
56
57 0.0 is display.screen number of your X11 server, same as the DISPLAY environment
58 variable. 10 is the x-offset and 20 the y-offset for the grabbing.
59
60 @section Video and Audio file format conversion
61
62 * FFmpeg can use any supported file format and protocol as input:
63
64 Examples:
65
66 * You can use YUV files as input:
67
68 @example
69 ffmpeg -i /tmp/test%d.Y /tmp/out.mpg
70 @end example
71
72 It will use the files:
73 @example
74 /tmp/test0.Y, /tmp/test0.U, /tmp/test0.V,
75 /tmp/test1.Y, /tmp/test1.U, /tmp/test1.V, etc...
76 @end example
77
78 The Y files use twice the resolution of the U and V files. They are
79 raw files, without header. They can be generated by all decent video
80 decoders. You must specify the size of the image with the @option{-s} option
81 if FFmpeg cannot guess it.
82
83 * You can input from a raw YUV420P file:
84
85 @example
86 ffmpeg -i /tmp/test.yuv /tmp/out.avi
87 @end example
88
89 test.yuv is a file containing raw YUV planar data. Each frame is composed
90 of the Y plane followed by the U and V planes at half vertical and
91 horizontal resolution.
92
93 * You can output to a raw YUV420P file:
94
95 @example
96 ffmpeg -i mydivx.avi hugefile.yuv
97 @end example
98
99 * You can set several input files and output files:
100
101 @example
102 ffmpeg -i /tmp/a.wav -s 640x480 -i /tmp/a.yuv /tmp/a.mpg
103 @end example
104
105 Converts the audio file a.wav and the raw YUV video file a.yuv
106 to MPEG file a.mpg.
107
108 * You can also do audio and video conversions at the same time:
109
110 @example
111 ffmpeg -i /tmp/a.wav -ar 22050 /tmp/a.mp2
112 @end example
113
114 Converts a.wav to MPEG audio at 22050Hz sample rate.
115
116 * You can encode to several formats at the same time and define a
117 mapping from input stream to output streams:
118
119 @example
120 ffmpeg -i /tmp/a.wav -ab 64k /tmp/a.mp2 -ab 128k /tmp/b.mp2 -map 0:0 -map 0:0
121 @end example
122
123 Converts a.wav to a.mp2 at 64 kbits and to b.mp2 at 128 kbits. '-map
124 file:index' specifies which input stream is used for each output
125 stream, in the order of the definition of output streams.
126
127 * You can transcode decrypted VOBs:
128
129 @example
130 ffmpeg -i snatch_1.vob -f avi -vcodec mpeg4 -b 800k -g 300 -bf 2 -acodec libmp3lame -ab 128k snatch.avi
131 @end example
132
133 This is a typical DVD ripping example; the input is a VOB file, the
134 output an AVI file with MPEG-4 video and MP3 audio. Note that in this
135 command we use B-frames so the MPEG-4 stream is DivX5 compatible, and
136 GOP size is 300 which means one intra frame every 10 seconds for 29.97fps
137 input video. Furthermore, the audio stream is MP3-encoded so you need
138 to enable LAME support by passing @code{--enable-libmp3lame} to configure.
139 The mapping is particularly useful for DVD transcoding
140 to get the desired audio language.
141
142 NOTE: To see the supported input formats, use @code{ffmpeg -formats}.
143 @c man end
144
145 @chapter Invocation
146
147 @section Syntax
148
149 The generic syntax is:
150
151 @example
152 @c man begin SYNOPSIS
153 ffmpeg [[infile options][@option{-i} @var{infile}]]... @{[outfile options] @var{outfile}@}...
154 @c man end
155 @end example
156 @c man begin DESCRIPTION
157 As a general rule, options are applied to the next specified
158 file. Therefore, order is important, and you can have the same
159 option on the command line multiple times. Each occurrence is
160 then applied to the next input or output file.
161
162 * To set the video bitrate of the output file to 64kbit/s:
163 @example
164 ffmpeg -i input.avi -b 64k output.avi
165 @end example
166
167 * To force the frame rate of the output file to 24 fps:
168 @example
169 ffmpeg -i input.avi -r 24 output.avi
170 @end example
171
172 * To force the frame rate of the input file (valid for raw formats only)
173 to 1 fps and the frame rate of the output file to 24 fps:
174 @example
175 ffmpeg -r 1 -i input.m2v -r 24 output.avi
176 @end example
177
178 The format option may be needed for raw input files.
179
180 By default, FFmpeg tries to convert as losslessly as possible: It
181 uses the same audio and video parameters for the outputs as the one
182 specified for the inputs.
183 @c man end
184
185 @c man begin OPTIONS
186 @section Main options
187
188 @table @option
189 @item -L
190 Show license.
191
192 @item -h
193 Show help.
194
195 @item -version
196 Show version.
197
198 @item -formats
199 Show available formats, codecs, protocols, ...
200
201 @item -f @var{fmt}
202 Force format.
203
204 @item -i @var{filename}
205 input file name
206
207 @item -y
208 Overwrite output files.
209
210 @item -t @var{duration}
211 Restrict the transcoded/captured video sequence
212 to the duration specified in seconds.
213 @code{hh:mm:ss[.xxx]} syntax is also supported.
214
215 @item -fs @var{limit_size}
216 Set the file size limit.
217
218 @item -ss @var{position}
219 Seek to given time position in seconds.
220 @code{hh:mm:ss[.xxx]} syntax is also supported.
221
222 @item -itsoffset @var{offset}
223 Set the input time offset in seconds.
224 @code{[-]hh:mm:ss[.xxx]} syntax is also supported.
225 This option affects all the input files that follow it.
226 The offset is added to the timestamps of the input files.
227 Specifying a positive offset means that the corresponding
228 streams are delayed by 'offset' seconds.
229
230 @item -title @var{string}
231 Set the title.
232
233 @item -timestamp @var{time}
234 Set the timestamp.
235
236 @item -author @var{string}
237 Set the author.
238
239 @item -copyright @var{string}
240 Set the copyright.
241
242 @item -comment @var{string}
243 Set the comment.
244
245 @item -album @var{string}
246 Set the album.
247
248 @item -track @var{number}
249 Set the track.
250
251 @item -year @var{number}
252 Set the year.
253
254 @item -v @var{number}
255 Set the logging verbosity level.
256
257 @item -target @var{type}
258 Specify target file type ("vcd", "svcd", "dvd", "dv", "dv50", "pal-vcd",
259 "ntsc-svcd", ... ). All the format options (bitrate, codecs,
260 buffer sizes) are then set automatically. You can just type:
261
262 @example
263 ffmpeg -i myfile.avi -target vcd /tmp/vcd.mpg
264 @end example
265
266 Nevertheless you can specify additional options as long as you know
267 they do not conflict with the standard, as in:
268
269 @example
270 ffmpeg -i myfile.avi -target vcd -bf 2 /tmp/vcd.mpg
271 @end example
272
273 @item -dframes @var{number}
274 Set the number of data frames to record.
275
276 @item -scodec @var{codec}
277 Force subtitle codec ('copy' to copy stream).
278
279 @item -newsubtitle
280 Add a new subtitle stream to the current output stream.
281
282 @item -slang @var{code}
283 Set the ISO 639 language code (3 letters) of the current subtitle stream.
284
285 @end table
286
287 @section Video Options
288
289 @table @option
290 @item -b @var{bitrate}
291 Set the video bitrate in bit/s (default = 200 kb/s).
292 @item -vframes @var{number}
293 Set the number of video frames to record.
294 @item -r @var{fps}
295 Set frame rate (Hz value, fraction or abbreviation), (default = 25).
296 @item -s @var{size}
297 Set frame size. The format is @samp{wxh} (ffserver default = 160x128, ffmpeg default = same as source).
298 The following abbreviations are recognized:
299 @table @samp
300 @item sqcif
301 128x96
302 @item qcif
303 176x144
304 @item cif
305 352x288
306 @item 4cif
307 704x576
308 @item qqvga
309 160x120
310 @item qvga
311 320x240
312 @item vga
313 640x480
314 @item svga
315 800x600
316 @item xga
317 1024x768
318 @item uxga
319 1600x1200
320 @item qxga
321 2048x1536
322 @item sxga
323 1280x1024
324 @item qsxga
325 2560x2048
326 @item hsxga
327 5120x4096
328 @item wvga
329 852x480
330 @item wxga
331 1366x768
332 @item wsxga
333 1600x1024
334 @item wuxga
335 1920x1200
336 @item woxga
337 2560x1600
338 @item wqsxga
339 3200x2048
340 @item wquxga
341 3840x2400
342 @item whsxga
343 6400x4096
344 @item whuxga
345 7680x4800
346 @item cga
347 320x200
348 @item ega
349 640x350
350 @item hd480
351 852x480
352 @item hd720
353 1280x720
354 @item hd1080
355 1920x1080
356 @end table
357
358 @item -aspect @var{aspect}
359 Set aspect ratio (4:3, 16:9 or 1.3333, 1.7777).
360 @item -croptop @var{size}
361 Set top crop band size (in pixels).
362 @item -cropbottom @var{size}
363 Set bottom crop band size (in pixels).
364 @item -cropleft @var{size}
365 Set left crop band size (in pixels).
366 @item -cropright @var{size}
367 Set right crop band size (in pixels).
368 @item -padtop @var{size}
369 Set top pad band size (in pixels).
370 @item -padbottom @var{size}
371 Set bottom pad band size (in pixels).
372 @item -padleft @var{size}
373 Set left pad band size (in pixels).
374 @item -padright @var{size}
375 Set right pad band size (in pixels).
376 @item -padcolor @var{hex_color}
377 Set color of padded bands. The value for padcolor is expressed
378 as a six digit hexadecimal number where the first two digits
379 represent red, the middle two digits green and last two digits
380 blue (default = 000000 (black)).
381 @item -vn
382 Disable video recording.
383 @item -bt @var{tolerance}
384 Set video bitrate tolerance (in bits, default 4000k).
385 Has a minimum value of: (target_bitrate/target_framerate).
386 In 1-pass mode, bitrate tolerance specifies how far ratecontrol is
387 willing to deviate from the target average bitrate value. This is
388 not related to min/max bitrate. Lowering tolerance too much has
389 an adverse effect on quality.
390 @item -maxrate @var{bitrate}
391 Set max video bitrate (in bit/s).
392 Requires -bufsize to be set.
393 @item -minrate @var{bitrate}
394 Set min video bitrate (in bit/s).
395 Most useful in setting up a CBR encode:
396 @example
397 ffmpeg -i myfile.avi -b 4000k -minrate 4000k -maxrate 4000k -bufsize 1835k out.m2v
398 @end example
399 It is of little use elsewise.
400 @item -bufsize @var{size}
401 Set video buffer verifier buffer size (in bits).
402 @item -vcodec @var{codec}
403 Force video codec to @var{codec}. Use the @code{copy} special value to
404 tell that the raw codec data must be copied as is.
405 @item -sameq
406 Use same video quality as source (implies VBR).
407
408 @item -pass @var{n}
409 Select the pass number (1 or 2). It is useful to do two pass
410 encoding. The statistics of the video are recorded in the first
411 pass and the video is generated at the exact requested bitrate
412 in the second pass.
413
414 @item -passlogfile @var{file}
415 Set two pass logfile name to @var{file}.
416
417 @item -newvideo
418 Add a new video stream to the current output stream.
419
420 @end table
421
422 @section Advanced Video Options
423
424 @table @option
425 @item -pix_fmt @var{format}
426 Set pixel format. Use 'list' as parameter to show all the supported
427 pixel formats.
428 @item -sws_flags @var{flags}
429 Set SwScaler flags (only available when compiled with swscale support).
430 @item -g @var{gop_size}
431 Set the group of pictures size.
432 @item -intra
433 Use only intra frames.
434 @item -vdt @var{n}
435 Discard threshold.
436 @item -qscale @var{q}
437 Use fixed video quantizer scale (VBR).
438 @item -qmin @var{q}
439 minimum video quantizer scale (VBR)
440 @item -qmax @var{q}
441 maximum video quantizer scale (VBR)
442 @item -qdiff @var{q}
443 maximum difference between the quantizer scales (VBR)
444 @item -qblur @var{blur}
445 video quantizer scale blur (VBR) (range 0.0 - 1.0)
446 @item -qcomp @var{compression}
447 video quantizer scale compression (VBR) (default 0.5).
448 Constant of ratecontrol equation. Recommended range for default rc_eq: 0.0-1.0
449
450 @item -lmin @var{lambda}
451 minimum video lagrange factor (VBR)
452 @item -lmax @var{lambda}
453 max video lagrange factor (VBR)
454 @item -mblmin @var{lambda}
455 minimum macroblock quantizer scale (VBR)
456 @item -mblmax @var{lambda}
457 maximum macroblock quantizer scale (VBR)
458
459 These four options (lmin, lmax, mblmin, mblmax) use 'lambda' units,
460 but you may use the QP2LAMBDA constant to easily convert from 'q' units:
461 @example
462 ffmpeg -i src.ext -lmax 21*QP2LAMBDA dst.ext
463 @end example
464
465 @item -rc_init_cplx @var{complexity}
466 initial complexity for single pass encoding
467 @item -b_qfactor @var{factor}
468 qp factor between P- and B-frames
469 @item -i_qfactor @var{factor}
470 qp factor between P- and I-frames
471 @item -b_qoffset @var{offset}
472 qp offset between P- and B-frames
473 @item -i_qoffset @var{offset}
474 qp offset between P- and I-frames
475 @item -rc_eq @var{equation}
476 Set rate control equation (@pxref{FFmpeg formula
477 evaluator}) (default = @code{tex^qComp}).
478 @item -rc_override @var{override}
479 rate control override for specific intervals
480 @item -me_method @var{method}
481 Set motion estimation method to @var{method}.
482 Available methods are (from lowest to best quality):
483 @table @samp
484 @item zero
485 Try just the (0, 0) vector.
486 @item phods
487 @item log
488 @item x1
489 @item hex
490 @item umh
491 @item epzs
492 (default method)
493 @item full
494 exhaustive search (slow and marginally better than epzs)
495 @end table
496
497 @item -dct_algo @var{algo}
498 Set DCT algorithm to @var{algo}. Available values are:
499 @table @samp
500 @item 0
501 FF_DCT_AUTO (default)
502 @item 1
503 FF_DCT_FASTINT
504 @item 2
505 FF_DCT_INT
506 @item 3
507 FF_DCT_MMX
508 @item 4
509 FF_DCT_MLIB
510 @item 5
511 FF_DCT_ALTIVEC
512 @end table
513
514 @item -idct_algo @var{algo}
515 Set IDCT algorithm to @var{algo}. Available values are:
516 @table @samp
517 @item 0
518 FF_IDCT_AUTO (default)
519 @item 1
520 FF_IDCT_INT
521 @item 2
522 FF_IDCT_SIMPLE
523 @item 3
524 FF_IDCT_SIMPLEMMX
525 @item 4
526 FF_IDCT_LIBMPEG2MMX
527 @item 5
528 FF_IDCT_PS2
529 @item 6
530 FF_IDCT_MLIB
531 @item 7
532 FF_IDCT_ARM
533 @item 8
534 FF_IDCT_ALTIVEC
535 @item 9
536 FF_IDCT_SH4
537 @item 10
538 FF_IDCT_SIMPLEARM
539 @end table
540
541 @item -er @var{n}
542 Set error resilience to @var{n}.
543 @table @samp
544 @item 1
545 FF_ER_CAREFUL (default)
546 @item 2
547 FF_ER_COMPLIANT
548 @item 3
549 FF_ER_AGGRESSIVE
550 @item 4
551 FF_ER_VERY_AGGRESSIVE
552 @end table
553
554 @item -ec @var{bit_mask}
555 Set error concealment to @var{bit_mask}. @var{bit_mask} is a bit mask of
556 the following values:
557 @table @samp
558 @item 1
559 FF_EC_GUESS_MVS (default = enabled)
560 @item 2
561 FF_EC_DEBLOCK (default = enabled)
562 @end table
563
564 @item -bf @var{frames}
565 Use 'frames' B-frames (supported for MPEG-1, MPEG-2 and MPEG-4).
566 @item -mbd @var{mode}
567 macroblock decision
568 @table @samp
569 @item 0
570 FF_MB_DECISION_SIMPLE: Use mb_cmp (cannot change it yet in FFmpeg).
571 @item 1
572 FF_MB_DECISION_BITS: Choose the one which needs the fewest bits.
573 @item 2
574 FF_MB_DECISION_RD: rate distortion
575 @end table
576
577 @item -4mv
578 Use four motion vector by macroblock (MPEG-4 only).
579 @item -part
580 Use data partitioning (MPEG-4 only).
581 @item -bug @var{param}
582 Work around encoder bugs that are not auto-detected.
583 @item -strict @var{strictness}
584 How strictly to follow the standards.
585 @item -aic
586 Enable Advanced intra coding (h263+).
587 @item -umv
588 Enable Unlimited Motion Vector (h263+)
589
590 @item -deinterlace
591 Deinterlace pictures.
592 @item -ilme
593 Force interlacing support in encoder (MPEG-2 and MPEG-4 only).
594 Use this option if your input file is interlaced and you want
595 to keep the interlaced format for minimum losses.
596 The alternative is to deinterlace the input stream with
597 @option{-deinterlace}, but deinterlacing introduces losses.
598 @item -psnr
599 Calculate PSNR of compressed frames.
600 @item -vstats
601 Dump video coding statistics to @file{vstats_HHMMSS.log}.
602 @item -vstats_file @var{file}
603 Dump video coding statistics to @var{file}.
604 @item -vhook @var{module}
605 Insert video processing @var{module}. @var{module} contains the module
606 name and its parameters separated by spaces.
607 @item -top @var{n}
608 top=1/bottom=0/auto=-1 field first
609 @item -dc @var{precision}
610 Intra_dc_precision.
611 @item -vtag @var{fourcc/tag}
612 Force video tag/fourcc.
613 @item -qphist
614 Show QP histogram.
615 @item -vbsf @var{bitstream_filter}
616 Bitstream filters available are "dump_extra", "remove_extra", "noise", "h264_mp4toannexb", "imxdump", "mjpegadump".
617 @example
618 ffmpeg -i h264.mp4 -vcodec copy -vbsf h264_mp4toannexb -an out.h264
619 @end example
620 @end table
621
622 @section Audio Options
623
624 @table @option
625 @item -aframes @var{number}
626 Set the number of audio frames to record.
627 @item -ar @var{freq}
628 Set the audio sampling frequency (default = 44100 Hz).
629 @item -ab @var{bitrate}
630 Set the audio bitrate in bit/s (default = 64k).
631 @item -ac @var{channels}
632 Set the number of audio channels (default = 1).
633 @item -an
634 Disable audio recording.
635 @item -acodec @var{codec}
636 Force audio codec to @var{codec}. Use the @code{copy} special value to
637 specify that the raw codec data must be copied as is.
638 @item -newaudio
639 Add a new audio track to the output file. If you want to specify parameters,
640 do so before @code{-newaudio} (@code{-acodec}, @code{-ab}, etc..).
641
642 Mapping will be done automatically, if the number of output streams is equal to
643 the number of input streams, else it will pick the first one that matches. You
644 can override the mapping using @code{-map} as usual.
645
646 Example:
647 @example
648 ffmpeg -i file.mpg -vcodec copy -acodec ac3 -ab 384k test.mpg -acodec mp2 -ab 192k -newaudio
649 @end example
650 @item -alang @var{code}
651 Set the ISO 639 language code (3 letters) of the current audio stream.
652 @end table
653
654 @section Advanced Audio options:
655
656 @table @option
657 @item -atag @var{fourcc/tag}
658 Force audio tag/fourcc.
659 @item -absf @var{bitstream_filter}
660 Bitstream filters available are "dump_extra", "remove_extra", "noise", "mp3comp", "mp3decomp".
661 @end table
662
663 @section Subtitle options:
664
665 @table @option
666 @item -scodec @var{codec}
667 Force subtitle codec ('copy' to copy stream).
668 @item -newsubtitle
669 Add a new subtitle stream to the current output stream.
670 @item -slang @var{code}
671 Set the ISO 639 language code (3 letters) of the current subtitle stream.
672 @item -sbsf @var{bitstream_filter}
673 Bitstream filters available are "mov2textsub", "text2movsub".
674 @example
675 ffmpeg -i file.mov -an -vn -sbsf mov2textsub -scodec copy -f rawvideo sub.txt
676 @end example
677 @end table
678
679 @section Audio/Video grab options
680
681 @table @option
682 @item -vc @var{channel}
683 Set video grab channel (DV1394 only).
684 @item -tvstd @var{standard}
685 Set television standard (NTSC, PAL (SECAM)).
686 @item -isync
687 Synchronize read on input.
688 @end table
689
690 @section Advanced options
691
692 @table @option
693 @item -map @var{input_stream_id}[:@var{sync_stream_id}]
694 Set stream mapping from input streams to output streams.
695 Just enumerate the input streams in the order you want them in the output.
696 @var{sync_stream_id} if specified sets the input stream to sync
697 against.
698 @item -map_meta_data @var{outfile}:@var{infile}
699 Set meta data information of @var{outfile} from @var{infile}.
700 @item -debug
701 Print specific debug info.
702 @item -benchmark
703 Add timings for benchmarking.
704 @item -dump
705 Dump each input packet.
706 @item -hex
707 When dumping packets, also dump the payload.
708 @item -bitexact
709 Only use bit exact algorithms (for codec testing).
710 @item -ps @var{size}
711 Set packet size in bits.
712 @item -re
713 Read input at native frame rate. Mainly used to simulate a grab device.
714 @item -loop_input
715 Loop over the input stream. Currently it works only for image
716 streams. This option is used for automatic FFserver testing.
717 @item -loop_output @var{number_of_times}
718 Repeatedly loop output for formats that support looping such as animated GIF
719 (0 will loop the output infinitely).
720 @item -threads @var{count}
721 Thread count.
722 @item -vsync @var{parameter}
723 Video sync method. Video will be stretched/squeezed to match the timestamps,
724 it is done by duplicating and dropping frames. With -map you can select from
725 which stream the timestamps should be taken. You can leave either video or
726 audio unchanged and sync the remaining stream(s) to the unchanged one.
727 @item -async @var{samples_per_second}
728 Audio sync method. "Stretches/squeezes" the audio stream to match the timestamps,
729 the parameter is the maximum samples per second by which the audio is changed.
730 -async 1 is a special case where only the start of the audio stream is corrected
731 without any later correction.
732 @item -copyts
733 Copy timestamps from input to output.
734 @item -shortest
735 Finish encoding when the shortest input stream ends.
736 @item -dts_delta_threshold
737 Timestamp discontinuity delta threshold.
738 @item -muxdelay @var{seconds}
739 Set the maximum demux-decode delay.
740 @item -muxpreload @var{seconds}
741 Set the initial demux-decode delay.
742 @end table
743
744 @node FFmpeg formula evaluator
745 @section FFmpeg formula evaluator
746
747 When evaluating a rate control string, FFmpeg uses an internal formula
748 evaluator.
749
750 The following binary operators are available: @code{+}, @code{-},
751 @code{*}, @code{/}, @code{^}.
752
753 The following unary operators are available: @code{+}, @code{-},
754 @code{(...)}.
755
756 The following functions are available:
757 @table @var
758 @item sinh(x)
759 @item cosh(x)
760 @item tanh(x)
761 @item sin(x)
762 @item cos(x)
763 @item tan(x)
764 @item exp(x)
765 @item log(x)
766 @item squish(x)
767 @item gauss(x)
768 @item abs(x)
769 @item max(x, y)
770 @item min(x, y)
771 @item gt(x, y)
772 @item lt(x, y)
773 @item eq(x, y)
774 @item bits2qp(bits)
775 @item qp2bits(qp)
776 @end table
777
778 The following constants are available:
779 @table @var
780 @item PI
781 @item E
782 @item iTex
783 @item pTex
784 @item tex
785 @item mv
786 @item fCode
787 @item iCount
788 @item mcVar
789 @item var
790 @item isI
791 @item isP
792 @item isB
793 @item avgQP
794 @item qComp
795 @item avgIITex
796 @item avgPITex
797 @item avgPPTex
798 @item avgBPTex
799 @item avgTex
800 @end table
801
802 @c man end
803
804 @ignore
805
806 @setfilename ffmpeg
807 @settitle FFmpeg video converter
808
809 @c man begin SEEALSO
810 ffserver(1), ffplay(1) and the HTML documentation of @file{ffmpeg}.
811 @c man end
812
813 @c man begin AUTHOR
814 Fabrice Bellard
815 @c man end
816
817 @end ignore
818
819 @section Protocols
820
821 The file name can be @file{-} to read from standard input or to write
822 to standard output.
823
824 FFmpeg also handles many protocols specified with an URL syntax.
825
826 Use 'ffmpeg -formats' to see a list of the supported protocols.
827
828 The protocol @code{http:} is currently used only to communicate with
829 FFserver (see the FFserver documentation). When FFmpeg will be a
830 video player it will also be used for streaming :-)
831
832 @chapter Tips
833
834 @itemize
835 @item For streaming at very low bitrate application, use a low frame rate
836 and a small GOP size. This is especially true for RealVideo where
837 the Linux player does not seem to be very fast, so it can miss
838 frames. An example is:
839
840 @example
841 ffmpeg -g 3 -r 3 -t 10 -b 50k -s qcif -f rv10 /tmp/b.rm
842 @end example
843
844 @item  The parameter 'q' which is displayed while encoding is the current
845 quantizer. The value 1 indicates that a very good quality could
846 be achieved. The value 31 indicates the worst quality. If q=31 appears
847 too often, it means that the encoder cannot compress enough to meet
848 your bitrate. You must either increase the bitrate, decrease the
849 frame rate or decrease the frame size.
850
851 @item If your computer is not fast enough, you can speed up the
852 compression at the expense of the compression ratio. You can use
853 '-me zero' to speed up motion estimation, and '-intra' to disable
854 motion estimation completely (you have only I-frames, which means it
855 is about as good as JPEG compression).
856
857 @item To have very low audio bitrates, reduce the sampling frequency
858 (down to 22050 kHz for MPEG audio, 22050 or 11025 for AC3).
859
860 @item To have a constant quality (but a variable bitrate), use the option
861 '-qscale n' when 'n' is between 1 (excellent quality) and 31 (worst
862 quality).
863
864 @item When converting video files, you can use the '-sameq' option which
865 uses the same quality factor in the encoder as in the decoder.
866 It allows almost lossless encoding.
867
868 @end itemize
869
870 @bye