Questions tagged [react-native-webrtc]
49 questions
0
votes
0 answers
ERROR Failed to add ice candidate: [Error: The remote description was null] when using addIceCandidate
I'm developing a react native app that has the video call feature, and I'm facing an issue in the implementation, I'm getting this error ERROR Failed to add ice candidate: [Error: The remote description was null] although the call didn't start…
0
votes
0 answers
react native webrtc remoteStream working RTCPeerConnection oniceconnectionstatechange hang on checking, remote vide is not showing,
I am working on peer to peer video conference application, using below code, the local Stream video is showing but the remote is not working, it is just showing black video in RTCView tag. it is like
it is like the ice server is getting reached,…

olikom
- 1
0
votes
0 answers
Remove noise from video call in react-native-webrtc, react-native-incall-manager
I am implementing video call in react native. I am using react-native-webrtc, socket.io and react-native-incall-manager npm packages. The issue, I am facing is remote user audio is not clear. The audio is not clear. to much noise. Can I fix this…

Ali Hassan
- 71
- 7
0
votes
0 answers
How to start a call via native "Contacts" app
In iOS I can see the option to start a call using my app in the "Contacts" app of the device. When I click to it, my app is opened.
How can I pass the number of that contact to my app?
Is the same scenario also possible for Android?

H.Gndgn
- 47
- 1
- 2
- 12
0
votes
1 answer
npm install react-native-webrtc failed
npm install react-native-webrtc --save
C:\Windows\system32\cmd.exe /d /s /c node tools/downloadWebRTC.js
npm ERR! Downloading https://github.com/jitsi/webrtc/releases/download/v106.0.1/android-webrtc.zip...
npm ERR!…

oshia lonva
- 1
- 1
0
votes
0 answers
How can i get remote streams on react-native-webrtc from a Kurento Media Server
I am trying to connect a Kurento Media Server to React Native on iOS for a group video call.
The server is running on Nodejs and Docker, and they already have a TURN server set up.
The app is already running in the web browser via kurento-utils, but…

user8711448
- 1
- 1
0
votes
0 answers
TypeError: null is not an object (evaluating 'WebRTCModule.peerConnectionInit')
hey guys I am stuck on this webrtc thing for a while
I am getting the following error when trying to get a peer connection in an ejected expo app:
TypeError: null is not an object (evaluating 'WebRTCModule.peerConnectionInit')
at…

Vishal
- 111
- 6
0
votes
0 answers
capture MediaStream from a local video file in react naitve
The purpose is to play a local video on the host side and stream it on the participants' side. The video should pause and seek for everyone when the host does it.
For this, I want to capture a stream (of MediaStream type) of a local video file while…

Fiza_Ptn
- 1
0
votes
1 answer
Android crash on react-native-webrtc addIceCandidates
I'm trying to stream live video from a remote webcam but it crashes on Android when I try to add the ice candidates to the peerConnection. This same code works on ios and I believe have followed the Android setup correctly.
I read somewhere that I…

thul
- 986
- 10
- 14
0
votes
1 answer
node tools/downloadWebRTC.js command fails when installing "react-native-webrtc" package
I am trying to install the package "react-native-webrtc" but getting this error (yarn install react-native-webrtc --verbose):
react-native-webrtc
verbose 189.970120017 Error: /Users/samwin/dev/MobileAgent/node_modules/react-native-webrtc: Command…

H.Gndgn
- 47
- 1
- 2
- 12
0
votes
2 answers
Cannot initialize a peer connection, because of 'cyclical structure in JSON object'
I am trying to create a peer connection like this:
const iceServers: RTCIceServer[] = data.iceServers.map((s) => {
return {
urls: [s.uri],
username: s.username,
credential: s.credential,
};
});
const configuration: RTCConfiguration…

H.Gndgn
- 47
- 1
- 2
- 12
0
votes
2 answers
React Native CallKeep : answerCall' CallKeep Listener occasionally does not run, when answering call while app is terminated/background
Someone, please help!
answerCall event is not firing in Android only. When we call displayIncomingCall and the incoming call shows on Android, and when we press the call end button, the endCall event is firing, but when we press the call-accept…

Four
- 125
- 1
- 1
- 9
0
votes
0 answers
React native live stream and save live stream video
I have to create an app to live stream and save live stream video.
An app ( which is simple version of cam app as Botslab/Mi home/ ... ) just lives every time, saves video (maybe every 20 mins) to memory stick and watches saved videos on App
I…

Zuet
- 559
- 6
- 23
0
votes
0 answers
webrtc sip calling video web application
do any one can built a webrtc sip calling video chat application with explanation of each step to compile the web application as end to end complete demo ?

user12174104
- 37
- 4
0
votes
1 answer
How to end peer connection in react-native
how can i end peer connection when using react-native-peerjs..The connection is successful& the call works. but at the point of ending the call, i haven't found a disconnect function, so the call still goes on in background till i restart the…

Adekunle Adeyeye
- 3
- 2