-
Notifications
You must be signed in to change notification settings - Fork 246
PlayerVolume
xinbaicheng edited this page Oct 24, 2016
·
4 revisions
音量默认值为1.0f
参数设置为0.0f时,播放静音
/**
* 设置当前播放音频,左右声道的音量建议一致
* @param leftVolume 左声道音量
* @param rightVolume 右声道音量
*/
public void setVolume(float leftVolume, float rightVolume);
对于v1.6.1及以下
版本,该接口可设置音量范围为: 0.0f -- 1.0f
对于v1.6.2及以上
版本,该接口可设置音量范围为: 0.0f -- 2.0f
// 使用KSYMediaPlayer
KSYMediaPlayer ksyMediaPlayer;
ksyMediaPlayer.setVolume(1.0f, 1.0f);
// 使用KSYTextureView
KSYTextureView mVideoView;
mVideoView.setVolume(1.0f, 1.0f);