You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please use discuss-webrtc for general technical discussions and questions.
If you have found an issue/bug with the native libwebrtc SDK or a browser's behaviour around WebRTC please create an issue in the relevant bug tracker. You can find more information on how to submit a bug and do so in the right place here
[*] I understand that issues created here are only relevant to the samples in this repo - not browser or SDK bugs
[*] I have provided steps to reproduce
[*] I have provided browser name and version
[*] I have provided a link to the sample here or a modified version thereof
Note: If the checkboxes above are not checked (which you do after the issue is posted), the issue will be closed.
Browser affected
One Side: Chrome Version 119.0.6045.159 (Official Build) (64-bit)
Another Side: Edge Version 126.0.2592.87 (Official Build) (64-bit)
Make a Signal server, and a STUN/TURN server.
Use the code about this file transfer example but to real peer-to-peer connection through Internet.
send a large file(e.g. 300M).
Uncaught DOMException: Failed to execute 'send' on 'RTCDataChannel': RTCDataChannel send queue is full
at RTCDataChannel.send (https://webrtc.github.io/adapter/adapter-latest.js:1244:34)
at fileReader.onload (https://xxxxxx/js/main.js:168:6)
send @adapter-latest.js:1244
fileReader.onload @main.js:168
load(异步)
sendData @main.js:166
sendfile @main.js:140
Assign
Please assign me.
I am working with webrtc recently and handling this error.
The text was updated successfully, but these errors were encountered:
I don't know why ErikHellman said: "Also ,there seems to be some problems with that event at the moment. " in this link #872. And what exactly is the problem ErikHellman is talking about?
However, in reality, if you do not utilize this event in a practical scenario, the mentioned error will be triggered once the buffer queue is full and you proceed with the transmission.
I'm not particularly familiar with javascript, and my implementation is slightly different from yours. You should test whether it works.
Please read first!
Please use discuss-webrtc for general technical discussions and questions.
If you have found an issue/bug with the native
libwebrtc
SDK or a browser's behaviour around WebRTC please create an issue in the relevant bug tracker. You can find more information on how to submit a bug and do so in the right place hereNote: If the checkboxes above are not checked (which you do after the issue is posted), the issue will be closed.
Browser affected
One Side: Chrome Version 119.0.6045.159 (Official Build) (64-bit)
Another Side: Edge Version 126.0.2592.87 (Official Build) (64-bit)
Description
The file transfer example code is below:
https://github.com/webrtc/samples/blob/gh-pages/src/content/datachannel/filetransfer/js/main.js
However, it only run on the local, send file from local to local by DataChannel.
Steps to reproduce
Make a Signal server, and a STUN/TURN server.
Use the code about this file transfer example but to real peer-to-peer connection through Internet.
send a large file(e.g. 300M).
Expected results
I notice that: https://developer.mozilla.org/en-US/docs/Web/API/RTCDataChannel/bufferedamountlow_event
we could add call
onbufferedamountlow
to this example, so that the developers will understand and quickly apply it.And developers will not see below error.
Actual results
You will see the error in the Console:
Assign
Please assign me.
I am working with webrtc recently and handling this error.
The text was updated successfully, but these errors were encountered: