
Issue: androidx/media#725 Ideally the test to transmux a `ts` file (having 3 bytes NAL start code) should go into `Mp4MuxerEndToEndTest`but `Mp4MuxerEndToEndTest` uses `MediaExtractor` and `MediaExtractor` is returning samples with `4 byte NAL start code` which will not exercise the newly added code path. Hence the test is added in `TransformerWithInAppMuxerEndToEndTest` which internally uses `media3 extractor` and feeds samples with `3 bytes NAL start code` only. PiperOrigin-RevId: 617985866
Muxer module
Provides functionality for producing media container files.
Getting the module
The easiest way to get the module is to add it as a gradle dependency:
implementation 'androidx.media3:media3-muxer:1.X.X'
where 1.X.X
is the version, which must match the version of the other media
modules being used.
Alternatively, you can clone this GitHub project and depend on the module locally. Instructions for doing this can be found in the top level README.