In my company, i had the task to build a website, where users can record a video, that will be send to the server, some stuff will be done and the user finally gets an email with a link to a microsite with that video embedded.
After some research, i came to the conclusion, that it is impossible, at least at the moment, to capture a video with getUserMedia on iPad.
So the solution is quite simple, i just use a input-element with accept="video/*;capture=camcorder".
<input type="file" accept="video/*;capture=camcorder">
So far, so good. As I've read on this page, that it is also possible to capture a video from webcam with this technique, i thought that it is an adequat cross-browser solution.
But after some testing, i can just select an already recorded video on desktop browsers.
Did I misinterprete that article? Or am I just doing it wrong?
Cheers, Mohammer
<input accept="video/*
has never been implemented by desktop browsers/OS. See my answer for details & solutions @Mohammer – Octavian Naicu