WebRtc.NET
WebRtc.NET copied to clipboard
select audio device
i have differnt mic devices and it is picking up always the default device, where i can select the device which i would like to hear.
here? no idea how..
auto a = pc_factory_->CreateAudioSource(NULL);
auto audio_track = pc_factory_->CreateAudioTrack(kAudioLabel, a);
stream->AddTrack(audio_track);
beacuse of you are using same WebRtcServer for all the devices.if you can create a multiple servers for each devices , then you can select any device from client.it is worked for me.