samples
samples copied to clipboard
Missing demo: sharing a video from a local file.
Please add and example on the website on how to share a local video file (webm). Other file types could be also streamed by using ffmpeg.asm.js...
It would be great to have a simple example.
Hi, @Zibri. Read this: https://developer.mozilla.org/en-US/docs/Web/API/MediaDevices/getDisplayMedia
Just use it like navigator.mediaDevices.getUserMedia.
navigator.mediaDevices.getUserMedia(constraints)
.then(getMediaStream)
.catch(handleError);
navigator.mediaDevices.getDisplayMedia(constraints)
.then(getDeskStream)
.catch(handleError);
If assign me, I will add it.