mirror of
https://github.com/androidx/media.git
synced 2025-04-30 06:46:50 +08:00

In certain bluetooth playback scenarios, it was found that the delta of audio duration written by the AudioSink from the current playback position was greater than the size of the audio track buffer, causing underruns. The solution is to utilize the audio track buffer size as an upper limit for an audio renderer's getDurationToProgress. PiperOrigin-RevId: 735761604 (cherry picked from commit 2729dbb8a9c9ea29d49efd5ffc30e734b7c86048)
Transformer module
Provides functionality for transforming media files.
Getting the module
The easiest way to get the module is to add it as a gradle dependency:
implementation 'androidx.media3:media3-transformer: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.