Level Up Coding

Coding tutorials and news. The developer homepage gitconnected.com && skilled.dev && levelup.dev

Follow publication

Member-only story

Data Stream from your Webcam and Microphone: Video Call with WebRTC Step 1

Heloise Bahadiroglu
Level Up Coding
Published in
4 min readMar 17, 2020

Real time communication between browsers has been made possible in 2011 by WebRTC. This API enables you to create a P2P connection between two users and allow them to share data, for example to communicate over a video chat and share their screen. In this series of articles, we are going to create such a video chat. You can check the next articles:

A first step to create a video chat is to have access to the user’s devices, like webcam and microphone, and their stream of data. In this first article, we are going to access our devices and display the video (with audio) in our browser. The end result will look like this:

Access User Audio and Video Stream

We first need to have access to the user’s webcam and microphone. The navigator has access to the media devices through the MediaDevices interface.

window.navigator.mediaDevices

We can get a list of all the devices the browser has access to by calling in the console:

const devices = await window.navigator
.mediaDevices
.enumerateDevices();

In my browser, I get an array of five devices, one video input and five audio input. But we are not interested in the devices themselves, we want to get the data stream from them.

Media content, like audio and video, are represented by the MediaStream interface. To get access to the data stream, you need to call the getUserMedia function on the mediaDevices object. We need to give the types of media we want as a parameter, here audio and video. We can give a bunch of constraints as parameter, not only the media type, but also the size of the video we want, the orientation, … We keep it simple here:

const stream = await window.navigator.mediaDevices.getUserMedia(
{
video: true…

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Written by Heloise Bahadiroglu

Freelance Software Engineer. I write about web and cloud technologies. AWS and Azure certified.

Responses (2)

Write a response