/
ivan
/
ModMas
Обзор
Документация
Войти
/
ivan
/
ModMas
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
ModuleMaster/mm/c.html
32 строки
926 B
i.krivokon
Initial commit
13 мар 2026, 13:49
13 мар 2026, 13:49
00d9fb6
Код
Авторство
О чём код?
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> </head> <body> <input type="file" accept="image/*" capture="camera" /> <hr/> <video id="Video" autoplay="autoplay" audio="muted" width="100%" height="100%"> </video> <script type="text/javascript"> if (navigator.getUserMedia) { var video = document.getElementById('Video'); video.src = null; navigator.getUserMedia('video', successCallback, errorCallback); //if everything if good then set the source of the video element to the mediastream function successCallback(stream) { video.src = stream; } //If everything isn't ok then say so function errorCallback(error) { alert("An error occurred: [CODE " + error.code + "]"); } } else { //show no support for getUserMedia alert("Native camera is not supported in this browser!"); } </script> </body> </html>