Open sarray23 opened 4 years ago
Hi @sarray23 , did you find a solution to this ? I'm experiencing the same issue, everything seems fine but I don't get the video content. Thanks !!
This issue is related to react-native-webrtc version. If you want to make this repository work then you need to downgrade react-native-webrtc to 1.67.0 (1.69.0 support Promises instead of callbacks), or modify janus.mobile.js to support Promises.
same issue for me
change turn
Hello, I'm trying to display a remote streaming video but i succeed to connect to janus library but i get at the end a black screen instead of video content. Any idea about this issue please? Am using the same library janus.mobile.js In my Video component i call janusStart this way:
janusStart = () => { containerStreaming.setState({ visible: true }); Janus.init({ debug: [], callback: function() { let streaming = null; let janus = new Janus({ iceServers: this.state.iceServers, server: this.state.server, token: this.state.token,
I'm using webrtc to display the streaming video this way : <RTCView zOrder={0} streamURL={this.state.selfViewSrc} style={styles.streamingStyle} />
Note: Versions: react-native-webrtc : 1.75.3 RN: 0.60.5 Xcode : 11.3.1 Tested on real iphone device with os version 13 Latest androidStudio version.