-
Notifications
You must be signed in to change notification settings - Fork 107
New issue
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
Allow sending large files #7
Comments
Is there any ETA? When I like to send a video that's usually not possible because of this 15 MiB limit. |
I'm also annoyed by this every once in a while, so it's definitely on our list of planned things to do :) |
This is really annoying to fix as well as the data channel API is just so clunky. We have a low water mark event which will tell us when to unpause sending but there's no high water mark event which tells us when to pause sending. The spec says that |
High on my to do list. 😝 |
This update allows us to control data channels ourselves and thus apply a sender-side flow control which prevents data channels from becoming closed (#594). This is also preliminary work for #7. Further changes: - Bump SaltyRTC client and WebRTC task dependencies - Use chunking API v2 - Add helper classes that ease the use of the data channel flow control
This update allows us to control data channels ourselves and thus apply a sender-side flow control which prevents data channels from becoming closed (#594). This is also preliminary work for #7. Further changes: - Bump SaltyRTC client and WebRTC task dependencies - Use chunking API v2 - Add helper classes that ease the use of the data channel flow control - Allow to send files > 15 MiB towards Android
Currently file size is limited to 15 MiB because of an issue with WebRTC DataChannel buffering:
saltyrtc/saltyrtc-task-webrtc-js#9
The text was updated successfully, but these errors were encountered: