diff options
author | Mike Scheutzow <scheutzow@alcatel-lucent.com> | 2010-06-30 22:35:57 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2010-06-30 22:35:57 +0000 |
commit | 006e8108de7ff63d153d737769300557bfb7f72a (patch) | |
tree | 9bd1f56bcefc448f28d9c86f58ed889f24e5d348 /doc | |
parent | cf60d669a6a5405b8ecdc5d2f59296e1c6b5198b (diff) | |
download | ffmpeg-006e8108de7ff63d153d737769300557bfb7f72a.tar.gz |
Add new option "streamid" to set the value of an outfile streamid.
Patch by Mike Scheutzow, scheutzow alcatel-lucent com
Originally committed as revision 23917 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ffmpeg-doc.texi | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/ffmpeg-doc.texi b/doc/ffmpeg-doc.texi index effb41a5a4..8af905e91e 100644 --- a/doc/ffmpeg-doc.texi +++ b/doc/ffmpeg-doc.texi @@ -638,6 +638,15 @@ Timestamp discontinuity delta threshold. Set the maximum demux-decode delay. @item -muxpreload @var{seconds} Set the initial demux-decode delay. +@item -streamid @var{output-stream-index}:@var{new-value} +Assign a new value to a stream's stream-id field in the next output file. +All stream-id fields are reset to default for each output file. + +For example, to set the stream 0 PID to 33 and the stream 1 PID to 36 for +an output mpegts file: +@example +ffmpeg -i infile -streamid 0:33 -streamid 1:36 out.ts +@end example @end table @section Preset files |