uppload icon indicating copy to clipboard operation
uppload copied to clipboard

Record Audio and Video

Open SuperPat45 opened this issue 5 years ago • 0 comments

Uppload allow to take a photo from the camera who is a fantastic feature.

Is your feature request related to a problem? Please describe.

In my project I need to record also Audio and Video files.

Describe the solution you'd like

On Chrome and Firefox browsers it can be done with the Media Recorder API:
https://developer.mozilla.org/en-US/docs/Web/API/MediaStream_Recording_API
With a fallback for iOS safari and old browsers using the capture attribute:

<input type="file" accept="video/*" capture="user">
<input type="file" accept="video/*" capture="environment">
<input type="file" accept="audio/*" capture>

Demo: https://addpipe.com/html-media-capture-demo/

SuperPat45 avatar Jul 10 '20 14:07 SuperPat45