muxers.texi 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738
  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{aiff}
  16. @section aiff
  17. Audio Interchange File Format muxer.
  18. It accepts the following options:
  19. @table @option
  20. @item write_id3v2
  21. Enable ID3v2 tags writing when set to 1. Default is 0 (disabled).
  22. @item id3v2_version
  23. Select ID3v2 version to write. Currently only version 3 and 4 (aka.
  24. ID3v2.3 and ID3v2.4) are supported. The default is version 4.
  25. @end table
  26. @anchor{crc}
  27. @section crc
  28. CRC (Cyclic Redundancy Check) testing format.
  29. This muxer computes and prints the Adler-32 CRC of all the input audio
  30. and video frames. By default audio frames are converted to signed
  31. 16-bit raw audio and video frames to raw video before computing the
  32. CRC.
  33. The output of the muxer consists of a single line of the form:
  34. CRC=0x@var{CRC}, where @var{CRC} is a hexadecimal number 0-padded to
  35. 8 digits containing the CRC for all the decoded input frames.
  36. For example to compute the CRC of the input, and store it in the file
  37. @file{out.crc}:
  38. @example
  39. ffmpeg -i INPUT -f crc out.crc
  40. @end example
  41. You can print the CRC to stdout with the command:
  42. @example
  43. ffmpeg -i INPUT -f crc -
  44. @end example
  45. You can select the output format of each frame with @command{ffmpeg} by
  46. specifying the audio and video codec and format. For example to
  47. compute the CRC of the input audio converted to PCM unsigned 8-bit
  48. and the input video converted to MPEG-2 video, use the command:
  49. @example
  50. ffmpeg -i INPUT -c:a pcm_u8 -c:v mpeg2video -f crc -
  51. @end example
  52. See also the @ref{framecrc} muxer.
  53. @anchor{framecrc}
  54. @section framecrc
  55. Per-packet CRC (Cyclic Redundancy Check) testing format.
  56. This muxer computes and prints the Adler-32 CRC for each audio
  57. and video packet. By default audio frames are converted to signed
  58. 16-bit raw audio and video frames to raw video before computing the
  59. CRC.
  60. The output of the muxer consists of a line for each audio and video
  61. packet of the form:
  62. @example
  63. @var{stream_index}, @var{packet_dts}, @var{packet_pts}, @var{packet_duration}, @var{packet_size}, 0x@var{CRC}
  64. @end example
  65. @var{CRC} is a hexadecimal number 0-padded to 8 digits containing the
  66. CRC of the packet.
  67. For example to compute the CRC of the audio and video frames in
  68. @file{INPUT}, converted to raw audio and video packets, and store it
  69. in the file @file{out.crc}:
  70. @example
  71. ffmpeg -i INPUT -f framecrc out.crc
  72. @end example
  73. To print the information to stdout, use the command:
  74. @example
  75. ffmpeg -i INPUT -f framecrc -
  76. @end example
  77. With @command{ffmpeg}, you can select the output format to which the
  78. audio and video frames are encoded before computing the CRC for each
  79. packet by specifying the audio and video codec. For example, to
  80. compute the CRC of each decoded input audio frame converted to PCM
  81. unsigned 8-bit and of each decoded input video frame converted to
  82. MPEG-2 video, use the command:
  83. @example
  84. ffmpeg -i INPUT -c:a pcm_u8 -c:v mpeg2video -f framecrc -
  85. @end example
  86. See also the @ref{crc} muxer.
  87. @anchor{framemd5}
  88. @section framemd5
  89. Per-packet MD5 testing format.
  90. This muxer computes and prints the MD5 hash for each audio
  91. and video packet. By default audio frames are converted to signed
  92. 16-bit raw audio and video frames to raw video before computing the
  93. hash.
  94. The output of the muxer consists of a line for each audio and video
  95. packet of the form:
  96. @example
  97. @var{stream_index}, @var{packet_dts}, @var{packet_pts}, @var{packet_duration}, @var{packet_size}, @var{MD5}
  98. @end example
  99. @var{MD5} is a hexadecimal number representing the computed MD5 hash
  100. for the packet.
  101. For example to compute the MD5 of the audio and video frames in
  102. @file{INPUT}, converted to raw audio and video packets, and store it
  103. in the file @file{out.md5}:
  104. @example
  105. ffmpeg -i INPUT -f framemd5 out.md5
  106. @end example
  107. To print the information to stdout, use the command:
  108. @example
  109. ffmpeg -i INPUT -f framemd5 -
  110. @end example
  111. See also the @ref{md5} muxer.
  112. @anchor{hls}
  113. @section hls
  114. Apple HTTP Live Streaming muxer that segments MPEG-TS according to
  115. the HTTP Live Streaming specification.
  116. It creates a playlist file and numbered segment files. The output
  117. filename specifies the playlist filename; the segment filenames
  118. receive the same basename as the playlist, a sequential number and
  119. a .ts extension.
  120. @example
  121. ffmpeg -i in.nut out.m3u8
  122. @end example
  123. @table @option
  124. @item -hls_time @var{seconds}
  125. Set the segment length in seconds.
  126. @item -hls_list_size @var{size}
  127. Set the maximum number of playlist entries.
  128. @item -hls_wrap @var{wrap}
  129. Set the number after which index wraps.
  130. @item -start_number @var{number}
  131. Start the sequence from @var{number}.
  132. @end table
  133. @anchor{ico}
  134. @section ico
  135. ICO file muxer.
  136. Microsoft's icon file format (ICO) has some strict limitations that should be noted:
  137. @itemize
  138. @item
  139. Size cannot exceed 256 pixels in any dimension
  140. @item
  141. Only BMP and PNG images can be stored
  142. @item
  143. If a BMP image is used, it must be one of the following pixel formats:
  144. @example
  145. BMP Bit Depth FFmpeg Pixel Format
  146. 1bit pal8
  147. 4bit pal8
  148. 8bit pal8
  149. 16bit rgb555le
  150. 24bit bgr24
  151. 32bit bgra
  152. @end example
  153. @item
  154. If a BMP image is used, it must use the BITMAPINFOHEADER DIB header
  155. @item
  156. If a PNG image is used, it must use the rgba pixel format
  157. @end itemize
  158. @anchor{image2}
  159. @section image2
  160. Image file muxer.
  161. The image file muxer writes video frames to image files.
  162. The output filenames are specified by a pattern, which can be used to
  163. produce sequentially numbered series of files.
  164. The pattern may contain the string "%d" or "%0@var{N}d", this string
  165. specifies the position of the characters representing a numbering in
  166. the filenames. If the form "%0@var{N}d" is used, the string
  167. representing the number in each filename is 0-padded to @var{N}
  168. digits. The literal character '%' can be specified in the pattern with
  169. the string "%%".
  170. If the pattern contains "%d" or "%0@var{N}d", the first filename of
  171. the file list specified will contain the number 1, all the following
  172. numbers will be sequential.
  173. The pattern may contain a suffix which is used to automatically
  174. determine the format of the image files to write.
  175. For example the pattern "img-%03d.bmp" will specify a sequence of
  176. filenames of the form @file{img-001.bmp}, @file{img-002.bmp}, ...,
  177. @file{img-010.bmp}, etc.
  178. The pattern "img%%-%d.jpg" will specify a sequence of filenames of the
  179. form @file{img%-1.jpg}, @file{img%-2.jpg}, ..., @file{img%-10.jpg},
  180. etc.
  181. The following example shows how to use @command{ffmpeg} for creating a
  182. sequence of files @file{img-001.jpeg}, @file{img-002.jpeg}, ...,
  183. taking one image every second from the input video:
  184. @example
  185. ffmpeg -i in.avi -vsync 1 -r 1 -f image2 'img-%03d.jpeg'
  186. @end example
  187. Note that with @command{ffmpeg}, if the format is not specified with the
  188. @code{-f} option and the output filename specifies an image file
  189. format, the image2 muxer is automatically selected, so the previous
  190. command can be written as:
  191. @example
  192. ffmpeg -i in.avi -vsync 1 -r 1 'img-%03d.jpeg'
  193. @end example
  194. Note also that the pattern must not necessarily contain "%d" or
  195. "%0@var{N}d", for example to create a single image file
  196. @file{img.jpeg} from the input video you can employ the command:
  197. @example
  198. ffmpeg -i in.avi -f image2 -frames:v 1 img.jpeg
  199. @end example
  200. @table @option
  201. @item -start_number @var{number}
  202. Start the sequence from @var{number}.
  203. @end table
  204. The image muxer supports the .Y.U.V image file format. This format is
  205. special in that that each image frame consists of three files, for
  206. each of the YUV420P components. To read or write this image file format,
  207. specify the name of the '.Y' file. The muxer will automatically open the
  208. '.U' and '.V' files as required.
  209. @anchor{md5}
  210. @section md5
  211. MD5 testing format.
  212. This muxer computes and prints the MD5 hash of all the input audio
  213. and video frames. By default audio frames are converted to signed
  214. 16-bit raw audio and video frames to raw video before computing the
  215. hash.
  216. The output of the muxer consists of a single line of the form:
  217. MD5=@var{MD5}, where @var{MD5} is a hexadecimal number representing
  218. the computed MD5 hash.
  219. For example to compute the MD5 hash of the input converted to raw
  220. audio and video, and store it in the file @file{out.md5}:
  221. @example
  222. ffmpeg -i INPUT -f md5 out.md5
  223. @end example
  224. You can print the MD5 to stdout with the command:
  225. @example
  226. ffmpeg -i INPUT -f md5 -
  227. @end example
  228. See also the @ref{framemd5} muxer.
  229. @section MOV/MP4/ISMV
  230. The mov/mp4/ismv muxer supports fragmentation. Normally, a MOV/MP4
  231. file has all the metadata about all packets stored in one location
  232. (written at the end of the file, it can be moved to the start for
  233. better playback by adding @var{faststart} to the @var{movflags}, or
  234. using the @command{qt-faststart} tool). A fragmented
  235. file consists of a number of fragments, where packets and metadata
  236. about these packets are stored together. Writing a fragmented
  237. file has the advantage that the file is decodable even if the
  238. writing is interrupted (while a normal MOV/MP4 is undecodable if
  239. it is not properly finished), and it requires less memory when writing
  240. very long files (since writing normal MOV/MP4 files stores info about
  241. every single packet in memory until the file is closed). The downside
  242. is that it is less compatible with other applications.
  243. Fragmentation is enabled by setting one of the AVOptions that define
  244. how to cut the file into fragments:
  245. @table @option
  246. @item -moov_size @var{bytes}
  247. Reserves space for the moov atom at the beginning of the file instead of placing the
  248. moov atom at the end. If the space reserved is insufficient, muxing will fail.
  249. @item -movflags frag_keyframe
  250. Start a new fragment at each video keyframe.
  251. @item -frag_duration @var{duration}
  252. Create fragments that are @var{duration} microseconds long.
  253. @item -frag_size @var{size}
  254. Create fragments that contain up to @var{size} bytes of payload data.
  255. @item -movflags frag_custom
  256. Allow the caller to manually choose when to cut fragments, by
  257. calling @code{av_write_frame(ctx, NULL)} to write a fragment with
  258. the packets written so far. (This is only useful with other
  259. applications integrating libavformat, not from @command{ffmpeg}.)
  260. @item -min_frag_duration @var{duration}
  261. Don't create fragments that are shorter than @var{duration} microseconds long.
  262. @end table
  263. If more than one condition is specified, fragments are cut when
  264. one of the specified conditions is fulfilled. The exception to this is
  265. @code{-min_frag_duration}, which has to be fulfilled for any of the other
  266. conditions to apply.
  267. Additionally, the way the output file is written can be adjusted
  268. through a few other options:
  269. @table @option
  270. @item -movflags empty_moov
  271. Write an initial moov atom directly at the start of the file, without
  272. describing any samples in it. Generally, an mdat/moov pair is written
  273. at the start of the file, as a normal MOV/MP4 file, containing only
  274. a short portion of the file. With this option set, there is no initial
  275. mdat atom, and the moov atom only describes the tracks but has
  276. a zero duration.
  277. Files written with this option set do not work in QuickTime.
  278. This option is implicitly set when writing ismv (Smooth Streaming) files.
  279. @item -movflags separate_moof
  280. Write a separate moof (movie fragment) atom for each track. Normally,
  281. packets for all tracks are written in a moof atom (which is slightly
  282. more efficient), but with this option set, the muxer writes one moof/mdat
  283. pair for each track, making it easier to separate tracks.
  284. This option is implicitly set when writing ismv (Smooth Streaming) files.
  285. @item -movflags faststart
  286. Run a second pass moving the moov atom on top of the file. This
  287. operation can take a while, and will not work in various situations such
  288. as fragmented output, thus it is not enabled by default.
  289. @end table
  290. Smooth Streaming content can be pushed in real time to a publishing
  291. point on IIS with this muxer. Example:
  292. @example
  293. ffmpeg -re @var{<normal input/transcoding options>} -movflags isml+frag_keyframe -f ismv http://server/publishingpoint.isml/Streams(Encoder1)
  294. @end example
  295. @section mpegts
  296. MPEG transport stream muxer.
  297. This muxer implements ISO 13818-1 and part of ETSI EN 300 468.
  298. The muxer options are:
  299. @table @option
  300. @item -mpegts_original_network_id @var{number}
  301. Set the original_network_id (default 0x0001). This is unique identifier
  302. of a network in DVB. Its main use is in the unique identification of a
  303. service through the path Original_Network_ID, Transport_Stream_ID.
  304. @item -mpegts_transport_stream_id @var{number}
  305. Set the transport_stream_id (default 0x0001). This identifies a
  306. transponder in DVB.
  307. @item -mpegts_service_id @var{number}
  308. Set the service_id (default 0x0001) also known as program in DVB.
  309. @item -mpegts_pmt_start_pid @var{number}
  310. Set the first PID for PMT (default 0x1000, max 0x1f00).
  311. @item -mpegts_start_pid @var{number}
  312. Set the first PID for data packets (default 0x0100, max 0x0f00).
  313. @end table
  314. The recognized metadata settings in mpegts muxer are @code{service_provider}
  315. and @code{service_name}. If they are not set the default for
  316. @code{service_provider} is "FFmpeg" and the default for
  317. @code{service_name} is "Service01".
  318. @example
  319. ffmpeg -i file.mpg -c copy \
  320. -mpegts_original_network_id 0x1122 \
  321. -mpegts_transport_stream_id 0x3344 \
  322. -mpegts_service_id 0x5566 \
  323. -mpegts_pmt_start_pid 0x1500 \
  324. -mpegts_start_pid 0x150 \
  325. -metadata service_provider="Some provider" \
  326. -metadata service_name="Some Channel" \
  327. -y out.ts
  328. @end example
  329. @section null
  330. Null muxer.
  331. This muxer does not generate any output file, it is mainly useful for
  332. testing or benchmarking purposes.
  333. For example to benchmark decoding with @command{ffmpeg} you can use the
  334. command:
  335. @example
  336. ffmpeg -benchmark -i INPUT -f null out.null
  337. @end example
  338. Note that the above command does not read or write the @file{out.null}
  339. file, but specifying the output file is required by the @command{ffmpeg}
  340. syntax.
  341. Alternatively you can write the command as:
  342. @example
  343. ffmpeg -benchmark -i INPUT -f null -
  344. @end example
  345. @section matroska
  346. Matroska container muxer.
  347. This muxer implements the matroska and webm container specs.
  348. The recognized metadata settings in this muxer are:
  349. @table @option
  350. @item title=@var{title name}
  351. Name provided to a single track
  352. @end table
  353. @table @option
  354. @item language=@var{language name}
  355. Specifies the language of the track in the Matroska languages form
  356. @end table
  357. @table @option
  358. @item stereo_mode=@var{mode}
  359. Stereo 3D video layout of two views in a single video track
  360. @table @option
  361. @item mono
  362. video is not stereo
  363. @item left_right
  364. Both views are arranged side by side, Left-eye view is on the left
  365. @item bottom_top
  366. Both views are arranged in top-bottom orientation, Left-eye view is at bottom
  367. @item top_bottom
  368. Both views are arranged in top-bottom orientation, Left-eye view is on top
  369. @item checkerboard_rl
  370. Each view is arranged in a checkerboard interleaved pattern, Left-eye view being first
  371. @item checkerboard_lr
  372. Each view is arranged in a checkerboard interleaved pattern, Right-eye view being first
  373. @item row_interleaved_rl
  374. Each view is constituted by a row based interleaving, Right-eye view is first row
  375. @item row_interleaved_lr
  376. Each view is constituted by a row based interleaving, Left-eye view is first row
  377. @item col_interleaved_rl
  378. Both views are arranged in a column based interleaving manner, Right-eye view is first column
  379. @item col_interleaved_lr
  380. Both views are arranged in a column based interleaving manner, Left-eye view is first column
  381. @item anaglyph_cyan_red
  382. All frames are in anaglyph format viewable through red-cyan filters
  383. @item right_left
  384. Both views are arranged side by side, Right-eye view is on the left
  385. @item anaglyph_green_magenta
  386. All frames are in anaglyph format viewable through green-magenta filters
  387. @item block_lr
  388. Both eyes laced in one Block, Left-eye view is first
  389. @item block_rl
  390. Both eyes laced in one Block, Right-eye view is first
  391. @end table
  392. @end table
  393. For example a 3D WebM clip can be created using the following command line:
  394. @example
  395. ffmpeg -i sample_left_right_clip.mpg -an -c:v libvpx -metadata stereo_mode=left_right -y stereo_clip.webm
  396. @end example
  397. @section segment, stream_segment, ssegment
  398. Basic stream segmenter.
  399. The segmenter muxer outputs streams to a number of separate files of nearly
  400. fixed duration. Output filename pattern can be set in a fashion similar to
  401. @ref{image2}.
  402. @code{stream_segment} is a variant of the muxer used to write to
  403. streaming output formats, i.e. which do not require global headers,
  404. and is recommended for outputting e.g. to MPEG transport stream segments.
  405. @code{ssegment} is a shorter alias for @code{stream_segment}.
  406. Every segment starts with a keyframe of the selected reference stream,
  407. which is set through the @option{reference_stream} option.
  408. Note that if you want accurate splitting for a video file, you need to
  409. make the input key frames correspond to the exact splitting times
  410. expected by the segmenter, or the segment muxer will start the new
  411. segment with the key frame found next after the specified start
  412. time.
  413. The segment muxer works best with a single constant frame rate video.
  414. Optionally it can generate a list of the created segments, by setting
  415. the option @var{segment_list}. The list type is specified by the
  416. @var{segment_list_type} option.
  417. The segment muxer supports the following options:
  418. @table @option
  419. @item reference_stream @var{specifier}
  420. Set the reference stream, as specified by the string @var{specifier}.
  421. If @var{specifier} is set to @code{auto}, the reference is choosen
  422. automatically. Otherwise it must be a stream specifier (see the ``Stream
  423. specifiers'' chapter in the ffmpeg manual) which specifies the
  424. reference stream. The default value is ``auto''.
  425. @item segment_format @var{format}
  426. Override the inner container format, by default it is guessed by the filename
  427. extension.
  428. @item segment_list @var{name}
  429. Generate also a listfile named @var{name}. If not specified no
  430. listfile is generated.
  431. @item segment_list_flags @var{flags}
  432. Set flags affecting the segment list generation.
  433. It currently supports the following flags:
  434. @table @var
  435. @item cache
  436. Allow caching (only affects M3U8 list files).
  437. @item live
  438. Allow live-friendly file generation.
  439. This currently only affects M3U8 lists. In particular, write a fake
  440. EXT-X-TARGETDURATION duration field at the top of the file, based on
  441. the specified @var{segment_time}.
  442. @end table
  443. Default value is @code{cache}.
  444. @item segment_list_size @var{size}
  445. Overwrite the listfile once it reaches @var{size} entries. If 0
  446. the listfile is never overwritten. Default value is 0.
  447. @item segment_list type @var{type}
  448. Specify the format for the segment list file.
  449. The following values are recognized:
  450. @table @option
  451. @item flat
  452. Generate a flat list for the created segments, one segment per line.
  453. @item csv, ext
  454. Generate a list for the created segments, one segment per line,
  455. each line matching the format (comma-separated values):
  456. @example
  457. @var{segment_filename},@var{segment_start_time},@var{segment_end_time}
  458. @end example
  459. @var{segment_filename} is the name of the output file generated by the
  460. muxer according to the provided pattern. CSV escaping (according to
  461. RFC4180) is applied if required.
  462. @var{segment_start_time} and @var{segment_end_time} specify
  463. the segment start and end time expressed in seconds.
  464. A list file with the suffix @code{".csv"} or @code{".ext"} will
  465. auto-select this format.
  466. @code{ext} is deprecated in favor or @code{csv}.
  467. @item m3u8
  468. Generate an extended M3U8 file, version 4, compliant with
  469. @url{http://tools.ietf.org/id/draft-pantos-http-live-streaming-08.txt}.
  470. A list file with the suffix @code{".m3u8"} will auto-select this format.
  471. @end table
  472. If not specified the type is guessed from the list file name suffix.
  473. @item segment_time @var{time}
  474. Set segment duration to @var{time}. Default value is "2".
  475. @item segment_time_delta @var{delta}
  476. Specify the accuracy time when selecting the start time for a
  477. segment. Default value is "0".
  478. When delta is specified a key-frame will start a new segment if its
  479. PTS satisfies the relation:
  480. @example
  481. PTS >= start_time - time_delta
  482. @end example
  483. This option is useful when splitting video content, which is always
  484. split at GOP boundaries, in case a key frame is found just before the
  485. specified split time.
  486. In particular may be used in combination with the @file{ffmpeg} option
  487. @var{force_key_frames}. The key frame times specified by
  488. @var{force_key_frames} may not be set accurately because of rounding
  489. issues, with the consequence that a key frame time may result set just
  490. before the specified time. For constant frame rate videos a value of
  491. 1/2*@var{frame_rate} should address the worst case mismatch between
  492. the specified time and the time set by @var{force_key_frames}.
  493. @item segment_times @var{times}
  494. Specify a list of split points. @var{times} contains a list of comma
  495. separated duration specifications, in increasing order.
  496. @item segment_frames @var{frames}
  497. Specify a list of split video frame numbers. @var{frames} contains a
  498. list of comma separated integer numbers, in increasing order.
  499. This option specifies to start a new segment whenever a reference
  500. stream key frame is found and the sequential number (starting from 0)
  501. of the frame is greater or equal to the next value in the list.
  502. @item segment_wrap @var{limit}
  503. Wrap around segment index once it reaches @var{limit}.
  504. @item segment_start_number @var{number}
  505. Set the sequence number of the first segment. Defaults to @code{0}.
  506. @item reset_timestamps @var{1|0}
  507. Reset timestamps at the begin of each segment, so that each segment
  508. will start with near-zero timestamps. It is meant to ease the playback
  509. of the generated segments. May not work with some combinations of
  510. muxers/codecs. It is set to @code{0} by default.
  511. @end table
  512. @section Examples
  513. @itemize
  514. @item
  515. To remux the content of file @file{in.mkv} to a list of segments
  516. @file{out-000.nut}, @file{out-001.nut}, etc., and write the list of
  517. generated segments to @file{out.list}:
  518. @example
  519. ffmpeg -i in.mkv -codec copy -map 0 -f segment -segment_list out.list out%03d.nut
  520. @end example
  521. @item
  522. As the example above, but segment the input file according to the split
  523. points specified by the @var{segment_times} option:
  524. @example
  525. ffmpeg -i in.mkv -codec copy -map 0 -f segment -segment_list out.csv -segment_times 1,2,3,5,8,13,21 out%03d.nut
  526. @end example
  527. @item
  528. As the example above, but use the @code{ffmpeg} @var{force_key_frames}
  529. option to force key frames in the input at the specified location, together
  530. with the segment option @var{segment_time_delta} to account for
  531. possible roundings operated when setting key frame times.
  532. @example
  533. ffmpeg -i in.mkv -force_key_frames 1,2,3,5,8,13,21 -codec:v mpeg4 -codec:a pcm_s16le -map 0 \
  534. -f segment -segment_list out.csv -segment_times 1,2,3,5,8,13,21 -segment_time_delta 0.05 out%03d.nut
  535. @end example
  536. In order to force key frames on the input file, transcoding is
  537. required.
  538. @item
  539. Segment the input file by splitting the input file according to the
  540. frame numbers sequence specified with the @var{segment_frames} option:
  541. @example
  542. ffmpeg -i in.mkv -codec copy -map 0 -f segment -segment_list out.csv -segment_frames 100,200,300,500,800 out%03d.nut
  543. @end example
  544. @item
  545. To convert the @file{in.mkv} to TS segments using the @code{libx264}
  546. and @code{libfaac} encoders:
  547. @example
  548. ffmpeg -i in.mkv -map 0 -codec:v libx264 -codec:a libfaac -f ssegment -segment_list out.list out%03d.ts
  549. @end example
  550. @item
  551. Segment the input file, and create an M3U8 live playlist (can be used
  552. as live HLS source):
  553. @example
  554. ffmpeg -re -i in.mkv -codec copy -map 0 -f segment -segment_list playlist.m3u8 \
  555. -segment_list_flags +live -segment_time 10 out%03d.mkv
  556. @end example
  557. @end itemize
  558. @section mp3
  559. The MP3 muxer writes a raw MP3 stream with an ID3v2 header at the beginning and
  560. optionally an ID3v1 tag at the end. ID3v2.3 and ID3v2.4 are supported, the
  561. @code{id3v2_version} option controls which one is used. The legacy ID3v1 tag is
  562. not written by default, but may be enabled with the @code{write_id3v1} option.
  563. For seekable output the muxer also writes a Xing frame at the beginning, which
  564. contains the number of frames in the file. It is useful for computing duration
  565. of VBR files.
  566. The muxer supports writing ID3v2 attached pictures (APIC frames). The pictures
  567. are supplied to the muxer in form of a video stream with a single packet. There
  568. can be any number of those streams, each will correspond to a single APIC frame.
  569. The stream metadata tags @var{title} and @var{comment} map to APIC
  570. @var{description} and @var{picture type} respectively. See
  571. @url{http://id3.org/id3v2.4.0-frames} for allowed picture types.
  572. Note that the APIC frames must be written at the beginning, so the muxer will
  573. buffer the audio frames until it gets all the pictures. It is therefore advised
  574. to provide the pictures as soon as possible to avoid excessive buffering.
  575. Examples:
  576. Write an mp3 with an ID3v2.3 header and an ID3v1 footer:
  577. @example
  578. ffmpeg -i INPUT -id3v2_version 3 -write_id3v1 1 out.mp3
  579. @end example
  580. To attach a picture to an mp3 file select both the audio and the picture stream
  581. with @code{map}:
  582. @example
  583. ffmpeg -i input.mp3 -i cover.png -c copy -map 0 -map 1
  584. -metadata:s:v title="Album cover" -metadata:s:v comment="Cover (Front)" out.mp3
  585. @end example
  586. @c man end MUXERS