当前位置:网站首页>videojs转canvas暂停、播放、切换视频
videojs转canvas暂停、播放、切换视频
2022-07-26 10:24:00 【唐策】
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
#video{
/*display: none;*/
}
</style>
</head>
<body>
<div class="play">播放</div>
<div class="pause">暂停</div>
<div class="playPause">播放或暂停视频</div>
<div class="change-src">切换视频</div>
<video id="video" loop width='300' autoplay webkit-playsinline="true" src='http://www.w3school.com.cn/example/html5/mov_bbb.mp4'></video>
<script src="https://cdn.bootcss.com/jquery/2.1.4/jquery.min.js"></script>
<script type="text/javascript">
/*
* video视频转成canvas(兼容至IE8+)
* Author: Zijor Created On: 2017-06-25
*
* 使用方法:
* var videoCanvas = new VideoToCanvas(videoDom);
*
* 对象的属性:
* 暂无。
*
* 对象的方法:
* play 播放视频
* pause 暂停视频
* playPause 播放或暂停视频
* change(src) 切换视频。参数src为切换的视频地址
*/
var VideoToCanvas = (function(window, document) {
function VideoToCanvas(videoElement) {
if(!videoElement) {return;}
var canvas = document.createElement('canvas');
canvas.width = videoElement.offsetWidth;
canvas.height = videoElement.offsetHeight;
ctx = canvas.getContext('2d');
var newVideo = videoElement.cloneNode(false);
var timer = null;
var requestAnimationFrame = window.requestAnimationFrame || window.mozRequestAnimationFrame ||
window.webkitRequestAnimationFrame || window.msRequestAnimationFrame;
var cancelAnimationFrame = window.cancelAnimationFrame || window.mozCancelAnimationFrame;
function drawCanvas() {
ctx.drawImage(newVideo, 0, 0, canvas.width, canvas.height);
timer = requestAnimationFrame(drawCanvas);
}
function stopDrawing() {
cancelAnimationFrame(timer);
}
newVideo.addEventListener('play', function() {
drawCanvas();
},false);
newVideo.addEventListener('pause', stopDrawing, false);
newVideo.addEventListener('ended', stopDrawing, false);
videoElement.parentNode.replaceChild(canvas, video);
this.play = function() {
newVideo.play();
};
this.pause = function() {
newVideo.pause();
};
this.playPause = function() {
if(newVideo.paused) {
this.play();
} else {
this.pause();
}
};
this.change = function(src) {
if(!src) {return;}
newVideo.src = src;
};
this.drawFrame = drawCanvas;
}
return VideoToCanvas;
})(window, document);
var video = document.getElementById('video');
var videoCanvas = new VideoToCanvas(video);
$('.play').on('click',function(){
videoCanvas.play();
});
$('.pause').on('click',function(){
videoCanvas.pause();
})
$('.playPause').on('click',function(){
videoCanvas.playPause();
})
$('.change-src').on('click',function(){
videoCanvas.change('p4-video1.mp4');
})
</script>
</body>
</html>
边栏推荐
- Modelsim installation tutorial (application not installed)
- Learning about tensorflow (I)
- 简单化构造函数的继承方法(二)- ES6中的class继承
- INSTALL_ FAILED_ SHARED_ USER_ Incompatible error resolution
- Basic usage of protobuf
- Study notes of the first week of sophomore year
- 数通基础-Telnet远程管理设备
- Rocky basic exercise -shell script 2
- Interview shock 68: why does TCP need three handshakes?
- [Halcon vision] software programming ideas
猜你喜欢
数通基础-二层交换原理
Okaleido生态核心权益OKA,尽在聚变Mining模式
Okaleido ecological core equity Oka, all in fusion mining mode
Map key not configured and uniapp routing configuration and jump are reported by the uniapp < map >< /map > component
Uniapp error 7 < Map >: marker ID should be a number
INSTALL_ FAILED_ SHARED_ USER_ Incompatible error resolution
The difference between equals and = =
Vs Code configures go locale and successfully installs go related plug-ins in vscode problem: Tools failed to install
抓包工具fiddler和wireshark对比
The charm of SQL optimization! From 30248s to 0.001s
随机推荐
Data communication foundation - layer 2 switching principle
Redis realizes distributed lock and gets a watchdog
C language course design Tetris (Part 2)
【Halcon视觉】图像的傅里叶变换
[award-winning question] ask Judea pearl, the Turing prize winner and the father of Bayesian networks
[C language] named type and anonymous type
Okaleido ecological core equity Oka, all in fusion mining mode
AirTest
函数模板与同名的非模板函数不可以重载(重载的定义)
【杂谈】Error loading psycopg2 module :No module named psycopg2
30 minutes to thoroughly understand the synchronized lock upgrade process
Some descriptions of DS V2 push down in spark
Rocky basic exercise -shell script 2
Wechat official account release reminder (wechat official account template message interface)
[Halcon vision] array
Kaptcha image verification code integration
【Halcon视觉】极坐标变换
How to use Gmail to pick up / send mail on Foxmail
Employee information management system based on Web
SQL Server 2008 R2 installation problems