録画ボタンをクリックするとウェブカメラが起動しますが、停止ボタンをクリックしても何も起こりません
私は今これを持っていますが、それが録音されているかどうかわかりませんか? 録画されているかどうかを確認する方法と、録画したビデオを再表示するにはどうすればよいですか?
<html>
<input type="button" value="Record" onclick="record(this)">
<input type="button" value="Stop" onclick="stop(this)">
<video autoplay></video>
<script language="javascript" type="text/javascript">
var record = function(button) {
navigator.getUserMedia = navigator.webkitGetUserMedia
|| navigator.getUserMedia;
window.URL = window.URL || window.webkitURL;
navigator.getUserMedia({audio: true, video: true}, function(stream) {
var video = document.querySelector('video');
video.src = window.URL.createObjectURL(stream);
stream.record();
//setTimeout(stop, 10);
}, function(e) {
console.log(e);
//setTimeout(10);
});
};
var stop = function(button){
//alert('Checking');
stream.stop();
stream.getRecordedData(function(blob) {
alert('Checking');
//upload blobusing XHR2.
});
};
</script>
</html>