Is it possible to convert MediaStream to video using html5

I am trying to capture a 5 minute webcam video on a website.

I am currently using an html5 video element to display the getUserMedia result stream.

Is there anyway to get the content of the stream after the recording has finished?

I have a MediaStream object left and I assume it contains a video, can I somehow access it?

+3


source to share


1 answer


You can encode the video as a data URI and add a download link.



http://appcropolis.com/blog/web-technology/using-html5-canvas-to-capture-frames-from-a-video/ http://www.iandevlin.com/blog/2012/09/html5/ html5-media-and-data-uri

0


source







All Articles