jitsi / jitsi-videobridge

Jitsi Videobridge is a WebRTC compatible video router or SFU that lets build highly scalable video conferencing infrastructure (i.e., up to hundreds of conferences per server).
https://jitsi.org/jitsi-videobridge
Apache License 2.0
2.9k stars 989 forks source link

Using with react-native-webrtc #530

Open jerameel opened 7 years ago

jerameel commented 7 years ago

Is there a documentation or tutorial for this implementation? I have seen jitsi forked react-native-webrtc

paweldomas commented 7 years ago

We usually try to follow the upstream. They are almost at the same place it should be fine to use either upstream or jitsi branch although in jitsi-meet we use jitsi to have control over version updates.

saghul commented 7 years ago

Is there a documentation or tutorial for this implementation?

The implementation of what exactly? We use lib-jitsi-meet, which uses the native WebRTC APIs and communicates with the JVB (via Jicofo really). So from this perspective, React Native is the same as a browser to us, since the API it exposes is the same.

jerameel commented 7 years ago

I want to use jitsi-videobridge as an MCU or SFU. i can't find the docs to do so

saghul commented 7 years ago

jitsi-videobridge is not an MCU. It's a SFU. It doesn't "speak" SDP, it uses the COLIBRI protocol, so you need to communicate with it using either XMPP or the REST API. If you are using it standalone you probably want to use the REST API: https://github.com/jitsi/jitsi-videobridge/blob/master/doc/rest-colibri.md

riobijanero commented 6 years ago

I'm also trying to make a jitsi meet mobile app with react-native, but have no idea how to get started yet ('m a newbie). is there a tutorial for that?