我尝试将视频帧复制到画布上。我在Android平板电脑上使用Chrome(v46)(v4.4.4)。
第一帧画好,但另一帧不是。
JS:
document.addEventListener('DOMContentLoaded',function() {
var canvas = document.getElementById('canvas');
var ctx = canvas.getContext('2d');
var video = document.getElementById('video');
video.addEventListener('timeupdate',function(){
ctx.drawImage(video,0,0);
},false);
},false);
HTML
<video id="video" autoplay controls muted preload>
<source src="http://video.webmfiles.org/big-buck-bunny_trailer.webm" type="video/webm" />
</video>
有什么想法吗?
答案 0 :(得分:0)
要了解的几件事情: