LocalAudioMixerConfiguration

Configure local audio mixing.

struct LocalAudioMixerConfiguration {
  unsigned int streamCount;
  MixedAudioStream* audioInputStreams;
  bool syncWithLocalMic;
};

Properties

streamCount
The number of audio streams for local mixing.
audioInputStreams
The source of audio streams for local mixing. See MixedAudioStream.
syncWithLocalMic
Whether the mixed audio stream uses the timestamp of audio frames captured by the local microphone.
  • true: (default) Use the timestamp of audio frames captured by the local microphone. Set this value if you want all locally captured audio streams to be synchronized.
  • false: Use the timestamp of audio frames during mixing.