HTML5 vedio常用的js操作
1、选择本地资源播放视频
html:
<input type="file" id="file" οnchange="setMediaFile()">
<video id="video1" autoplay="autoplay" controls="none" ></video>
js:
var myVid=document.getElementById("video1");
function setMediaFile() {
var file = document.getElementById('file').files[0];
if(!file){
alert("Please upload file.");
return false;
}
var url = (window.URL) ? window.URL.createObjectURL(file) : window.webkitURL.createObjectURL(file);
document.getElementById("video1").src = url;
}
2、设置,和获取当前视频播放的时间
利用currentTime来设置或获取当前时间
获取视频当前播放时间:myVid.currentTime
设置视频当前播放时间:myVid.currentTime="10"
3、监听