pbojinov
7/9/2015 - 6:30 PM

HTML5 Media Capture

HTML5 Media Capture

<!-- 

http://www.html5rocks.com/en/tutorials/getusermedia/intro/

Support:
- Android 3.0 browser - one of the first implementations. Check out this video to see it in action.
- Chrome for Android (0.16)
- Firefox Mobile 10.0
- iOS6 Safari and Chrome (partial support)
-->

<!DOCTYPE html>
<html>

<head>
    <title></title>
    <meta http-equiv="Content-type" content="text/html; charset=utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
</head>

<body>
    <p>CAMCORDER</p>
    <input type="file" accept="video/*;capture=camcorder">
</body>

</html>