Is there any chance to implement "skip silence" feature to Exoplayer or how can force player to do it? Some Podcast apps have it implemented.
This will be an awesome feature.
@mkaflowski ,
I just need this feature too, i try remove the silence data in a custom AudioProcessor, but make nothing
This feature is available to try on our dev-v2 branch. You can turn on silence skipping using playback parameters, like:
player.setPlaybackParameters(
new PlaybackParameters(/* speed= */ 1, /* pitch= */ 1, /* skipSilence= */ true));
Most helpful comment
This feature is available to try on our
dev-v2branch. You can turn on silence skipping using playback parameters, like: