We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, i try to get Audio/Video call between Chrome/Firefox/Safari and Edge. In Edge I get the following error:
SCRIPT438: Object doesn't support property or method 'createDataChannel'
I try it with the following code snippet:
var peer_options = { initiator: initiator, config: { iceTransportPolicy: 'all', //rtcpMuxPolicy: 'negotiate', iceServers: [ { urls: 'turn:xyz.bar:3478', username: 'user', credential: 'pass'}, ] }, }; if( this.videoSupport ) { peer_options.stream = this.localStream; } this.RTCPeer = new SimplePeer( peer_options );
I don't need DataChannel. How to disable DataChannel in simplepeer so I can made a audio/video call between Edge and other browser?
Thank You!
The text was updated successfully, but these errors were encountered:
The next version of Edge will be based on Chromium, so this issue will solve itself very soon. https://www.microsoftedgeinsider.com/en-us/download/
Sorry, something went wrong.
This issue is similar to #792 Same need, but for different reason. I have a SIP server that also does not support datachannel and throw errors.
Successfully merging a pull request may close this issue.
Hi,
i try to get Audio/Video call between Chrome/Firefox/Safari and Edge. In Edge I get the following error:
SCRIPT438: Object doesn't support property or method 'createDataChannel'
I try it with the following code snippet:
I don't need DataChannel. How to disable DataChannel in simplepeer so I can made a audio/video call between Edge and other browser?
Thank You!
The text was updated successfully, but these errors were encountered: