AliVCSDK 6.17.0
阿里云音视频SDK,为视频开发者提供一站式接入服务
 
Loading...
Searching...
No Matches
AlivcLivePushExternalAudioStreamConfig.java
1package com.alivc.live.pusher;
2
3
13@Visible
15
19 public int channels = 1;
20
24 public int sampleRate = 48000;
25
29 public int playoutVolume = 50;
30
34 public int publishVolume = 50;
35
42 public int publishStream = 0;
43
44 @Override
45 public String toString() {
46 return "AlivcLivePushExternalAudioStreamConfig{" +
47 "channels=" + channels +
48 ", sampleRate=" + sampleRate +
49 ", playoutVolume=" + playoutVolume +
50 ", publishVolume=" + publishVolume +
51 ", publishStream=" + publishStream +
52 '}';
53 }
54}