[FFmpeg-devel] [PATCH v2 01/18] avformat/movenc: added ability to use original stream ids as track ids instead of regenerating them

2016-08-31 Thread Erkki Seppälä
Sometimes it's useful to be able to define the exact track numbers in the generated track, instead of always beginning at track id 1. Using the option use_stream_ids_as_track_ids now copies the use stream ids to track ids. Dynamically generated tracks (ie. tmcd) have their track numbers defined as

Re: [FFmpeg-devel] [PATCH v2 01/18] avformat/movenc: added ability to use original stream ids as track ids instead of regenerating them

2016-09-01 Thread Michael Niedermayer
On Wed, Aug 31, 2016 at 02:35:44PM +0300, Erkki Seppälä wrote: > Sometimes it's useful to be able to define the exact track numbers in > the generated track, instead of always beginning at track id 1. Using > the option use_stream_ids_as_track_ids now copies the use stream ids > to track ids. Dynam