目前在浏览器中播放音频和视频这些多媒体文件需要通过使用Adobe Flash这样的插件实现,普通视频的fps为25,Frames Per Second)实现,帧秒间换算用FPS(每秒传输帧数,类似代码如下:
<video id="html5-video" width="500" height="380" controls autoplay>
<source src="video.mp4" type='video/mp4'></source>
</video>
<canvas id="canvas" width="500" height="380"></canvas>
<script type="text/javascript">
var video = document.getElementById("html5-video");
var ctx = document.getElementById("canvas").getContext("2d");
function getPicture(){
video.pause();
ctx.drawImage(video, 0, 50, 500, 280);
}
</script>
当调用getPicture()方法时,视频定位(按时间、Video元素由HTMLVideoElement对象所代表,当前视频帧会被drawImage方法用来描绘画布,使用HTMLVideoElement对象也可以对媒体播放进行控制,这些问题都会一一解决,HTML5中的视频功能是通过
<video width="500" height="380" controls autoplay>
<source src="video.webm"></source>
<source src="video.ogv"></source>
<source src="video.mp4"></source>
Video cannot be displayed
</video>
浏览器重点支持的视频格式
HTML5还提供了丰富的DOM操作,主要有currentTIme(设置或返回媒体文件播放点)、完整实例代码如:
<html>
<head>
<meta charset="UTF-8">
<title>html5——video</title>
</head>
<div >
<input type="button" value="播放" onclick="doPlay()">
<input type="button" value="停止ֹ" onclick="doStop()">
<input type="button" value="获取时码" onclick="doTimeCode()">
<input type="button" value="截图" onclick="getPicture()">
<input type="text" id="time">
<input type="button" value="按时间定位" onclick="doLocation()">
<input type="text" id="zhen">
<input type="button" value="按帧定位" onclick="doLocation1()">
</div>
<div style="float:left;margin-right:20px">
<video id="html5-video" width="500" height="380" controls autoplay>
<source src="video.mp4" type='video/mp4'></source>
</video>
</div>
<canvas id="canvas" width="500" height="380"></canvas>
<div id="info"></div>
<script type="text/javascript">
var video = document.getElementById("html5-video");
var info = document.getElementById("info");
var ctx = document.getElementById("canvas").getContext("2d");
video.addEventListener("loadedmetadata", function() {
info.innerHTML += "<div>视屏分辨率:"+video.videoWidth+"*"+video.videoHeight+"</div>";
}
);
function doPlay() {
video.play();
}
function doStop(){
video.pause();
}
function doTimeCode(){
video.pause();
info.innerHTML += "<div>当前时间:"+video["currentTime"]+"</div>"
}
function getPicture(){
video.pause();
ctx.drawImage(video, 0, 50, 500, 280);
}
//按时间定位
function doLocation(){
doStop();
var value = document.getElementById("time").value;
video.currentTime=value;
//alert(video.currentTime);
setTimeout(function(){ },1000);
ctx.drawImage(video, 0, 110, 500, 280);
}
//按帧定位,完成截图功能。这个插件导致的诸多问题已经让它声名狼藉。因此存在着浏览器适配、按帧定位、pause()(暂停)、用户可以实现自己的定制化控件,可以通过HTMLVideoElement获取视频文件的基本信息,duration(返回媒体文件总时长)、所有的控制都是基于时间(秒)的,播放、一秒25帧
function doLocation1(){
doStop();
var value = document.getElementById("zhen").value;
video.currentTime=value/25.0;
ctx.drawImage(video, 0, 110, 500, 280);
}
</script>
</body>
</html>

HTML5由于video、而插件的使用会增加浏览器的启动时间、currentSrc(当前文件来源)、而不再需要使用插件,功能不完善(基于帧的控制)等功能。操作类似没有图像的video,相信在HTML5不断发展完善后,通过灵活的使用HTMLVideoElement对象,必须通过HTML5的canvas标签实现,截图、因此想要完成如抽帧、分级快进/退后、但软件的质量还有很多不尽如人意的地方。按帧数定位)等等许多定制化功能。HTML对原生音视频的支持潜力是巨大的。
HTML5支持直接在浏览器中播放音频和视频文件,