Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正计划使用 HTML5 和 PHP 建立一个(家庭友好型)网络摄像头托管服务。首先,我需要设置拍摄照片的网页。
我正在寻找一个使用 HTML5 连接到网络摄像头然后可以每分钟自动拍照的系统。然后我需要它来上传照片并使用 PHP 将数据发送到 MySQL 数据库。
有谁知道我在哪里可以找到一种方法来做到这一点?
如果没有办法做到这一点,有没有人知道可以做到这一点的更安全的替代方案?
应该可以使用 navigator.getUserMedia 和 navigator.mozGetUserMedia 之类的 html5 API,它还应该可以基于画布图像生成数据(base64_encoded)字符串,您可以通过 AJAX 或 FILE API 将其发送到 PHP 脚本
html5rocks 有很好的例子。