Welcome to part-7 of the series. We will now start showing the local web-cam video. So, open your video.js file and update the highlighted parts. Here, we are using useRef as we want to attach the video to the div.
We are using a inbuilt createLocalVideoTrack() from twilio and using it to attach the video of web-cam to the div localVidRef
Now, again go to http://localhost:8000/ and login with any username.
After that allow the browser to use Camera and Microphone.
And you will be able to see yourself in the video.
Now, it’s time to attach the remote participants. So, update the video.js file as below. We are adding another ref remoteVidRef to a div.
After that taking the result and looping through each participant. Each participant can have one or more track(means camera), so we are looping through them also. And then appending it to remoteVidRef
And it seems to working, as we are able to see two videos now.
It’s time to deploy in netlify, so that i can test from two devices. So, open your netlify dashboard and click on New site from Git button.
Next, click on github as my code is in https://github.com/nabendu82/SimpleVideoApp
After that i need to search the repo, as i have a lot of them. After getting the repo, we need to click on it.
After that keep all the default setting and click on Deploy Site button.
In the next screen, click on Site settings button quickly.
Next, scroll a bit and click on Change site name button.
It will open a pop-up, in which you can change the random site name to something meaningful
And finally our site is deployed.
Now, the app is deployed and i logged in from two machines but i was not able to see both videos. As, per the youtube video i am following we missed a part.
Need to add the updated part in video.js file.
I pushing the code, which automatically deployed to netlify. I am able to logging from multiple devices and see the videos.
This completes part-7 of the series. There are some CSS and other changes remaining, before submitting my app for hackathon. See you soon.
You can also find the code for this project in this github link.
Top comments (0)