简单教程
提交运行
代码编辑器:
<p>要使用的视频:</p> <video id="video1" controls width="270" autoplay> <source src="/static/i/html/html_video_2.mp4" type='video/mp4'> <source src="/static/i/html/html_video_2.ogg" type='video/ogg'> <source src="/static/i/html/html_video_2.webm" type='video/webm'> </video> <p>画布 (代码在每20毫秒绘制当前的视频帧):</p> <canvas id="myCanvas" width="270" height="135" style="border:1px solid #d3d3d3;"> 您的浏览器不支持 HTML5 canvas 标签。 </canvas> <script> var v=document.getElementById("video1"); var c=document.getElementById("myCanvas"); ctx=c.getContext('2d'); v.addEventListener('play', function() { var i=window.setInterval(function() {ctx.drawImage(v,5,5,260,125)},20); },false); v.addEventListener('pause',function() { window.clearInterval(i); },false); v.addEventListener('ended',function() { clearInterval(i); },false); </script>
运行结果: