FirebaseRTC icon indicating copy to clipboard operation
FirebaseRTC copied to clipboard

Codelab for building a WebRTC Video chat application using Firebase Cloudstore.

Results 38 FirebaseRTC issues
Sort by recently updated
recently updated
newest added

I was trying `firebase serve -o 0.0.0.0` in hope it could be accessed using other devices via local IP. The web page did appear but `navigator.mediaDevices` is undefined when using...

I am following the documentation - https://webrtc.org/getting-started/firebase-rtc-codelab#9_conclusion I have done all things which were mentioned in the above documentation. As per the given command- `firebase serve --only hosting`, I am...

the error brings me to this function: (when clicking on "cameraBtn" Button) const stream = await navigator.mediaDevices.getUserMedia( {video: true, audio: true}); I tried on android browser and works fine, but...

I down load the source code and try to share screen on meeting, but I only see my screen, other user can not see. this is code: when user click...

How can i add rooms so that users can join each other threw rooms apearing on the site , Sorry for my english .

Hello guys please I need a little hep here please. From the documentation, at point number 8, it says locate the function **collectIceCandidates** in the file public/app.js I have searched...

https://github.com/webrtc/FirebaseRTC/blob/c3d64e6ac1efe6161c6a04cef98a1a3727ecd3f4/public/app.js#L193

the sample code ``` roomRef.onSnapshot(async snapshot -> { console.log('Got updated room:', snapshot.data()); const data = snapshot.data(); if (!peerConnection.currentRemoteDescription && data.answer) { console.log('Set remote description: ', data.answer); const answer = new...

Jeez, where to start. The easy thing is fixing the obvious syntax error of -> to =>. But the walk-through and the code are totally out of sync. The create...