Mute audio on ExoPlayer

后端 未结 7 1662
走了就别回头了
走了就别回头了 2020-12-09 02:13

I\'m using Google new MediaPlayer named ExoPlayer and cannot find a way to mute the sound

Is there an easy way to mute audio track on Google ExoPlayer ? Or changing

7条回答
  •  悲哀的现实
    2020-12-09 02:30

    In ExoPlayer 2.x.x:

    get the current volume:

    int currentVolume = player..getAudioComponent().getVolume();
    

    mute:

    player.getAudioComponent().setVolume(0f);
    

    unmute:

    player.getAudioComponent().setVolume(currentVolume);
    

提交回复
热议问题