AudioTrackConfig
The configuration of custom audio tracks.
public class AudioTrackConfig { public boolean enableLocalPlayback; public AudioTrackConfig() { this.enableLocalPlayback = true; } }
Attributes
- enableLocalPlayback
- Whether to enable the local audio-playback device:
true
: (Default) Enable the local audio-playback device.false
: Do not enable the local audio-playback device.