You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1808 lines
61KB

  1. \input texinfo @c -*- texinfo -*-
  2. @settitle FFmpeg Documentation
  3. @titlepage
  4. @sp 7
  5. @center @titlefont{FFmpeg Documentation}
  6. @sp 3
  7. @end titlepage
  8. @chapter Introduction
  9. FFmpeg is a very fast video and audio converter. It can also grab from
  10. a live audio/video source.
  11. The command line interface is designed to be intuitive, in the sense
  12. that FFmpeg tries to figure out all parameters that can possibly be
  13. derived automatically. You usually only have to specify the target
  14. bitrate you want.
  15. FFmpeg can also convert from any sample rate to any other, and resize
  16. video on the fly with a high quality polyphase filter.
  17. @chapter Quick Start
  18. @c man begin EXAMPLES
  19. @section Video and Audio grabbing
  20. FFmpeg can grab video and audio from devices given that you specify the input
  21. format and device.
  22. @example
  23. ffmpeg -f audio_device -i /dev/dsp -f video4linux2 -i /dev/video0 /tmp/out.mpg
  24. @end example
  25. Note that you must activate the right video source and channel before
  26. launching FFmpeg with any TV viewer such as xawtv
  27. (@url{http://bytesex.org/xawtv/}) by Gerd Knorr. You also
  28. have to set the audio recording levels correctly with a
  29. standard mixer.
  30. @section X11 grabbing
  31. FFmpeg can grab the X11 display.
  32. @example
  33. ffmpeg -f x11grab -s cif -i :0.0 /tmp/out.mpg
  34. @end example
  35. 0.0 is display.screen number of your X11 server, same as
  36. the DISPLAY environment variable.
  37. @example
  38. ffmpeg -f x11grab -s cif -i :0.0+10,20 /tmp/out.mpg
  39. @end example
  40. 0.0 is display.screen number of your X11 server, same as the DISPLAY environment
  41. variable. 10 is the x-offset and 20 the y-offset for the grabbing.
  42. @section Video and Audio file format conversion
  43. * FFmpeg can use any supported file format and protocol as input:
  44. Examples:
  45. * You can use YUV files as input:
  46. @example
  47. ffmpeg -i /tmp/test%d.Y /tmp/out.mpg
  48. @end example
  49. It will use the files:
  50. @example
  51. /tmp/test0.Y, /tmp/test0.U, /tmp/test0.V,
  52. /tmp/test1.Y, /tmp/test1.U, /tmp/test1.V, etc...
  53. @end example
  54. The Y files use twice the resolution of the U and V files. They are
  55. raw files, without header. They can be generated by all decent video
  56. decoders. You must specify the size of the image with the @option{-s} option
  57. if FFmpeg cannot guess it.
  58. * You can input from a raw YUV420P file:
  59. @example
  60. ffmpeg -i /tmp/test.yuv /tmp/out.avi
  61. @end example
  62. test.yuv is a file containing raw YUV planar data. Each frame is composed
  63. of the Y plane followed by the U and V planes at half vertical and
  64. horizontal resolution.
  65. * You can output to a raw YUV420P file:
  66. @example
  67. ffmpeg -i mydivx.avi hugefile.yuv
  68. @end example
  69. * You can set several input files and output files:
  70. @example
  71. ffmpeg -i /tmp/a.wav -s 640x480 -i /tmp/a.yuv /tmp/a.mpg
  72. @end example
  73. Converts the audio file a.wav and the raw YUV video file a.yuv
  74. to MPEG file a.mpg.
  75. * You can also do audio and video conversions at the same time:
  76. @example
  77. ffmpeg -i /tmp/a.wav -ar 22050 /tmp/a.mp2
  78. @end example
  79. Converts a.wav to MPEG audio at 22050Hz sample rate.
  80. * You can encode to several formats at the same time and define a
  81. mapping from input stream to output streams:
  82. @example
  83. ffmpeg -i /tmp/a.wav -ab 64k /tmp/a.mp2 -ab 128k /tmp/b.mp2 -map 0:0 -map 0:0
  84. @end example
  85. Converts a.wav to a.mp2 at 64 kbits and to b.mp2 at 128 kbits. '-map
  86. file:index' specifies which input stream is used for each output
  87. stream, in the order of the definition of output streams.
  88. * You can transcode decrypted VOBs
  89. @example
  90. ffmpeg -i snatch_1.vob -f avi -vcodec mpeg4 -b 800k -g 300 -bf 2 -acodec libmp3lame -ab 128k snatch.avi
  91. @end example
  92. This is a typical DVD ripping example; the input is a VOB file, the
  93. output an AVI file with MPEG-4 video and MP3 audio. Note that in this
  94. command we use B-frames so the MPEG-4 stream is DivX5 compatible, and
  95. GOP size is 300 which means one intra frame every 10 seconds for 29.97fps
  96. input video. Furthermore, the audio stream is MP3-encoded so you need
  97. to enable LAME support by passing @code{--enable-libmp3lame} to configure.
  98. The mapping is particularly useful for DVD transcoding
  99. to get the desired audio language.
  100. NOTE: To see the supported input formats, use @code{ffmpeg -formats}.
  101. @c man end
  102. @chapter Invocation
  103. @section Syntax
  104. The generic syntax is:
  105. @example
  106. @c man begin SYNOPSIS
  107. ffmpeg [[infile options][@option{-i} @var{infile}]]... @{[outfile options] @var{outfile}@}...
  108. @c man end
  109. @end example
  110. @c man begin DESCRIPTION
  111. As a general rule, options are applied to the next specified
  112. file. Therefore, order is important, and you can have the same
  113. option on the command line multiple times. Each occurrence is
  114. then applied to the next input or output file.
  115. * To set the video bitrate of the output file to 64kbit/s:
  116. @example
  117. ffmpeg -i input.avi -b 64k output.avi
  118. @end example
  119. * To force the frame rate of the input and output file to 24 fps:
  120. @example
  121. ffmpeg -r 24 -i input.avi output.avi
  122. @end example
  123. * To force the frame rate of the output file to 24 fps:
  124. @example
  125. ffmpeg -i input.avi -r 24 output.avi
  126. @end example
  127. * To force the frame rate of input file to 1 fps and the output file to 24 fps:
  128. @example
  129. ffmpeg -r 1 -i input.avi -r 24 output.avi
  130. @end example
  131. The format option may be needed for raw input files.
  132. By default, FFmpeg tries to convert as losslessly as possible: It
  133. uses the same audio and video parameters for the outputs as the one
  134. specified for the inputs.
  135. @c man end
  136. @c man begin OPTIONS
  137. @section Main options
  138. @table @option
  139. @item -L
  140. Show license.
  141. @item -h
  142. Show help.
  143. @item -version
  144. Show version.
  145. @item -formats
  146. Show available formats, codecs, protocols, ...
  147. @item -f fmt
  148. Force format.
  149. @item -i filename
  150. input filename
  151. @item -y
  152. Overwrite output files.
  153. @item -t duration
  154. Restrict the transcoded/captured video sequence
  155. to the duration specified in seconds.
  156. @code{hh:mm:ss[.xxx]} syntax is also supported.
  157. @item -fs limit_size
  158. Set the file size limit.
  159. @item -ss position
  160. Seek to given time position in seconds.
  161. @code{hh:mm:ss[.xxx]} syntax is also supported.
  162. @item -itsoffset offset
  163. Set the input time offset in seconds.
  164. @code{[-]hh:mm:ss[.xxx]} syntax is also supported.
  165. This option affects all the input files that follow it.
  166. The offset is added to the timestamps of the input files.
  167. Specifying a positive offset means that the corresponding
  168. streams are delayed by 'offset' seconds.
  169. @item -title string
  170. Set the title.
  171. @item -timestamp time
  172. Set the timestamp.
  173. @item -author string
  174. Set the author.
  175. @item -copyright string
  176. Set the copyright.
  177. @item -comment string
  178. Set the comment.
  179. @item -album string
  180. Set the album.
  181. @item -track number
  182. Set the track.
  183. @item -year number
  184. Set the year.
  185. @item -v verbose
  186. Control amount of logging.
  187. @item -target type
  188. Specify target file type ("vcd", "svcd", "dvd", "dv", "dv50", "pal-vcd",
  189. "ntsc-svcd", ... ). All the format options (bitrate, codecs,
  190. buffer sizes) are then set automatically. You can just type:
  191. @example
  192. ffmpeg -i myfile.avi -target vcd /tmp/vcd.mpg
  193. @end example
  194. Nevertheless you can specify additional options as long as you know
  195. they do not conflict with the standard, as in:
  196. @example
  197. ffmpeg -i myfile.avi -target vcd -bf 2 /tmp/vcd.mpg
  198. @end example
  199. @item -dframes number
  200. Set the number of data frames to record.
  201. @item -scodec codec
  202. Force subtitle codec ('copy' to copy stream).
  203. @item -newsubtitle
  204. Add a new subtitle stream to the current output stream.
  205. @item -slang code
  206. Set the ISO 639 language code (3 letters) of the current subtitle stream.
  207. @end table
  208. @section Video Options
  209. @table @option
  210. @item -b bitrate
  211. Set the video bitrate in bit/s (default = 200 kb/s).
  212. @item -vframes number
  213. Set the number of video frames to record.
  214. @item -r fps
  215. Set frame rate (Hz value, fraction or abbreviation), (default = 25).
  216. @item -s size
  217. Set frame size. The format is @samp{wxh} (ffserver default = 160x128, ffmpeg default = same as source).
  218. The following abbreviations are recognized:
  219. @table @samp
  220. @item sqcif
  221. 128x96
  222. @item qcif
  223. 176x144
  224. @item cif
  225. 352x288
  226. @item 4cif
  227. 704x576
  228. @item qqvga
  229. 160x120
  230. @item qvga
  231. 320x240
  232. @item vga
  233. 640x480
  234. @item svga
  235. 800x600
  236. @item xga
  237. 1024x768
  238. @item uxga
  239. 1600x1200
  240. @item qxga
  241. 2048x1536
  242. @item sxga
  243. 1280x1024
  244. @item qsxga
  245. 2560x2048
  246. @item hsxga
  247. 5120x4096
  248. @item wvga
  249. 852x480
  250. @item wxga
  251. 1366x768
  252. @item wsxga
  253. 1600x1024
  254. @item wuxga
  255. 1920x1200
  256. @item woxga
  257. 2560x1600
  258. @item wqsxga
  259. 3200x2048
  260. @item wquxga
  261. 3840x2400
  262. @item whsxga
  263. 6400x4096
  264. @item whuxga
  265. 7680x4800
  266. @item cga
  267. 320x200
  268. @item ega
  269. 640x350
  270. @item hd480
  271. 852x480
  272. @item hd720
  273. 1280x720
  274. @item hd1080
  275. 1920x1080
  276. @end table
  277. @item -aspect aspect
  278. Set aspect ratio (4:3, 16:9 or 1.3333, 1.7777).
  279. @item -croptop size
  280. Set top crop band size (in pixels).
  281. @item -cropbottom size
  282. Set bottom crop band size (in pixels).
  283. @item -cropleft size
  284. Set left crop band size (in pixels).
  285. @item -cropright size
  286. Set right crop band size (in pixels).
  287. @item -padtop size
  288. Set top pad band size (in pixels).
  289. @item -padbottom size
  290. Set bottom pad band size (in pixels).
  291. @item -padleft size
  292. Set left pad band size (in pixels).
  293. @item -padright size
  294. Set right pad band size (in pixels).
  295. @item -padcolor (hex color)
  296. Set color of padded bands. The value for padcolor is expressed
  297. as a six digit hexadecimal number where the first two digits
  298. represent red, the middle two digits green and last two digits
  299. blue (default = 000000 (black)).
  300. @item -vn
  301. Disable video recording.
  302. @item -bt tolerance
  303. Set video bitrate tolerance (in bit/s).
  304. @item -maxrate bitrate
  305. Set max video bitrate (in bit/s).
  306. @item -minrate bitrate
  307. Set min video bitrate (in bit/s).
  308. @item -bufsize size
  309. Set video buffer verifier buffer size (in bits).
  310. @item -vcodec codec
  311. Force video codec to @var{codec}. Use the @code{copy} special value to
  312. tell that the raw codec data must be copied as is.
  313. @item -sameq
  314. Use same video quality as source (implies VBR).
  315. @item -pass n
  316. Select the pass number (1 or 2). It is useful to do two pass
  317. encoding. The statistics of the video are recorded in the first
  318. pass and the video is generated at the exact requested bitrate
  319. in the second pass.
  320. @item -passlogfile file
  321. Set two pass logfile name to @var{file}.
  322. @item -newvideo
  323. Add a new video stream to the current output stream.
  324. @end table
  325. @section Advanced Video Options
  326. @table @option
  327. @item -pix_fmt format
  328. Set pixel format. Use 'list' as parameter to show all the supported
  329. pixel formats.
  330. @item -sws_flags flags
  331. Set SwScaler flags (only available when compiled with SwScaler support).
  332. @item -g gop_size
  333. Set the group of pictures size.
  334. @item -intra
  335. Use only intra frames.
  336. @item -vdt n
  337. Discard threshold.
  338. @item -qscale q
  339. Use fixed video quantizer scale (VBR).
  340. @item -qmin q
  341. minimum video quantizer scale (VBR)
  342. @item -qmax q
  343. maximum video quantizer scale (VBR)
  344. @item -qdiff q
  345. maximum difference between the quantizer scales (VBR)
  346. @item -qblur blur
  347. video quantizer scale blur (VBR)
  348. @item -qcomp compression
  349. video quantizer scale compression (VBR)
  350. @item -lmin lambda
  351. minimum video lagrange factor (VBR)
  352. @item -lmax lambda
  353. max video lagrange factor (VBR)
  354. @item -mblmin lambda
  355. minimum macroblock quantizer scale (VBR)
  356. @item -mblmax lambda
  357. maximum macroblock quantizer scale (VBR)
  358. These four options (lmin, lmax, mblmin, mblmax) use 'lambda' units,
  359. but you may use the QP2LAMBDA constant to easily convert from 'q' units:
  360. @example
  361. ffmpeg -i src.ext -lmax 21*QP2LAMBDA dst.ext
  362. @end example
  363. @item -rc_init_cplx complexity
  364. initial complexity for single pass encoding
  365. @item -b_qfactor factor
  366. qp factor between P- and B-frames
  367. @item -i_qfactor factor
  368. qp factor between P- and I-frames
  369. @item -b_qoffset offset
  370. qp offset between P- and B-frames
  371. @item -i_qoffset offset
  372. qp offset between P- and I-frames
  373. @item -rc_eq equation
  374. Set rate control equation (@pxref{FFmpeg formula
  375. evaluator}) (default = @code{tex^qComp}).
  376. @item -rc_override override
  377. rate control override for specific intervals
  378. @item -me_method method
  379. Set motion estimation method to @var{method}.
  380. Available methods are (from lowest to best quality):
  381. @table @samp
  382. @item zero
  383. Try just the (0, 0) vector.
  384. @item phods
  385. @item log
  386. @item x1
  387. @item hex
  388. @item umh
  389. @item epzs
  390. (default method)
  391. @item full
  392. exhaustive search (slow and marginally better than epzs)
  393. @end table
  394. @item -dct_algo algo
  395. Set DCT algorithm to @var{algo}. Available values are:
  396. @table @samp
  397. @item 0
  398. FF_DCT_AUTO (default)
  399. @item 1
  400. FF_DCT_FASTINT
  401. @item 2
  402. FF_DCT_INT
  403. @item 3
  404. FF_DCT_MMX
  405. @item 4
  406. FF_DCT_MLIB
  407. @item 5
  408. FF_DCT_ALTIVEC
  409. @end table
  410. @item -idct_algo algo
  411. Set IDCT algorithm to @var{algo}. Available values are:
  412. @table @samp
  413. @item 0
  414. FF_IDCT_AUTO (default)
  415. @item 1
  416. FF_IDCT_INT
  417. @item 2
  418. FF_IDCT_SIMPLE
  419. @item 3
  420. FF_IDCT_SIMPLEMMX
  421. @item 4
  422. FF_IDCT_LIBMPEG2MMX
  423. @item 5
  424. FF_IDCT_PS2
  425. @item 6
  426. FF_IDCT_MLIB
  427. @item 7
  428. FF_IDCT_ARM
  429. @item 8
  430. FF_IDCT_ALTIVEC
  431. @item 9
  432. FF_IDCT_SH4
  433. @item 10
  434. FF_IDCT_SIMPLEARM
  435. @end table
  436. @item -er n
  437. Set error resilience to @var{n}.
  438. @table @samp
  439. @item 1
  440. FF_ER_CAREFUL (default)
  441. @item 2
  442. FF_ER_COMPLIANT
  443. @item 3
  444. FF_ER_AGGRESSIVE
  445. @item 4
  446. FF_ER_VERY_AGGRESSIVE
  447. @end table
  448. @item -ec bit_mask
  449. Set error concealment to @var{bit_mask}. @var{bit_mask} is a bit mask of
  450. the following values:
  451. @table @samp
  452. @item 1
  453. FF_EC_GUESS_MVS (default = enabled)
  454. @item 2
  455. FF_EC_DEBLOCK (default = enabled)
  456. @end table
  457. @item -bf frames
  458. Use 'frames' B-frames (supported for MPEG-1, MPEG-2 and MPEG-4).
  459. @item -mbd mode
  460. macroblock decision
  461. @table @samp
  462. @item 0
  463. FF_MB_DECISION_SIMPLE: Use mb_cmp (cannot change it yet in FFmpeg).
  464. @item 1
  465. FF_MB_DECISION_BITS: Choose the one which needs the fewest bits.
  466. @item 2
  467. FF_MB_DECISION_RD: rate distortion
  468. @end table
  469. @item -4mv
  470. Use four motion vector by macroblock (MPEG-4 only).
  471. @item -part
  472. Use data partitioning (MPEG-4 only).
  473. @item -bug param
  474. Work around encoder bugs that are not auto-detected.
  475. @item -strict strictness
  476. How strictly to follow the standards.
  477. @item -aic
  478. Enable Advanced intra coding (h263+).
  479. @item -umv
  480. Enable Unlimited Motion Vector (h263+)
  481. @item -deinterlace
  482. Deinterlace pictures.
  483. @item -ilme
  484. Force interlacing support in encoder (MPEG-2 and MPEG-4 only).
  485. Use this option if your input file is interlaced and you want
  486. to keep the interlaced format for minimum losses.
  487. The alternative is to deinterlace the input stream with
  488. @option{-deinterlace}, but deinterlacing introduces losses.
  489. @item -psnr
  490. Calculate PSNR of compressed frames.
  491. @item -vstats
  492. Dump video coding statistics to @file{vstats_HHMMSS.log}.
  493. @item -vstats_file file
  494. Dump video coding statistics to @var{file}.
  495. @item -vhook module
  496. Insert video processing @var{module}. @var{module} contains the module
  497. name and its parameters separated by spaces.
  498. @item -top n
  499. top=1/bottom=0/auto=-1 field first
  500. @item -dc precision
  501. Intra_dc_precision.
  502. @item -vtag fourcc/tag
  503. Force video tag/fourcc.
  504. @item -qphist
  505. Show QP histogram.
  506. @item -vbsf bitstream filter
  507. Bitstream filters available are "dump_extra", "remove_extra", "noise".
  508. @end table
  509. @section Audio Options
  510. @table @option
  511. @item -aframes number
  512. Set the number of audio frames to record.
  513. @item -ar freq
  514. Set the audio sampling frequency (default = 44100 Hz).
  515. @item -ab bitrate
  516. Set the audio bitrate in bit/s (default = 64k).
  517. @item -ac channels
  518. Set the number of audio channels (default = 1).
  519. @item -an
  520. Disable audio recording.
  521. @item -acodec codec
  522. Force audio codec to @var{codec}. Use the @code{copy} special value to
  523. specify that the raw codec data must be copied as is.
  524. @item -newaudio
  525. Add a new audio track to the output file. If you want to specify parameters,
  526. do so before @code{-newaudio} (@code{-acodec}, @code{-ab}, etc..).
  527. Mapping will be done automatically, if the number of output streams is equal to
  528. the number of input streams, else it will pick the first one that matches. You
  529. can override the mapping using @code{-map} as usual.
  530. Example:
  531. @example
  532. ffmpeg -i file.mpg -vcodec copy -acodec ac3 -ab 384k test.mpg -acodec mp2 -ab 192k -newaudio
  533. @end example
  534. @item -alang code
  535. Set the ISO 639 language code (3 letters) of the current audio stream.
  536. @end table
  537. @section Advanced Audio options:
  538. @table @option
  539. @item -atag fourcc/tag
  540. Force audio tag/fourcc.
  541. @item -absf bitstream filter
  542. Bitstream filters available are "dump_extra", "remove_extra", "noise", "mp3comp", "mp3decomp".
  543. @end table
  544. @section Subtitle options:
  545. @table @option
  546. @item -scodec codec
  547. Force subtitle codec ('copy' to copy stream).
  548. @item -newsubtitle
  549. Add a new subtitle stream to the current output stream.
  550. @item -slang code
  551. Set the ISO 639 language code (3 letters) of the current subtitle stream.
  552. @end table
  553. @section Audio/Video grab options
  554. @table @option
  555. @item -vc channel
  556. Set video grab channel (DV1394 only).
  557. @item -tvstd standard
  558. Set television standard (NTSC, PAL (SECAM)).
  559. @item -isync
  560. Synchronize read on input.
  561. @end table
  562. @section Advanced options
  563. @table @option
  564. @item -map input stream id[:input stream id]
  565. Set stream mapping from input streams to output streams.
  566. Just enumerate the input streams in the order you want them in the output.
  567. [input stream id] sets the (input) stream to sync against.
  568. @item -map_meta_data outfile:infile
  569. Set meta data information of outfile from infile.
  570. @item -debug
  571. Print specific debug info.
  572. @item -benchmark
  573. Add timings for benchmarking.
  574. @item -dump
  575. Dump each input packet.
  576. @item -hex
  577. When dumping packets, also dump the payload.
  578. @item -bitexact
  579. Only use bit exact algorithms (for codec testing).
  580. @item -ps size
  581. Set packet size in bits.
  582. @item -re
  583. Read input at native frame rate. Mainly used to simulate a grab device.
  584. @item -loop_input
  585. Loop over the input stream. Currently it works only for image
  586. streams. This option is used for automatic FFserver testing.
  587. @item -loop_output number_of_times
  588. Repeatedly loop output for formats that support looping such as animated GIF
  589. (0 will loop the output infinitely).
  590. @item -threads count
  591. Thread count.
  592. @item -vsync parameter
  593. Video sync method. Video will be stretched/squeezed to match the timestamps,
  594. it is done by duplicating and dropping frames. With -map you can select from
  595. which stream the timestamps should be taken. You can leave either video or
  596. audio unchanged and sync the remaining stream(s) to the unchanged one.
  597. @item -async samples_per_second
  598. Audio sync method. "Stretches/squeezes" the audio stream to match the timestamps,
  599. the parameter is the maximum samples per second by which the audio is changed.
  600. -async 1 is a special case where only the start of the audio stream is corrected
  601. without any later correction.
  602. @item -copyts
  603. Copy timestamps from input to output.
  604. @item -shortest
  605. Finish encoding when the shortest input stream ends.
  606. @item -dts_delta_threshold
  607. Timestamp discontinuity delta threshold.
  608. @item -muxdelay seconds
  609. Set the maximum demux-decode delay.
  610. @item -muxpreload seconds
  611. Set the initial demux-decode delay.
  612. @end table
  613. @node FFmpeg formula evaluator
  614. @section FFmpeg formula evaluator
  615. When evaluating a rate control string, FFmpeg uses an internal formula
  616. evaluator.
  617. The following binary operators are available: @code{+}, @code{-},
  618. @code{*}, @code{/}, @code{^}.
  619. The following unary operators are available: @code{+}, @code{-},
  620. @code{(...)}.
  621. The following functions are available:
  622. @table @var
  623. @item sinh(x)
  624. @item cosh(x)
  625. @item tanh(x)
  626. @item sin(x)
  627. @item cos(x)
  628. @item tan(x)
  629. @item exp(x)
  630. @item log(x)
  631. @item squish(x)
  632. @item gauss(x)
  633. @item abs(x)
  634. @item max(x, y)
  635. @item min(x, y)
  636. @item gt(x, y)
  637. @item lt(x, y)
  638. @item eq(x, y)
  639. @item bits2qp(bits)
  640. @item qp2bits(qp)
  641. @end table
  642. The following constants are available:
  643. @table @var
  644. @item PI
  645. @item E
  646. @item iTex
  647. @item pTex
  648. @item tex
  649. @item mv
  650. @item fCode
  651. @item iCount
  652. @item mcVar
  653. @item var
  654. @item isI
  655. @item isP
  656. @item isB
  657. @item avgQP
  658. @item qComp
  659. @item avgIITex
  660. @item avgPITex
  661. @item avgPPTex
  662. @item avgBPTex
  663. @item avgTex
  664. @end table
  665. @c man end
  666. @ignore
  667. @setfilename ffmpeg
  668. @settitle FFmpeg video converter
  669. @c man begin SEEALSO
  670. ffserver(1), ffplay(1) and the HTML documentation of @file{ffmpeg}.
  671. @c man end
  672. @c man begin AUTHOR
  673. Fabrice Bellard
  674. @c man end
  675. @end ignore
  676. @section Protocols
  677. The filename can be @file{-} to read from standard input or to write
  678. to standard output.
  679. FFmpeg also handles many protocols specified with an URL syntax.
  680. Use 'ffmpeg -formats' to see a list of the supported protocols.
  681. The protocol @code{http:} is currently used only to communicate with
  682. FFserver (see the FFserver documentation). When FFmpeg will be a
  683. video player it will also be used for streaming :-)
  684. @chapter Tips
  685. @itemize
  686. @item For streaming at very low bitrate application, use a low frame rate
  687. and a small GOP size. This is especially true for RealVideo where
  688. the Linux player does not seem to be very fast, so it can miss
  689. frames. An example is:
  690. @example
  691. ffmpeg -g 3 -r 3 -t 10 -b 50k -s qcif -f rv10 /tmp/b.rm
  692. @end example
  693. @item The parameter 'q' which is displayed while encoding is the current
  694. quantizer. The value 1 indicates that a very good quality could
  695. be achieved. The value 31 indicates the worst quality. If q=31 appears
  696. too often, it means that the encoder cannot compress enough to meet
  697. your bitrate. You must either increase the bitrate, decrease the
  698. frame rate or decrease the frame size.
  699. @item If your computer is not fast enough, you can speed up the
  700. compression at the expense of the compression ratio. You can use
  701. '-me zero' to speed up motion estimation, and '-intra' to disable
  702. motion estimation completely (you have only I-frames, which means it
  703. is about as good as JPEG compression).
  704. @item To have very low audio bitrates, reduce the sampling frequency
  705. (down to 22050 kHz for MPEG audio, 22050 or 11025 for AC3).
  706. @item To have a constant quality (but a variable bitrate), use the option
  707. '-qscale n' when 'n' is between 1 (excellent quality) and 31 (worst
  708. quality).
  709. @item When converting video files, you can use the '-sameq' option which
  710. uses the same quality factor in the encoder as in the decoder.
  711. It allows almost lossless encoding.
  712. @end itemize
  713. @chapter external libraries
  714. FFmpeg can be hooked up with a number of external libraries to add support
  715. for more formats. None of them are used by default, their use has to be
  716. explicitly requested by passing the appropriate flags to @file{./configure}.
  717. @section AMR
  718. AMR comes in two different flavors, WB and NB. FFmpeg can make use of the
  719. AMR WB (floating-point mode) and the AMR NB (floating-point mode) reference
  720. decoders and encoders.
  721. Go to @url{http://www.penguin.cz/~utx/amr} and follow the instructions for
  722. installing the libraries. Then pass @code{--enable-libamr-nb} and/or
  723. @code{--enable-libamr-wb} to configure to enable the libraries.
  724. @chapter Supported File Formats and Codecs
  725. You can use the @code{-formats} option to have an exhaustive list.
  726. @section File Formats
  727. FFmpeg supports the following file formats through the @code{libavformat}
  728. library:
  729. @multitable @columnfractions .4 .1 .1 .4
  730. @item Supported File Format @tab Encoding @tab Decoding @tab Comments
  731. @item MPEG audio @tab X @tab X
  732. @item MPEG-1 systems @tab X @tab X
  733. @tab muxed audio and video
  734. @item MPEG-2 PS @tab X @tab X
  735. @tab also known as @code{VOB} file
  736. @item MPEG-2 TS @tab @tab X
  737. @tab also known as DVB Transport Stream
  738. @item ASF@tab X @tab X
  739. @item AVI@tab X @tab X
  740. @item WAV@tab X @tab X
  741. @item Macromedia Flash@tab X @tab X
  742. @tab Only embedded audio is decoded.
  743. @item FLV @tab X @tab X
  744. @tab Macromedia Flash video files
  745. @item Real Audio and Video @tab X @tab X
  746. @item Raw AC3 @tab X @tab X
  747. @item Raw MJPEG @tab X @tab X
  748. @item Raw MPEG video @tab X @tab X
  749. @item Raw PCM8/16 bits, mulaw/Alaw@tab X @tab X
  750. @item Raw CRI ADX audio @tab X @tab X
  751. @item Raw Shorten audio @tab @tab X
  752. @item SUN AU format @tab X @tab X
  753. @item NUT @tab X @tab X @tab NUT Open Container Format
  754. @item QuickTime @tab X @tab X
  755. @item MPEG-4 @tab X @tab X
  756. @tab MPEG-4 is a variant of QuickTime.
  757. @item Raw MPEG4 video @tab X @tab X
  758. @item DV @tab X @tab X
  759. @item 4xm @tab @tab X
  760. @tab 4X Technologies format, used in some games.
  761. @item Playstation STR @tab @tab X
  762. @item Id RoQ @tab X @tab X
  763. @tab Used in Quake III, Jedi Knight 2, other computer games.
  764. @item Interplay MVE @tab @tab X
  765. @tab Format used in various Interplay computer games.
  766. @item WC3 Movie @tab @tab X
  767. @tab Multimedia format used in Origin's Wing Commander III computer game.
  768. @item Sega FILM/CPK @tab @tab X
  769. @tab Used in many Sega Saturn console games.
  770. @item Westwood Studios VQA/AUD @tab @tab X
  771. @tab Multimedia formats used in Westwood Studios games.
  772. @item Id Cinematic (.cin) @tab @tab X
  773. @tab Used in Quake II.
  774. @item FLIC format @tab @tab X
  775. @tab .fli/.flc files
  776. @item Sierra VMD @tab @tab X
  777. @tab Used in Sierra CD-ROM games.
  778. @item Sierra Online @tab @tab X
  779. @tab .sol files used in Sierra Online games.
  780. @item Matroska @tab @tab X
  781. @item Electronic Arts Multimedia @tab @tab X
  782. @tab Used in various EA games; files have extensions like WVE and UV2.
  783. @item Nullsoft Video (NSV) format @tab @tab X
  784. @item ADTS AAC audio @tab X @tab X
  785. @item Creative VOC @tab X @tab X @tab Created for the Sound Blaster Pro.
  786. @item American Laser Games MM @tab @tab X
  787. @tab Multimedia format used in games like Mad Dog McCree
  788. @item AVS @tab @tab X
  789. @tab Multimedia format used by the Creature Shock game.
  790. @item Smacker @tab @tab X
  791. @tab Multimedia format used by many games.
  792. @item GXF @tab X @tab X
  793. @tab General eXchange Format SMPTE 360M, used by Thomson Grass Valley playout servers.
  794. @item CIN @tab @tab X
  795. @tab Multimedia format used by Delphine Software games.
  796. @item MXF @tab @tab X
  797. @tab Material eXchange Format SMPTE 377M, used by D-Cinema, broadcast industry.
  798. @item SEQ @tab @tab X
  799. @tab Tiertex .seq files used in the DOS CDROM version of the game Flashback.
  800. @item DXA @tab @tab X
  801. @tab This format is used in non-Windows version of Feeble Files game and
  802. different game cutscenes repacked for use with ScummVM.
  803. @item THP @tab @tab X
  804. @tab Used on the Nintendo GameCube.
  805. @item C93 @tab @tab X
  806. @tab Used in the game Cyberia from Interplay.
  807. @item Bethsoft VID @tab @tab X
  808. @tab Used in some games from Bethesda Softworks.
  809. @item CRYO APC @tab @tab X
  810. @tab Audio format used in some games by CRYO Interactive Entertainment.
  811. @end multitable
  812. @code{X} means that encoding (resp. decoding) is supported.
  813. @section Image Formats
  814. FFmpeg can read and write images for each frame of a video sequence. The
  815. following image formats are supported:
  816. @multitable @columnfractions .4 .1 .1 .4
  817. @item Supported Image Format @tab Encoding @tab Decoding @tab Comments
  818. @item PGM, PPM @tab X @tab X
  819. @item PAM @tab X @tab X @tab PAM is a PNM extension with alpha support.
  820. @item PGMYUV @tab X @tab X @tab PGM with U and V components in YUV 4:2:0
  821. @item JPEG @tab X @tab X @tab Progressive JPEG is not supported.
  822. @item .Y.U.V @tab X @tab X @tab one raw file per component
  823. @item animated GIF @tab X @tab X @tab Only uncompressed GIFs are generated.
  824. @item PNG @tab X @tab X @tab 2 bit and 4 bit/pixel not supported yet.
  825. @item Targa @tab @tab X @tab Targa (.TGA) image format.
  826. @item TIFF @tab X @tab X @tab YUV, JPEG and some extension is not supported yet.
  827. @item SGI @tab X @tab X @tab SGI RGB image format
  828. @item PTX @tab @tab X @tab V.Flash PTX format
  829. @end multitable
  830. @code{X} means that encoding (resp. decoding) is supported.
  831. @section Video Codecs
  832. @multitable @columnfractions .4 .1 .1 .4
  833. @item Supported Codec @tab Encoding @tab Decoding @tab Comments
  834. @item MPEG-1 video @tab X @tab X
  835. @item MPEG-2 video @tab X @tab X
  836. @item MPEG-4 @tab X @tab X
  837. @item MSMPEG4 V1 @tab X @tab X
  838. @item MSMPEG4 V2 @tab X @tab X
  839. @item MSMPEG4 V3 @tab X @tab X
  840. @item WMV7 @tab X @tab X
  841. @item WMV8 @tab X @tab X @tab not completely working
  842. @item WMV9 @tab @tab X @tab not completely working
  843. @item VC1 @tab @tab X
  844. @item H.261 @tab X @tab X
  845. @item H.263(+) @tab X @tab X @tab also known as RealVideo 1.0
  846. @item H.264 @tab @tab X
  847. @item RealVideo 1.0 @tab X @tab X
  848. @item RealVideo 2.0 @tab X @tab X
  849. @item MJPEG @tab X @tab X
  850. @item lossless MJPEG @tab X @tab X
  851. @item JPEG-LS @tab X @tab X @tab fourcc: MJLS, lossless and near-lossless is supported
  852. @item Apple MJPEG-B @tab @tab X
  853. @item Sunplus MJPEG @tab @tab X @tab fourcc: SP5X
  854. @item DV @tab X @tab X
  855. @item HuffYUV @tab X @tab X
  856. @item FFmpeg Video 1 @tab X @tab X @tab experimental lossless codec (fourcc: FFV1)
  857. @item FFmpeg Snow @tab X @tab X @tab experimental wavelet codec (fourcc: SNOW)
  858. @item Asus v1 @tab X @tab X @tab fourcc: ASV1
  859. @item Asus v2 @tab X @tab X @tab fourcc: ASV2
  860. @item Creative YUV @tab @tab X @tab fourcc: CYUV
  861. @item Sorenson Video 1 @tab X @tab X @tab fourcc: SVQ1
  862. @item Sorenson Video 3 @tab @tab X @tab fourcc: SVQ3
  863. @item On2 VP3 @tab @tab X @tab still experimental
  864. @item On2 VP5 @tab @tab X @tab fourcc: VP50
  865. @item On2 VP6 @tab @tab X @tab fourcc: VP60,VP61,VP62
  866. @item Theora @tab X @tab X @tab still experimental
  867. @item Intel Indeo 3 @tab @tab X
  868. @item FLV @tab X @tab X @tab Sorenson H.263 used in Flash
  869. @item Flash Screen Video @tab X @tab X @tab fourcc: FSV1
  870. @item ATI VCR1 @tab @tab X @tab fourcc: VCR1
  871. @item ATI VCR2 @tab @tab X @tab fourcc: VCR2
  872. @item Cirrus Logic AccuPak @tab @tab X @tab fourcc: CLJR
  873. @item 4X Video @tab @tab X @tab Used in certain computer games.
  874. @item Sony Playstation MDEC @tab @tab X
  875. @item Id RoQ @tab X @tab X @tab Used in Quake III, Jedi Knight 2, other computer games.
  876. @item Xan/WC3 @tab @tab X @tab Used in Wing Commander III .MVE files.
  877. @item Interplay Video @tab @tab X @tab Used in Interplay .MVE files.
  878. @item Apple Animation @tab X @tab X @tab fourcc: 'rle '
  879. @item Apple Graphics @tab @tab X @tab fourcc: 'smc '
  880. @item Apple Video @tab @tab X @tab fourcc: rpza
  881. @item Apple QuickDraw @tab @tab X @tab fourcc: qdrw
  882. @item Cinepak @tab @tab X
  883. @item Microsoft RLE @tab @tab X
  884. @item Microsoft Video-1 @tab @tab X
  885. @item Westwood VQA @tab @tab X
  886. @item Id Cinematic Video @tab @tab X @tab Used in Quake II.
  887. @item Planar RGB @tab @tab X @tab fourcc: 8BPS
  888. @item FLIC video @tab @tab X
  889. @item Duck TrueMotion v1 @tab @tab X @tab fourcc: DUCK
  890. @item Duck TrueMotion v2 @tab @tab X @tab fourcc: TM20
  891. @item VMD Video @tab @tab X @tab Used in Sierra VMD files.
  892. @item MSZH @tab @tab X @tab Part of LCL
  893. @item ZLIB @tab X @tab X @tab Part of LCL, encoder experimental
  894. @item TechSmith Camtasia @tab @tab X @tab fourcc: TSCC
  895. @item IBM Ultimotion @tab @tab X @tab fourcc: ULTI
  896. @item Miro VideoXL @tab @tab X @tab fourcc: VIXL
  897. @item QPEG @tab @tab X @tab fourccs: QPEG, Q1.0, Q1.1
  898. @item LOCO @tab @tab X @tab
  899. @item Winnov WNV1 @tab @tab X @tab
  900. @item Autodesk Animator Studio Codec @tab @tab X @tab fourcc: AASC
  901. @item Fraps FPS1 @tab @tab X @tab
  902. @item CamStudio @tab @tab X @tab fourcc: CSCD
  903. @item American Laser Games Video @tab @tab X @tab Used in games like Mad Dog McCree
  904. @item ZMBV @tab X @tab X @tab Encoder works only on PAL8
  905. @item AVS Video @tab @tab X @tab Video encoding used by the Creature Shock game.
  906. @item Smacker Video @tab @tab X @tab Video encoding used in Smacker.
  907. @item RTjpeg @tab @tab X @tab Video encoding used in NuppelVideo files.
  908. @item KMVC @tab @tab X @tab Codec used in Worms games.
  909. @item VMware Video @tab @tab X @tab Codec used in videos captured by VMware.
  910. @item Cin Video @tab @tab X @tab Codec used in Delphine Software games.
  911. @item Tiertex Seq Video @tab @tab X @tab Codec used in DOS CDROM FlashBack game.
  912. @item DXA Video @tab @tab X @tab Codec originally used in Feeble Files game.
  913. @item AVID DNxHD @tab @tab X @tab aka SMPTE VC3
  914. @item C93 Video @tab @tab X @tab Codec used in Cyberia game.
  915. @item THP @tab @tab X @tab Used on the Nintendo GameCube.
  916. @item Bethsoft VID @tab @tab X @tab Used in some games from Bethesda Softworks.
  917. @item Renderware TXD @tab @tab X @tab Texture dictionaries used by the Renderware Engine.
  918. @end multitable
  919. @code{X} means that encoding (resp. decoding) is supported.
  920. @section Audio Codecs
  921. @multitable @columnfractions .4 .1 .1 .1 .7
  922. @item Supported Codec @tab Encoding @tab Decoding @tab Comments
  923. @item MPEG audio layer 2 @tab IX @tab IX
  924. @item MPEG audio layer 1/3 @tab IX @tab IX
  925. @tab MP3 encoding is supported through the external library LAME.
  926. @item AC3 @tab IX @tab IX
  927. @tab liba52 is used internally for decoding.
  928. @item Vorbis @tab X @tab X
  929. @item WMA V1/V2 @tab X @tab X
  930. @item AAC @tab X @tab X
  931. @tab Supported through the external library libfaac/libfaad.
  932. @item Microsoft ADPCM @tab X @tab X
  933. @item MS IMA ADPCM @tab X @tab X
  934. @item QT IMA ADPCM @tab @tab X
  935. @item 4X IMA ADPCM @tab @tab X
  936. @item G.726 ADPCM @tab X @tab X
  937. @item Duck DK3 IMA ADPCM @tab @tab X
  938. @tab Used in some Sega Saturn console games.
  939. @item Duck DK4 IMA ADPCM @tab @tab X
  940. @tab Used in some Sega Saturn console games.
  941. @item Westwood Studios IMA ADPCM @tab @tab X
  942. @tab Used in Westwood Studios games like Command and Conquer.
  943. @item SMJPEG IMA ADPCM @tab @tab X
  944. @tab Used in certain Loki game ports.
  945. @item CD-ROM XA ADPCM @tab @tab X
  946. @item CRI ADX ADPCM @tab X @tab X
  947. @tab Used in Sega Dreamcast games.
  948. @item Electronic Arts ADPCM @tab @tab X
  949. @tab Used in various EA titles.
  950. @item Creative ADPCM @tab @tab X
  951. @tab 16 -> 4, 8 -> 4, 8 -> 3, 8 -> 2
  952. @item THP ADPCM @tab @tab X
  953. @tab Used on the Nintendo GameCube.
  954. @item RA144 @tab @tab X
  955. @tab Real 14400 bit/s codec
  956. @item RA288 @tab @tab X
  957. @tab Real 28800 bit/s codec
  958. @item RADnet @tab X @tab IX
  959. @tab Real low bitrate AC3 codec, liba52 is used for decoding.
  960. @item AMR-NB @tab X @tab X
  961. @tab Supported through an external library.
  962. @item AMR-WB @tab X @tab X
  963. @tab Supported through an external library.
  964. @item DV audio @tab @tab X
  965. @item Id RoQ DPCM @tab X @tab X
  966. @tab Used in Quake III, Jedi Knight 2, other computer games.
  967. @item Interplay MVE DPCM @tab @tab X
  968. @tab Used in various Interplay computer games.
  969. @item Xan DPCM @tab @tab X
  970. @tab Used in Origin's Wing Commander IV AVI files.
  971. @item Sierra Online DPCM @tab @tab X
  972. @tab Used in Sierra Online game audio files.
  973. @item Apple MACE 3 @tab @tab X
  974. @item Apple MACE 6 @tab @tab X
  975. @item FLAC lossless audio @tab X @tab X
  976. @item Shorten lossless audio @tab @tab X
  977. @item Apple lossless audio @tab @tab X
  978. @tab QuickTime fourcc 'alac'
  979. @item FFmpeg Sonic @tab X @tab X
  980. @tab experimental lossy/lossless codec
  981. @item Qdesign QDM2 @tab @tab X
  982. @tab there are still some distortions
  983. @item Real COOK @tab @tab X
  984. @tab All versions except 5.1 are supported
  985. @item DSP Group TrueSpeech @tab @tab X
  986. @item True Audio (TTA) @tab @tab X
  987. @item Smacker Audio @tab @tab X
  988. @item WavPack Audio @tab @tab X
  989. @item Cin Audio @tab @tab X
  990. @tab Codec used in Delphine Software games.
  991. @item Intel Music Coder @tab @tab X
  992. @item Musepack @tab @tab X
  993. @tab Only SV7 is supported
  994. @item DT$ Coherent Audio @tab @tab X
  995. @item ATRAC 3 @tab @tab X
  996. @end multitable
  997. @code{X} means that encoding (resp. decoding) is supported.
  998. @code{I} means that an integer-only version is available, too (ensures high
  999. performance on systems without hardware floating point support).
  1000. @chapter Platform Specific information
  1001. @section BSD
  1002. BSD make will not build FFmpeg, you need to install and use GNU Make
  1003. (@file{gmake}).
  1004. @section Windows
  1005. To get help and instructions for using FFmpeg under Windows, check out
  1006. the FFmpeg Windows Help Forum at
  1007. @url{http://arrozcru.no-ip.org/ffmpeg/}.
  1008. @subsection Native Windows compilation
  1009. @itemize
  1010. @item Install the current versions of MSYS and MinGW from
  1011. @url{http://www.mingw.org/}. You can find detailed installation
  1012. instructions in the download section and the FAQ.
  1013. NOTE: Use at least bash 3.1. Older versions are known to be failing on the
  1014. configure script.
  1015. @item If you want to test the FFplay, also download
  1016. the MinGW development library of SDL 1.2.x
  1017. (@file{SDL-devel-1.2.x-mingw32.tar.gz}) from
  1018. @url{http://www.libsdl.org}. Unpack it in a temporary directory, and
  1019. unpack the archive @file{i386-mingw32msvc.tar.gz} in the MinGW tool
  1020. directory. Edit the @file{sdl-config} script so that it gives the
  1021. correct SDL directory when invoked.
  1022. @item If you want to use vhooks, you must have a POSIX compliant libdl in your
  1023. MinGW system. Get dlfcn-win32 from @url{http://code.google.com/p/dlfcn-win32}.
  1024. @item Extract the current version of FFmpeg.
  1025. @item Start the MSYS shell (file @file{msys.bat}).
  1026. @item Change to the FFmpeg directory and follow
  1027. the instructions of how to compile FFmpeg (file
  1028. @file{INSTALL}). Usually, launching @file{./configure} and @file{make}
  1029. suffices. If you have problems using SDL, verify that
  1030. @file{sdl-config} can be launched from the MSYS command line.
  1031. @item You can install FFmpeg in @file{Program Files/FFmpeg} by typing
  1032. @file{make install}. Do not forget to copy @file{SDL.dll} to the place
  1033. you launch @file{ffplay} from.
  1034. @end itemize
  1035. Notes:
  1036. @itemize
  1037. @item The target @file{make wininstaller} can be used to create a
  1038. Nullsoft based Windows installer for FFmpeg and FFplay. @file{SDL.dll}
  1039. must be copied to the FFmpeg directory in order to build the
  1040. installer.
  1041. @item By using @code{./configure --enable-shared} when configuring FFmpeg,
  1042. you can build @file{avcodec.dll} and @file{avformat.dll}. With
  1043. @code{make install} you install the FFmpeg DLLs and the associated
  1044. headers in @file{Program Files/FFmpeg}.
  1045. @item Visual C++ compatibility: If you used @code{./configure --enable-shared}
  1046. when configuring FFmpeg, FFmpeg tries to use the Microsoft Visual
  1047. C++ @code{lib} tool to build @code{avcodec.lib} and
  1048. @code{avformat.lib}. With these libraries you can link your Visual C++
  1049. code directly with the FFmpeg DLLs (see below).
  1050. @end itemize
  1051. @subsection Visual C++ compatibility
  1052. FFmpeg will not compile under Visual C++ -- and it has too many
  1053. dependencies on the GCC compiler to make a port viable. However,
  1054. if you want to use the FFmpeg libraries in your own applications,
  1055. you can still compile those applications using Visual C++. An
  1056. important restriction to this is that you have to use the
  1057. dynamically linked versions of the FFmpeg libraries (i.e. the
  1058. DLLs), and you have to make sure that Visual-C++-compatible
  1059. import libraries are created during the FFmpeg build process.
  1060. This description of how to use the FFmpeg libraries with Visual C++ is
  1061. based on Visual C++ 2005 Express Edition Beta 2. If you have a different
  1062. version, you might have to modify the procedures slightly.
  1063. Here are the step-by-step instructions for building the FFmpeg libraries
  1064. so they can be used with Visual C++:
  1065. @enumerate
  1066. @item Install Visual C++ (if you have not done so already).
  1067. @item Install MinGW and MSYS as described above.
  1068. @item Add a call to @file{vcvars32.bat} (which sets up the environment
  1069. variables for the Visual C++ tools) as the first line of
  1070. @file{msys.bat}. The standard location for @file{vcvars32.bat} is
  1071. @file{C:\Program Files\Microsoft Visual Studio 8\VC\bin\vcvars32.bat},
  1072. and the standard location for @file{msys.bat} is
  1073. @file{C:\msys\1.0\msys.bat}. If this corresponds to your setup, add the
  1074. following line as the first line of @file{msys.bat}:
  1075. @code{call "C:\Program Files\Microsoft Visual Studio 8\VC\bin\vcvars32.bat"}
  1076. @item Start the MSYS shell (file @file{msys.bat}) and type @code{link.exe}.
  1077. If you get a help message with the command line options of @code{link.exe},
  1078. this means your environment variables are set up correctly, the
  1079. Microsoft linker is on the path and will be used by FFmpeg to
  1080. create Visual-C++-compatible import libraries.
  1081. @item Extract the current version of FFmpeg and change to the FFmpeg directory.
  1082. @item Type the command
  1083. @code{./configure --enable-shared --disable-static --enable-memalign-hack}
  1084. to configure and, if that did not produce any errors,
  1085. type @code{make} to build FFmpeg.
  1086. @item The subdirectories @file{libavformat}, @file{libavcodec}, and
  1087. @file{libavutil} should now contain the files @file{avformat.dll},
  1088. @file{avformat.lib}, @file{avcodec.dll}, @file{avcodec.lib},
  1089. @file{avutil.dll}, and @file{avutil.lib}, respectively. Copy the three
  1090. DLLs to your System32 directory (typically @file{C:\Windows\System32}).
  1091. @end enumerate
  1092. And here is how to use these libraries with Visual C++:
  1093. @enumerate
  1094. @item Create a new console application ("File / New / Project") and then
  1095. select "Win32 Console Application". On the appropriate page of the
  1096. Application Wizard, uncheck the "Precompiled headers" option.
  1097. @item Write the source code for your application, or, for testing, just
  1098. copy the code from an existing sample application into the source file
  1099. that Visual C++ has already created for you. (Note that your source
  1100. filehas to have a @code{.cpp} extension; otherwise, Visual C++ will not
  1101. compile the FFmpeg headers correctly because in C mode, it does not
  1102. recognize the @code{inline} keyword.) For example, you can copy
  1103. @file{output_example.c} from the FFmpeg distribution (but you will
  1104. have to make minor modifications so the code will compile under
  1105. C++, see below).
  1106. @item Open the "Project / Properties" dialog box. In the "Configuration"
  1107. combo box, select "All Configurations" so that the changes you make will
  1108. affect both debug and release builds. In the tree view on the left hand
  1109. side, select "C/C++ / General", then edit the "Additional Include
  1110. Directories" setting to contain the complete paths to the
  1111. @file{libavformat}, @file{libavcodec}, and @file{libavutil}
  1112. subdirectories of your FFmpeg directory. Note that the directories have
  1113. to be separated using semicolons. Now select "Linker / General" from the
  1114. tree view and edit the "Additional Library Directories" setting to
  1115. contain the same three directories.
  1116. @item Still in the "Project / Properties" dialog box, select "Linker / Input"
  1117. from the tree view, then add the files @file{avformat.lib},
  1118. @file{avcodec.lib}, and @file{avutil.lib} to the end of the "Additional
  1119. Dependencies". Note that the names of the libraries have to be separated
  1120. using spaces.
  1121. @item Now, select "C/C++ / Code Generation" from the tree view. Select
  1122. "Debug" in the "Configuration" combo box. Make sure that "Runtime
  1123. Library" is set to "Multi-threaded Debug DLL". Then, select "Release" in
  1124. the "Configuration" combo box and make sure that "Runtime Library" is
  1125. set to "Multi-threaded DLL".
  1126. @item Click "OK" to close the "Project / Properties" dialog box and build
  1127. the application. Hopefully, it should compile and run cleanly. If you
  1128. used @file{output_example.c} as your sample application, you will get a
  1129. few compiler errors, but they are easy to fix. The first type of error
  1130. occurs because Visual C++ does not allow an @code{int} to be converted to
  1131. an @code{enum} without a cast. To solve the problem, insert the required
  1132. casts (this error occurs once for a @code{CodecID} and once for a
  1133. @code{CodecType}). The second type of error occurs because C++ requires
  1134. the return value of @code{malloc} to be cast to the exact type of the
  1135. pointer it is being assigned to. Visual C++ will complain that, for
  1136. example, @code{(void *)} is being assigned to @code{(uint8_t *)} without
  1137. an explicit cast. So insert an explicit cast in these places to silence
  1138. the compiler. The third type of error occurs because the @code{snprintf}
  1139. library function is called @code{_snprintf} under Visual C++. So just
  1140. add an underscore to fix the problem. With these changes,
  1141. @file{output_example.c} should compile under Visual C++, and the
  1142. resulting executable should produce valid video files.
  1143. @end enumerate
  1144. @subsection Cross compilation for Windows with Linux
  1145. You must use the MinGW cross compilation tools available at
  1146. @url{http://www.mingw.org/}.
  1147. Then configure FFmpeg with the following options:
  1148. @example
  1149. ./configure --target-os=mingw32 --cross-prefix=i386-mingw32msvc-
  1150. @end example
  1151. (you can change the cross-prefix according to the prefix chosen for the
  1152. MinGW tools).
  1153. Then you can easily test FFmpeg with Wine
  1154. (@url{http://www.winehq.com/}).
  1155. @subsection Compilation under Cygwin
  1156. Cygwin works very much like Unix.
  1157. Just install your Cygwin with all the "Base" packages, plus the
  1158. following "Devel" ones:
  1159. @example
  1160. binutils, gcc-core, make, subversion
  1161. @end example
  1162. Do not install binutils-20060709-1 (they are buggy on shared builds);
  1163. use binutils-20050610-1 instead.
  1164. Then run
  1165. @example
  1166. ./configure --enable-static --disable-shared
  1167. @end example
  1168. to make a static build or
  1169. @example
  1170. ./configure --enable-shared --disable-static
  1171. @end example
  1172. to build shared libraries.
  1173. If you want to build FFmpeg with additional libraries, download Cygwin
  1174. "Devel" packages for Ogg and Vorbis from any Cygwin packages repository
  1175. and/or SDL, xvid, faac, faad2 packages from Cygwin Ports,
  1176. (@url{http://cygwinports.dotsrc.org/}).
  1177. @subsection Crosscompilation for Windows under Cygwin
  1178. With Cygwin you can create Windows binaries that do not need the cygwin1.dll.
  1179. Just install your Cygwin as explained before, plus these additional
  1180. "Devel" packages:
  1181. @example
  1182. gcc-mingw-core, mingw-runtime, mingw-zlib
  1183. @end example
  1184. and add some special flags to your configure invocation.
  1185. For a static build run
  1186. @example
  1187. ./configure --target-os=mingw32 --enable-memalign-hack --enable-static --disable-shared --extra-cflags=-mno-cygwin --extra-libs=-mno-cygwin
  1188. @end example
  1189. and for a build with shared libraries
  1190. @example
  1191. ./configure --target-os=mingw32 --enable-memalign-hack --enable-shared --disable-static --extra-cflags=-mno-cygwin --extra-libs=-mno-cygwin
  1192. @end example
  1193. @section BeOS
  1194. The configure script should guess the configuration itself.
  1195. Networking support is currently not finished.
  1196. errno issues fixed by Andrew Bachmann.
  1197. Old stuff:
  1198. François Revol - revol at free dot fr - April 2002
  1199. The configure script should guess the configuration itself,
  1200. however I still did not test building on the net_server version of BeOS.
  1201. FFserver is broken (needs poll() implementation).
  1202. There are still issues with errno codes, which are negative in BeOS, and
  1203. that FFmpeg negates when returning. This ends up turning errors into
  1204. valid results, then crashes.
  1205. (To be fixed)
  1206. @chapter Developers Guide
  1207. @section API
  1208. @itemize @bullet
  1209. @item libavcodec is the library containing the codecs (both encoding and
  1210. decoding). Look at @file{libavcodec/apiexample.c} to see how to use it.
  1211. @item libavformat is the library containing the file format handling (mux and
  1212. demux code for several formats). Look at @file{ffplay.c} to use it in a
  1213. player. See @file{output_example.c} to use it to generate audio or video
  1214. streams.
  1215. @end itemize
  1216. @section Integrating libavcodec or libavformat in your program
  1217. You can integrate all the source code of the libraries to link them
  1218. statically to avoid any version problem. All you need is to provide a
  1219. 'config.mak' and a 'config.h' in the parent directory. See the defines
  1220. generated by ./configure to understand what is needed.
  1221. You can use libavcodec or libavformat in your commercial program, but
  1222. @emph{any patch you make must be published}. The best way to proceed is
  1223. to send your patches to the FFmpeg mailing list.
  1224. @node Coding Rules
  1225. @section Coding Rules
  1226. FFmpeg is programmed in the ISO C90 language with a few additional
  1227. features from ISO C99, namely:
  1228. @itemize @bullet
  1229. @item
  1230. the @samp{inline} keyword;
  1231. @item
  1232. @samp{//} comments;
  1233. @item
  1234. designated struct initializers (@samp{struct s x = @{ .i = 17 @};})
  1235. @item
  1236. compound literals (@samp{x = (struct s) @{ 17, 23 @};})
  1237. @end itemize
  1238. These features are supported by all compilers we care about, so we will not
  1239. accept patches to remove their use unless they absolutely do not impair
  1240. clarity and performance.
  1241. All code must compile with GCC 2.95 and GCC 3.3. Currently, FFmpeg also
  1242. compiles with several other compilers, such as the Compaq ccc compiler
  1243. or Sun Studio 9, and we would like to keep it that way unless it would
  1244. be exceedingly involved. To ensure compatibility, please do not use any
  1245. additional C99 features or GCC extensions. Especially watch out for:
  1246. @itemize @bullet
  1247. @item
  1248. mixing statements and declarations;
  1249. @item
  1250. @samp{long long} (use @samp{int64_t} instead);
  1251. @item
  1252. @samp{__attribute__} not protected by @samp{#ifdef __GNUC__} or similar;
  1253. @item
  1254. GCC statement expressions (@samp{(x = (@{ int y = 4; y; @})}).
  1255. @end itemize
  1256. Indent size is 4.
  1257. The presentation is the one specified by 'indent -i4 -kr -nut'.
  1258. The TAB character is forbidden outside of Makefiles as is any
  1259. form of trailing whitespace. Commits containing either will be
  1260. rejected by the Subversion repository.
  1261. The main priority in FFmpeg is simplicity and small code size in order to
  1262. minimize the bug count.
  1263. Comments: Use the JavaDoc/Doxygen
  1264. format (see examples below) so that code documentation
  1265. can be generated automatically. All nontrivial functions should have a comment
  1266. above them explaining what the function does, even if it is just one sentence.
  1267. All structures and their member variables should be documented, too.
  1268. @example
  1269. /**
  1270. * @@file mpeg.c
  1271. * MPEG codec.
  1272. * @@author ...
  1273. */
  1274. /**
  1275. * Summary sentence.
  1276. * more text ...
  1277. * ...
  1278. */
  1279. typedef struct Foobar@{
  1280. int var1; /**< var1 description */
  1281. int var2; ///< var2 description
  1282. /** var3 description */
  1283. int var3;
  1284. @} Foobar;
  1285. /**
  1286. * Summary sentence.
  1287. * more text ...
  1288. * ...
  1289. * @@param my_parameter description of my_parameter
  1290. * @@return return value description
  1291. */
  1292. int myfunc(int my_parameter)
  1293. ...
  1294. @end example
  1295. fprintf and printf are forbidden in libavformat and libavcodec,
  1296. please use av_log() instead.
  1297. Casts should be used only when necessary. Unneeded parentheses
  1298. should also be avoided if they don't make the code easier to understand.
  1299. @section Development Policy
  1300. @enumerate
  1301. @item
  1302. Contributions should be licensed under the LGPL 2.1, including an
  1303. "or any later version" clause, or the MIT license. GPL 2 including
  1304. an "or any later version" clause is also acceptable, but LGPL is
  1305. preferred.
  1306. @item
  1307. You must not commit code which breaks FFmpeg! (Meaning unfinished but
  1308. enabled code which breaks compilation or compiles but does not work or
  1309. breaks the regression tests)
  1310. You can commit unfinished stuff (for testing etc), but it must be disabled
  1311. (#ifdef etc) by default so it does not interfere with other developers'
  1312. work.
  1313. @item
  1314. You do not have to over-test things. If it works for you, and you think it
  1315. should work for others, then commit. If your code has problems
  1316. (portability, triggers compiler bugs, unusual environment etc) they will be
  1317. reported and eventually fixed.
  1318. @item
  1319. Do not commit unrelated changes together, split them into self-contained
  1320. pieces. Also do not forget that if part B depends on part A, but A does not
  1321. depend on B, then A can and should be committed first and separate from B.
  1322. Keeping changes well split into self-contained parts makes reviewing and
  1323. understanding them on the commit log mailing list easier. This also helps
  1324. in case of debugging later on.
  1325. Also if you have doubts about splitting or not splitting, do not hesitate to
  1326. ask/discuss it on the developer mailing list.
  1327. @item
  1328. Do not change behavior of the program (renaming options etc) without
  1329. first discussing it on the ffmpeg-devel mailing list. Do not remove
  1330. functionality from the code. Just improve!
  1331. Note: Redundant code can be removed.
  1332. @item
  1333. Do not commit changes to the build system (Makefiles, configure script)
  1334. which change behavior, defaults etc, without asking first. The same
  1335. applies to compiler warning fixes, trivial looking fixes and to code
  1336. maintained by other developers. We usually have a reason for doing things
  1337. the way we do. Send your changes as patches to the ffmpeg-devel mailing
  1338. list, and if the code maintainers say OK, you may commit. This does not
  1339. apply to files you wrote and/or maintain.
  1340. @item
  1341. We refuse source indentation and other cosmetic changes if they are mixed
  1342. with functional changes, such commits will be rejected and removed. Every
  1343. developer has his own indentation style, you should not change it. Of course
  1344. if you (re)write something, you can use your own style, even though we would
  1345. prefer if the indentation throughout FFmpeg was consistent (Many projects
  1346. force a given indentation style - we do not.). If you really need to make
  1347. indentation changes (try to avoid this), separate them strictly from real
  1348. changes.
  1349. NOTE: If you had to put if()@{ .. @} over a large (> 5 lines) chunk of code,
  1350. then either do NOT change the indentation of the inner part within (do not
  1351. move it to the right)! or do so in a separate commit
  1352. @item
  1353. Always fill out the commit log message. Describe in a few lines what you
  1354. changed and why. You can refer to mailing list postings if you fix a
  1355. particular bug. Comments such as "fixed!" or "Changed it." are unacceptable.
  1356. @item
  1357. If you apply a patch by someone else, include the name and email address in
  1358. the log message. Since the ffmpeg-cvslog mailing list is publicly
  1359. archived you should add some SPAM protection to the email address. Send an
  1360. answer to ffmpeg-devel (or wherever you got the patch from) saying that
  1361. you applied the patch.
  1362. @item
  1363. When applying patches that have been discussed (at length) on the mailing
  1364. list, reference the thread in the log message.
  1365. @item
  1366. Do NOT commit to code actively maintained by others without permission.
  1367. Send a patch to ffmpeg-devel instead. If no one answers within a reasonable
  1368. timeframe (12h for build failures and security fixes, 3 days small changes,
  1369. 1 week for big patches) then commit your patch if you think it is OK.
  1370. Also note, the maintainer can simply ask for more time to review!
  1371. @item
  1372. Subscribe to the ffmpeg-cvslog mailing list. The diffs of all commits
  1373. are sent there and reviewed by all the other developers. Bugs and possible
  1374. improvements or general questions regarding commits are discussed there. We
  1375. expect you to react if problems with your code are uncovered.
  1376. @item
  1377. Update the documentation if you change behavior or add features. If you are
  1378. unsure how best to do this, send a patch to ffmpeg-devel, the documentation
  1379. maintainer(s) will review and commit your stuff.
  1380. @item
  1381. Try to keep important discussions and requests (also) on the public
  1382. developer mailing list, so that all developers can benefit from them.
  1383. @item
  1384. Never write to unallocated memory, never write over the end of arrays,
  1385. always check values read from some untrusted source before using them
  1386. as array index or other risky things.
  1387. @item
  1388. Remember to check if you need to bump versions for the specific libav
  1389. parts (libavutil, libavcodec, libavformat) you are changing. You need
  1390. to change the version integer and the version string.
  1391. Incrementing the first component means no backward compatibility to
  1392. previous versions (e.g. removal of a function from the public API).
  1393. Incrementing the second component means backward compatible change
  1394. (e.g. addition of a function to the public API).
  1395. Incrementing the third component means a noteworthy binary compatible
  1396. change (e.g. encoder bug fix that matters for the decoder).
  1397. @item
  1398. If you add a new codec, remember to update the changelog, add it to
  1399. the supported codecs table in the documentation and bump the second
  1400. component of the @file{libavcodec} version number appropriately. If
  1401. it has a fourcc, add it to @file{libavformat/avienc.c}, even if it
  1402. is only a decoder.
  1403. @item
  1404. Do not change code to hide warnings without ensuring that the underlying
  1405. logic is correct and thus the warning was inappropriate.
  1406. @item
  1407. If you add a new file, give it a proper license header. Do not copy and
  1408. paste it from a random place, use an existing file as template.
  1409. @end enumerate
  1410. We think our rules are not too hard. If you have comments, contact us.
  1411. Note, these rules are mostly borrowed from the MPlayer project.
  1412. @section Submitting patches
  1413. First, (@pxref{Coding Rules}) above if you did not yet.
  1414. When you submit your patch, try to send a unified diff (diff '-up'
  1415. option). We cannot read other diffs :-)
  1416. Also please do not submit a patch which contains several unrelated changes.
  1417. Split it into separate, self-contained pieces. This does not mean splitting
  1418. file by file. Instead, make the patch as small as possible while still
  1419. keeping it as a logical unit that contains an individual change, even
  1420. if it spans multiple files. This makes reviewing your patches much easier
  1421. for us and greatly increases your chances of getting your patch applied.
  1422. Run the regression tests before submitting a patch so that you can
  1423. verify that there are no big problems.
  1424. Patches should be posted as base64 encoded attachments (or any other
  1425. encoding which ensures that the patch will not be trashed during
  1426. transmission) to the ffmpeg-devel mailing list, see
  1427. @url{http://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-devel}
  1428. It also helps quite a bit if you tell us what the patch does (for example
  1429. 'replaces lrint by lrintf'), and why (for example '*BSD isn't C99 compliant
  1430. and has no lrint()')
  1431. Also please if you send several patches, send each patch as a separate mail,
  1432. do not attach several unrelated patches to the same mail.
  1433. @section patch submission checklist
  1434. @enumerate
  1435. @item
  1436. Do the regression tests pass with the patch applied?
  1437. @item
  1438. Is the patch a unified diff?
  1439. @item
  1440. Is the patch against latest FFmpeg SVN?
  1441. @item
  1442. Are you subscribed to ffmpeg-dev?
  1443. (the list is subscribers only due to spam)
  1444. @item
  1445. Have you checked that the changes are minimal, so that the same cannot be
  1446. achieved with a smaller patch and/or simpler final code?
  1447. @item
  1448. If the change is to speed critical code, did you benchmark it?
  1449. @item
  1450. If you did any benchmarks, did you provide them in the mail?
  1451. @item
  1452. Have you checked that the patch does not introduce buffer overflows or
  1453. other security issues?
  1454. @item
  1455. Is the patch created from the root of the source tree, so it can be
  1456. applied with @code{patch -p0}?
  1457. @item
  1458. Does the patch not mix functional and cosmetic changes?
  1459. @item
  1460. Did you add tabs or trailing whitespace to the code? Both are forbidden.
  1461. @item
  1462. Is the patch attached to the email you send?
  1463. @item
  1464. Is the mime type of the patch correct? It should be text/x-diff or
  1465. text/x-patch or at least text/plain and not application/octet-stream.
  1466. @item
  1467. If the patch fixes a bug, did you provide a verbose analysis of the bug?
  1468. @item
  1469. If the patch fixes a bug, did you provide enough information, including
  1470. a sample, so the bug can be reproduced and the fix can be verified?
  1471. Note please do not attach samples >100k to mails but rather provide a
  1472. URL, you can upload to ftp://upload.mplayerhq.hu
  1473. @item
  1474. Did you provide a verbose summary about what the patch does change?
  1475. @item
  1476. Did you provide a verbose explanation why it changes things like it does?
  1477. @item
  1478. Did you provide a verbose summary of the user visible advantages and
  1479. disadvantages if the patch is applied?
  1480. @item
  1481. Did you provide an example so we can verify the new feature added by the
  1482. patch easily?
  1483. @item
  1484. If you added a new file, did you insert a license header? It should be
  1485. taken from FFmpeg, not randomly copied and pasted from somewhere else.
  1486. @item
  1487. You should maintain alphabetical order in alphabetically ordered lists as
  1488. long as doing so does not break API/ABI compatibility.
  1489. @item
  1490. Lines with similar content should be aligned vertically when doing so
  1491. improves readability.
  1492. @item
  1493. Did you provide a suggestion for a clear commit log message?
  1494. @end enumerate
  1495. @section Patch review process
  1496. All patches posted to ffmpeg-devel will be reviewed, unless they contain a
  1497. clear note that the patch is not for SVN.
  1498. Reviews and comments will be posted as replies to the patch on the
  1499. mailing list. The patch submitter then has to take care of every comment,
  1500. that can be by resubmitting a changed patch or by discussion. Resubmitted
  1501. patches will themselves be reviewed like any other patch. If at some point
  1502. a patch passes review with no comments then it is approved, that can for
  1503. simple and small patches happen immediately while large patches will generally
  1504. have to be changed and reviewed many times before they are approved.
  1505. After a patch is approved it will be committed to the repository.
  1506. We will review all submitted patches, but sometimes we are quite busy so
  1507. especially for large patches this can take several weeks.
  1508. When resubmitting patches, please do not make any significant changes
  1509. not related to the comments received during review. Such patches will
  1510. be rejected. Instead, submit significant changes or new features as
  1511. separate patches.
  1512. @section Regression tests
  1513. Before submitting a patch (or committing to the repository), you should at least
  1514. test that you did not break anything.
  1515. The regression tests build a synthetic video stream and a synthetic
  1516. audio stream. These are then encoded and decoded with all codecs or
  1517. formats. The CRC (or MD5) of each generated file is recorded in a
  1518. result file. A 'diff' is launched to compare the reference results and
  1519. the result file.
  1520. The regression tests then go on to test the FFserver code with a
  1521. limited set of streams. It is important that this step runs correctly
  1522. as well.
  1523. Run 'make test' to test all the codecs and formats.
  1524. Run 'make fulltest' to test all the codecs, formats and FFserver.
  1525. [Of course, some patches may change the results of the regression tests. In
  1526. this case, the reference results of the regression tests shall be modified
  1527. accordingly].
  1528. @bye