Questions tagged [rtcdatachannel]
88 questions
0
votes
0 answers
Send file from android to javascript using RTC
I have a little question, how i could implements an Android app using RTC and send to an Javascript server.
I've saw Android WebRTC DataChannel binary transfer mode
But i've no idea to how implement an DataChannel
Is there a tutorial to implement…

sleakerz
- 169
- 19
0
votes
1 answer
DataChannel in webRtc javascript
I'm facing issue in integration of video and chat in WebRtc using javascript. I'm using this example
https://github.com/oney/react-native-webrtc-server/blob/master/index.html
video is working fine but sending messages fails neither receive…

Kumail Hussain
- 869
- 2
- 26
- 49
0
votes
1 answer
webrtc datachannel sctp details
When a webrtc datachannel is connected, I'd like to get details about the connection. (I admit I'm still fuzzy about ice and renegotiation).
In my datachannel.onopen I tried to get sctp
var sctp = myPeerConnection.sctp;
but it is returning…

phomlish
- 189
- 1
- 2
- 13
0
votes
1 answer
DataChannel Webrtc Swift
I want to create an data channel. But I'm having some difficulties to implement this. I have added the code that runs on the "caller side":
func initWebRTC() {
RTCInitializeSSL()
peerConnectionFactory = RTCPeerConnectionFactory()
…

da1lbi3
- 4,369
- 6
- 31
- 65
0
votes
1 answer
Are WebRTC data channel packets atomic?
I want to use a WebRTC data channel to exchange json messages between peers.
Can I safely assume that each json message arrives atomically remotely (not like in TCP where packets may be split or chunked together) or do I need implement something…

monoceres
- 4,722
- 4
- 38
- 63
0
votes
0 answers
WebRTC real-time datachannel flow control algorithm?
I'm developing an iOS app with screensharing. Since screenshsring on iOS is not supported by Apple, the only way is to take screenshots and transmit them.
I'm using WebRTC DataChannel to share the screenshots to a browser. It works decent, but…

Jakkra
- 641
- 8
- 25
0
votes
1 answer
current webrtc ios static library - e.g. libwebrtc_arm64.a?
I've used the WebRTC DataConnection API in browsers a lot for p2p communication. Now I'd like to do the same within an iOS app.
I live and develop in a remote region with very slow Internet access. So building the webrtc source myself which involves…

Lightbeard
- 4,011
- 10
- 49
- 59
0
votes
1 answer
Measure data volume sent over RTCDataChannel
I have connected two users over a RTCdatachannel. This works, but I would like monitor the traffic generated by it, e.g 1Mbit/s. Is there a way to get this?
The motivation is that one user creates content and the other side mirrors this, kind of a…

Kristjan Liiva
- 9,069
- 3
- 25
- 26
0
votes
1 answer
Failed to make webrtc call with DataChannel from Chrome web app to Android app
I wrote a webrtc webapp (with video + audio + dataChannel) on:
https://github.com/wennycooper/wsProject
I wrote an Android webrtc app too on:
https://github.com/wennycooper/webrtcClient
The webapp-to-webapp call works fine.
The…

Kevin Kuei
- 193
- 2
- 17
0
votes
3 answers
RTCDataChannel with Google Channel API
I'm trying to follow this example by Dan Ristic for RTCDataChannel browser p2p communication with Google's Channel API for signaling. It seems to be failing silently - I can't get the RTCDataChannel.onopen, RTCPeerConnection.onicecandidate, or…

Lightbeard
- 4,011
- 10
- 49
- 59
0
votes
1 answer
erratic behaviour of RTC datachannel
I am using RTC datachannel to transfer data (about 200kb) every 100ms( using timeout) between two peers( both chrome browsers, one windows pc n other mac).
For some reason, suddenly for no reason, in general after approx 5 minutes, one of the peers…

mido
- 24,198
- 15
- 92
- 117
0
votes
1 answer
Does webRtc Hybrid app run on IOS
I want to develop IOS application using sdk like rtc.io I want to know whether javascript based hybrid application will run on IOS or not? Is there any available free SDK for IOS native webRTC Data channel app development?

user1681600
- 13
- 3
-2
votes
0 answers
I want Android app & Web app to communicate Directly so that they can sync messages from each other
Server just have to set the connection between two apps. and then apps can communicate directly with each other without server involvement.
So what are the other possibility to communicate two devices directly without the evolvement of server.
I…

Faiz Akbar
- 40
- 1