Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Mediarecorder support/pollyfil for Safari

I wanted to record Laptop's webcam video stream on safari browser.
I am accessing the stream on browser by using MediaDevices.getUserMedia().
It seems MediaRecorder interface will do the trick (https://developer.mozilla.org/en-US/docs/Web/API/MediaRecorder).

However this isnt supported by Safari. Any recommendation on how i should record the webcam stream and build a video recorder that runs on Safari.

like image 265
Siddharth Jain Avatar asked Apr 19 '17 23:04

Siddharth Jain


People also ask

Does Safari support MediaRecorder?

MediaRecorder API is Not Supported on Safari 13, which means that any user who'd be accessing your page through Safari 13 can see it perfectly.

What is MediaRecorder?

The MediaRecorder() constructor creates a new MediaRecorder object that will record a specified MediaStream . The object can optionally be configured to record using a specific media container (file type), and, further, can specify the exact codec and codec configuration(s) to use by specifying the codecs parameter.

What is MediaRecorder API?

The MediaRecorder interface of the MediaStream Recording API provides functionality to easily record media. It is created using the MediaRecorder() constructor. EventTarget MediaRecorder.


1 Answers

It seems there is nothing available for Safari at the moment.

like image 111
Siddharth Jain Avatar answered Oct 20 '22 19:10

Siddharth Jain