muxers.texi 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. @chapter Muxers
  2. @c man begin MUXERS
  3. Muxers are configured elements in FFmpeg which allow writing
  4. multimedia streams to a particular type of file.
  5. When you configure your FFmpeg build, all the supported muxers
  6. are enabled by default. You can list all available muxers using the
  7. configure option @code{--list-muxers}.
  8. You can disable all the muxers with the configure option
  9. @code{--disable-muxers} and selectively enable / disable single muxers
  10. with the options @code{--enable-muxer=@var{MUXER}} /
  11. @code{--disable-muxer=@var{MUXER}}.
  12. The option @code{-formats} of the ff* tools will display the list of
  13. enabled muxers.
  14. A description of some of the currently available muxers follows.
  15. @anchor{crc}
  16. @section crc
  17. CRC (Cyclic Redundancy Check) testing format.
  18. This muxer computes and prints the Adler-32 CRC of all the input audio
  19. and video frames. By default audio frames are converted to signed
  20. 16-bit raw audio and video frames to raw video before computing the
  21. CRC.
  22. The output of the muxer consists of a single line of the form:
  23. CRC=0x@var{CRC}, where @var{CRC} is a hexadecimal number 0-padded to
  24. 8 digits containing the CRC for all the decoded input frames.
  25. For example to compute the CRC of the input, and store it in the file
  26. @file{out.crc}:
  27. @example
  28. ffmpeg -i INPUT -f crc out.crc
  29. @end example
  30. You can print the CRC to stdout with the command:
  31. @example
  32. ffmpeg -i INPUT -f crc -
  33. @end example
  34. You can select the output format of each frame with @file{ffmpeg} by
  35. specifying the audio and video codec and format. For example to
  36. compute the CRC of the input audio converted to PCM unsigned 8-bit
  37. and the input video converted to MPEG-2 video, use the command:
  38. @example
  39. ffmpeg -i INPUT -acodec pcm_u8 -vcodec mpeg2video -f crc -
  40. @end example
  41. See also the @code{framecrc} muxer (@pxref{framecrc}).
  42. @anchor{framecrc}
  43. @section framecrc
  44. Per-frame CRC (Cyclic Redundancy Check) testing format.
  45. This muxer computes and prints the Adler-32 CRC for each decoded audio
  46. and video frame. By default audio frames are converted to signed
  47. 16-bit raw audio and video frames to raw video before computing the
  48. CRC.
  49. The output of the muxer consists of a line for each audio and video
  50. frame of the form: @var{stream_index}, @var{frame_dts},
  51. @var{frame_size}, 0x@var{CRC}, where @var{CRC} is a hexadecimal
  52. number 0-padded to 8 digits containing the CRC of the decoded frame.
  53. For example to compute the CRC of each decoded frame in the input, and
  54. store it in the file @file{out.crc}:
  55. @example
  56. ffmpeg -i INPUT -f framecrc out.crc
  57. @end example
  58. You can print the CRC of each decoded frame to stdout with the command:
  59. @example
  60. ffmpeg -i INPUT -f framecrc -
  61. @end example
  62. You can select the output format of each frame with @file{ffmpeg} by
  63. specifying the audio and video codec and format. For example, to
  64. compute the CRC of each decoded input audio frame converted to PCM
  65. unsigned 8-bit and of each decoded input video frame converted to
  66. MPEG-2 video, use the command:
  67. @example
  68. ffmpeg -i INPUT -acodec pcm_u8 -vcodec mpeg2video -f framecrc -
  69. @end example
  70. See also the @code{crc} muxer (@pxref{crc}).
  71. @section image2
  72. Image file muxer.
  73. The image file muxer writes video frames to image files.
  74. The output filenames are specified by a pattern, which can be used to
  75. produce sequentially numbered series of files.
  76. The pattern may contain the string "%d" or "%0@var{N}d", this string
  77. specifies the position of the characters representing a numbering in
  78. the filenames. If the form "%0@var{N}d" is used, the string
  79. representing the number in each filename is 0-padded to @var{N}
  80. digits. The literal character '%' can be specified in the pattern with
  81. the string "%%".
  82. If the pattern contains "%d" or "%0@var{N}d", the first filename of
  83. the file list specified will contain the number 1, all the following
  84. numbers will be sequential.
  85. The pattern may contain a suffix which is used to automatically
  86. determine the format of the image files to write.
  87. For example the pattern "img-%03d.bmp" will specify a sequence of
  88. filenames of the form @file{img-001.bmp}, @file{img-002.bmp}, ...,
  89. @file{img-010.bmp}, etc.
  90. The pattern "img%%-%d.jpg" will specify a sequence of filenames of the
  91. form @file{img%-1.jpg}, @file{img%-2.jpg}, ..., @file{img%-10.jpg},
  92. etc.
  93. The following example shows how to use @file{ffmpeg} for creating a
  94. sequence of files @file{img-001.jpeg}, @file{img-002.jpeg}, ...,
  95. taking one image every second from the input video:
  96. @example
  97. ffmpeg -i in.avi -r 1 -f image2 'img-%03d.jpeg'
  98. @end example
  99. Note that with @file{ffmpeg}, if the format is not specified with the
  100. @code{-f} option and the output filename specifies an image file
  101. format, the image2 muxer is automatically selected, so the previous
  102. command can be written as:
  103. @example
  104. ffmpeg -i in.avi -r 1 'img-%03d.jpeg'
  105. @end example
  106. Note also that the pattern must not necessarily contain "%d" or
  107. "%0@var{N}d", for example to create a single image file
  108. @file{img.jpeg} from the input video you can employ the command:
  109. @example
  110. ffmpeg -i in.avi -f image2 -vframes 1 img.jpeg
  111. @end example
  112. The image muxer supports the .Y.U.V image file format. This format is
  113. special in that that each image frame consists of three files, for
  114. each of the YUV420P components. To read or write this image file format,
  115. specify the name of the '.Y' file. The muxer will automatically open the
  116. '.U' and '.V' files as required.
  117. @section mpegts
  118. MPEG transport stream muxer.
  119. This muxer implements ISO 13818-1 and part of ETSI EN 300 468.
  120. The muxer options are:
  121. @table @option
  122. @item -mpegts_original_network_id @var{number}
  123. Set the original_network_id (default 0x0001). This is unique identifier
  124. of a network in DVB. Its main use is in the unique identification of a
  125. service through the path Original_Network_ID, Transport_Stream_ID.
  126. @item -mpegts_transport_stream_id @var{number}
  127. Set the transport_stream_id (default 0x0001). This identifies a
  128. transponder in DVB.
  129. @item -mpegts_service_id @var{number}
  130. Set the service_id (default 0x0001) also known as program in DVB.
  131. @item -mpegts_pmt_start_pid @var{number}
  132. Set the first PID for PMT (default 0x1000, max 0x1f00).
  133. @item -mpegts_start_pid @var{number}
  134. Set the first PID for data packets (default 0x0100, max 0x0f00).
  135. @end table
  136. The recognized metadata settings in mpegts muxer are @code{service_provider}
  137. and @code{service_name}. If they are not set the default for
  138. @code{service_provider} is "FFmpeg" and the default for
  139. @code{service_name} is "Service01".
  140. @example
  141. ffmpeg -i file.mpg -acodec copy -vcodec copy \
  142. -mpegts_original_network_id 0x1122 \
  143. -mpegts_transport_stream_id 0x3344 \
  144. -mpegts_service_id 0x5566 \
  145. -mpegts_pmt_start_pid 0x1500 \
  146. -mpegts_start_pid 0x150 \
  147. -metadata service_provider="Some provider" \
  148. -metadata service_name="Some Channel" \
  149. -y out.ts
  150. @end example
  151. @section null
  152. Null muxer.
  153. This muxer does not generate any output file, it is mainly useful for
  154. testing or benchmarking purposes.
  155. For example to benchmark decoding with @file{ffmpeg} you can use the
  156. command:
  157. @example
  158. ffmpeg -benchmark -i INPUT -f null out.null
  159. @end example
  160. Note that the above command does not read or write the @file{out.null}
  161. file, but specifying the output file is required by the @file{ffmpeg}
  162. syntax.
  163. Alternatively you can write the command as:
  164. @example
  165. ffmpeg -benchmark -i INPUT -f null -
  166. @end example
  167. @c man end MUXERS