I'd like to add a "skip silence" feature to my audio app which Exoplayer supposedly has:
https://github.com/google/ExoPlayer/issues/4401
However, I can only set the playback speed and pitch and I don't see the skipSilence parameter in the source code:
I do see there is a SilenceSkippingAudioProcessor class but it's marked as "Unstable":
Everything is marked unstable since moving to media3.
You can set it in the builder:
val exoPlayer = ExoPlayer.Builder(context)
.setSkipSilenceEnabled(true)
.build()