Exoplayer: "Skip silence" feature

Created on 30 Mar 2017  路  3Comments  路  Source: google/ExoPlayer

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.

enhancement

Most helpful comment

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));

All 3 comments

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));
Was this page helpful?
0 / 5 - 0 ratings