5
ビデオからフレームをキャプチャし、HTML5を使用してキャンバスに描画しようとしましたが、以下のコードは機能しません。スタートボタンの上に私をクリックすると、キャンバスが黒ビデオからキャンバスへのHTML5描画画像
<video src="video2.mp4" autoplay="true" type="video/mp4" width="300" height="200" id="vid">
</video>
<canvas id="cvs"> </canvas>
<button onclick="start()">Start</button>
<script>
var video=document.getElementById("vid");
var cvs=document.getElementById("cvs");
function start(){
cvs.getContext("2d").drawImage(video, 0, 0, 300,200);
}
</script>