adjustPlayoutVolume

最近更新时间:2022-09-20 05:17:40

 Future<void> adjustPlayoutVolume(int vol);

调节本地播放音量

本地播放音量,取值范围从 0 到 100:

  • 0: 无声
  • 100: (默认)媒体文件的原始播放音量

返回

  • 0:方法调用成功。

  • <0:方法调用失败,详见 ErrorCode

Implementation

  
  Future<void> adjustPlayoutVolume(int vol) {
    return _methodChannel.invokeMethod('adjustPlayoutVolume', {
      'vol': vol
    });
  }