samples icon indicating copy to clipboard operation
samples copied to clipboard

Missing demo: sharing a video from a local file.

Open Zibri opened this issue 1 year ago • 2 comments

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.

Zibri avatar May 05 '24 14:05 Zibri

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);

sysescool avatar Jul 16 '24 02:07 sysescool

If assign me, I will add it.

sysescool avatar Jul 16 '24 02:07 sysescool