Integrating react-native-camera with react-native-webrtc

Hi Team,
We are trying to get the live feed from react-native-camera and pass it to react-native-webrtc stream. Kindly guide us on how we could get this done.

Regards,
Ramesh

WebRTC.mediaDevices.getUserMedia({ audio: true, video: true })

Will return a promise with local stream which is live feed of your camera.

1 Like