uppload
uppload copied to clipboard
Record Audio and Video
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/