CloudWebRTC
CloudWebRTC
Does the program start without creating any peerconnection and the background music will be terminated? It looks like a certain code snippet takes over the Audiomanager
okay, This should be a bug, I will investigate it.
hi @ollydixon, you can try these steps https://github.com/flutter-webrtc/flutter-webrtc#note-for-ios
Just created a new flutter project for testing, I can run `flutter run` correctly after setting this. The issue is so strange. ``` patch diff --git a/e2e/ios/Podfile b/e2e/ios/Podfile index 1e8c3c9..62019e3...
okay, let me check how the issue happened.
This should be a webrtc negotiation issue, for example: The sdp of the offer is ```sdp a=audio... ... a=video... ... a=application ``` answer sdp is, ```sdp a=audio... .... a=application ```...
Therefore, you need to check whether the answering party has created the corresponding (audio/video) RtpTransceiver during the negotiation process
Here's the W3C documentation on getUserMdia from Mozilla, https://developer.mozilla.org/en-US/docs/Web/API/MediaDevices/getUserMedia so getting a specific audio device looks like this. ```dart var devices = await navigator.mediaDevices.enumerateDevices(); devices.forEach((device) { print('device: ${device.deviceId}'); }); var...
> Is there a way to use audio outputs as input? Only possible if insertable streams are supported, please refer to https://github.com/flutter-webrtc/flutter-webrtc/issues/959
hi, can you print the full log? Yesterday I tested a related issue. If RTCRenderer is repeatedly created without calling dispose to release SurefaceHelper, it will cause DecoderQueue initialization to...