How to automate a WebRTC video stream with Puppeteer & Browserless

Anderson Martínez
Anderson Martínez
/
June 10, 2022

Puppeteer is an amazing technology. It’s so robust, so complete, yet so flexible and easy to work with. And this flexibility and ease are not limited to the field of web scraping, as you can also automate plenty of stuff. Puppeteer’s robustness comes to the point that we’re even able to automate things that would normally be hardware-dependent, like camera and microphone in a WebRTC context. Let’s take a look at WebRTC video automation.

WebRTC and Browserless guide

WebRTC video automation – The vanilla way

Let’s first take a look into how to spoof WebRTC capabilities using a good ol’ vanilla Puppeteer setup. The capacity to do that actually comes from Chromium, but it is very specific with the file type it allows. Concretely, it will only allow a correctly encoded .y4m file or a .mjpeg. For this blog post, we are going to use .mjpeg, as it’s a way lighter format. In any case, ffmpeg is the best option to convert your video.

Once we have our video ready and correctly encoded, we will write our regular Puppeteer code, with the exception that we’re going to pass the --use-fake-device-for-media-stream, --use-fake-ui-for-media-stream, and --use-file-for-fake-video-capture launch flags. To test that everything is working, let’s use Mozilla’s WebRTC demo.


const puppeteer = require("puppeteer");

(async () => {
  try {
    let browser = await puppeteer.launch({
      headless: false,
      args: [
        `--use-fake-device-for-media-stream`,
        `--use-fake-ui-for-media-stream`,
        `--no-sandbox`,
        `--use-file-for-fake-video-capture=/your/full/path/to/the/video.mjpeg`,
      ],
    });
    const page = await browser.newPage();

    await page.goto(
      `https://yari-demos.prod.mdn.mozit.cloud/en-US/docs/Web/API/Media_Capture_and_Streams_API/Taking_still_photos/_sample_.demo.html`,
    );
    
    // Won't disconnect it, since we want to see it happening
  } catch (err) {
    console.error(err);
  }
})();

This should open a browser for you to see the replaced camera feed in all its glory:

How to automate a WebRTC video stream with Puppeteer & Browserless

Lading on the Dock

Start using Browserless web automation for FREE

As you can see, we need to have our video on disk so the browser can load it. If you’re using Browserless self-hosted, you will need to make sure to include it in the Docker image. Since our Dockerfile includes (almost) the entire project, it will suffice to add the video to the project. For this example, let’s include the video in ./media

Lading on the Dock

And then a regular docker build call


docker build -t brwlss-webrtc .

To load the video in our Browserless calls, we have 2 options: we either run the docker image with the default flags or add the flags to our connection string. Each, of course, has its advantages and its downsides.

Running the image with default flags

You can easily pass default Chrome launch args to the Docker image. The downside of this is that, unless you override them in the connection string, Chrome is always going to be launched loading the video feed.


docker run  -e "DEFAULT_LAUNCH_ARGS=[\"--use-fake-ui-for-media-stream\", \"--use-fake-device-for-media-stream\", \"--use-file-for-fake-video-capture=/usr/src/app/media/video.mjpeg\"]" -p 3000:3000 brwlss-webrtc

That /usr/src/app path corresponds with the app dir on the docker image, so if you change the app home on the Dockerfile, make sure to make the correspondent change. After that, we can start making connections and API calls. Let’s do a quick test with the /screenshot API:


curl --request POST \
  --url 'http://localhost:3000/screenshot' \
  --header 'Cache-Control: no-cache' \
  --header 'Content-Type: application/json' \
  --data '{
  "url": "https://yari-demos.prod.mdn.mozit.cloud/en-US/docs/Web/API/Media_Capture_and_Streams_API/Taking_still_photos/_sample_.demo.html",
  "gotoOptions": {
    "waitUntil": "networkidle2"
  }
}'

And it should render a screenshot like this one:

Screenshot render

Adding connection-specific flags

If for whatever reason you can’t add the default launch flags, you can always add them on your request. The main downside of this is that you end up with a very meaty connection URL, and you risk exposing the file name.


curl --request POST \
  --url 'http://localhost:3000/screenshot?headless=false&--use-fake-ui-for-media-stream=&--use-fake-device-for-media-stream=&--use-file-for-fake-video-capture=%2Fusr%2Fsrc%2Fapp%2Fmedia%2Fvideo.mjpeg' \
  --header 'Cache-Control: no-cache' \
  --header 'Content-Type: application/json' \
  --data '{
  "url": "https://yari-demos.prod.mdn.mozit.cloud/en-US/docs/Web/API/Media_Capture_and_Streams_API/Taking_still_photos/_sample_.demo.html",
  "waitFor": 2500
}'

The resulting screenshot:

How to automate a WebRTC video stream with Puppeteer & Browserless

Dynamic WebRTC video feed

Start using Browserless web automation for FREE

You can take advantage of the /workspace API — which is also available on dedicated accounts — to upload your video feed while the Docker is up and running. For this, we need to upload a video to our workspace:


curl --request POST \
  --url 'https://chrome.browserless.io/workspace?token=MY_API_TOKEN' \
  --header 'content-type: multipart/form-data; boundary=---011000010111000001101001' \
  --form 'file=@/path/to/the/video.mjpeg'

Once uploaded, we’re going to get a JSON back which contains a very useful “path” field. Now we can make our calls, making sure we’re passing the path the value we got from the upload:


curl --request POST \
  --url 'https://chrome.browserless.io/screenshot?token=MY_API_TOKEN&headless=false&--use-fake-ui-for-media-stream=&--use-fake-device-for-media-stream=&--use-file-for-fake-video-capture=%2Fusr%2Fsrc%2Fapp%2Fworkspace%2Fvideo.mjpeg' \
  --header 'Cache-Control: no-cache' \
  --header 'Content-Type: application/json' \
  --data '{
  "url": "https://yari-demos.prod.mdn.mozit.cloud/en-US/docs/Web/API/Media_Capture_and_Streams_API/Taking_still_photos/_sample_.demo.html",
  "waitFor": 2500
}'

This is going to give us something like this:

How to automate a WebRTC video stream with Puppeteer & Browserless

You’ll need to be careful with the files on /workspace though, since, by default, those get automatically deleted 7 days after being uploaded for dedicated accounts. If you are self-hosting, they get deleted after 30 days, but you can override this behavior using flags.

As you can see, setting a feed for WebRTC with Puppeteer and Browserless is pretty straightforward. If you have any cool implementations of this you may want to share, you can always join our Slack community.

If you like our content, you can check out how our clients use Browserless for different use cases:

Happy hacking!

Share this article

Ready to try the benefits of Browserless?

Sign Up