mirror of
https://github.com/androidx/media.git
synced 2025-04-29 22:36:54 +08:00

The version and flags are stored in a single integer, with the version in the higher 8 bits and the flags in the lower 24 bits. The version should be 1 and the flags should be 0. Surprisingly the incorrect value was ignored by many players and hence the bug was never caught. With the bug, the video does not play on `Samsung Galaxy S22 Ultra` and works well after fixing the bug. PiperOrigin-RevId: 684433371
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.