如何利用HTML5制作一个好看的视频播放器

这篇文章将为大家详细讲解有关如何利用HTML5制作一个好看的视频播放器,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。

创新互联是专业的奉节网站建设公司,奉节接单;提供成都网站设计、成都网站建设,网页设计,网站设计,建网站,PHP网站建设等专业做网站服务;采用PHP框架,可快速的进行奉节网站开发网页制作和功能扩展;专业做搜索引擎喜爱的网站,专业的做网站团队,希望更多企业前来合作!

一、视频的格式

目前比较主流和使用比较的的视频格式主要有:avi、rmvb、wmv、mpeg4、ogg、webm。这些视频都是由视频、音频、编码格式三部分组成的。在HTML5中,根据浏览器的不同,目前拥有多套不同的编码器:

H.264(个人不看好):这个编码器是苹果系统包括苹果手机中的编码器,拥有专利的视频编码器。在编码及传输过程中的任何部分都可能需要收取专利费。因此Safari(苹果的浏览器)和Intenet Explorer支持该编码器,但是在开源已经成为大势的当下,还在浏览器中收取专利费,个人实在是不看好啊。

Theora:这是一个不受专利限制的编码格式,并且对所有等级的编码、传输以及回放免费的视频编码器。Chrome、Firefox以及Opera支持该编码器。

VP8:该视频编码器与Theora相似,但是其拥有者是Google公司,Google公司已经开源,因此不需要专利费。Chrome、Firefox以及Opera支持该编码器。

AAC:音频编码器,与H.264相同,该音频编码器拥有专利限制,Safari、Chrome和Internet Explorer支持该音频编码器。

MP3:也是一个专利技术,Safari、Chrome和Internet Explorer支持该音频编码器。

PCM:存储由模拟数字转换器编码的完整数据,在音频CD上存储数据的一种格式。是以中国无损编码器,它的文件大小一般是AAC和MP3文件的几倍,Safari、Firefox和Internet Explorer支持该音频编码器。

Vorbis:文件扩展名为.ogg,有时候也被称为Ogg Vorbis,该音频编码器不受专利保护,因此版权免费。支持的浏览器包括Chrome、Firefox和Opera.

主流浏览器和设备支持的视频和音频

如何利用HTML5制作一个好看的视频播放器

二、HTML5中的属性

在html5中可以使用

video标签中有很多属性,例如controls属性可以控制是否有控制台。

  
    浏览器不支持HTML5的视频播放功能  

从上面的视频格式中我们可以看到不同的浏览器支持不同的视频格式,这样我们可以采用标签指定多种格式的视频,默认情况下浏览器会自动启动下载文件来确定其类型。

  
      
      

三、制作视频播放器

index.html

  
  
  
Demo 1 | Custom HTML5 Video Controls with jQuery  
  
  
  
  
  
  
  
  
  
  
  
  
       

Custom HTML5 Video Controls with jQuery

           BACK TO ARTICLE »           Visit inWebson.com »       

       

  
                          

Demo 1

       

Custom HTML5 Video Controls

                                                        

Your browser does not support the video tag.

              This is HTML5 video with custom controls

                                                                                         

                                   /                                    

           

                                     

               

               Speed: 

               x1

               x3

               

               

                                                 

               

           

                  

       

  

                            
                   DEMO 1               
  • DEMO 2
  •            
           

                      
       © 2011 inWebson.com.      Design by Kenny Ooi.      Powered by HTML5 and      jQuery.  
     

style.css

/* video container */  
.videoContainer{  
    width:600px;  
    height:350px;  
    position:relative;  
    overflow:hidden;  
    background:#000;  
    color:#ccc;  
}  
  
/* video caption css */  
.caption{  
    display:none;  
    position:absolute;  
    top:0;  
    left:0;  
    width:100%;  
    padding:10px;  
    color:#ccc;  
    font-size:20px;  
    font-weight:bold;  
    box-sizing: border-box;  
    -ms-box-sizing: border-box;  
    -webkit-box-sizing: border-box;  
    -moz-box-sizing: border-box;  
    background: #1F1F1F; /* fallback */  
    background:-moz-linear-gradient(top,#242424 50%,#1F1F1F 50%,#171717 100%);  
    background:-webkit-linear-gradient(top,#242424 50%,#1F1F1F 50%,#171717 100%);  
    background:-o-linear-gradient(top,#242424 50%,#1F1F1F 50%,#171717 100%);  
}  
  
/*** VIDEO CONTROLS CSS ***/  
/* control holder */  
.control{  
    background:#333;  
    color:#ccc;  
    position:absolute;  
    bottom:0;  
    left:0;  
    width:100%;  
    z-index:5;  
    display:none;  
}  
/* control top part */  
.topControl{  
    height:11px;  
    border-bottom:1px solid #404040;  
    padding:1px 5px;  
    background:#1F1F1F; /* fallback */  
    background:-moz-linear-gradient(top,#242424 50%,#1F1F1F 50%,#171717 100%);  
    background:-webkit-linear-gradient(top,#242424 50%,#1F1F1F 50%,#171717 100%);  
    background:-o-linear-gradient(top,#242424 50%,#1F1F1F 50%,#171717 100%);  
}  
/* control bottom part */  
.btmControl{  
    clear:both;  
    background: #1F1F1F; /* fallback */  
    background:-moz-linear-gradient(top,#242424 50%,#1F1F1F 50%,#171717 100%);  
    background:-webkit-linear-gradient(top,#242424 50%,#1F1F1F 50%,#171717 100%);  
    background:-o-linear-gradient(top,#242424 50%,#1F1F1F 50%,#171717 100%);  
}  
.control p.btn {  
    float:left;  
    width:34px;  
    height:30px;  
    padding:0 5px;  
    border-right:1px solid #404040;  
    cursor:pointer;  
}  
.control p.text{  
    font-size:12px;  
    font-weight:bold;  
    line-height:30px;  
    text-align:center;  
    font-family:verdana;  
    width:20px;  
    border:none;  
    color:#777;  
}  
.control p.btnPlay{  
    background:url(control.png) no-repeat 0 0;  
    border-left:1px solid #404040;  
}  
.control p.paused{  
    background:url(control.png) no-repeat 0 -30px;  
}  
.control p.btnStop{  
    background:url(control.png) no-repeat 0 -60px;  
}  
.control p.spdText{  
    border:none;  
    font-size:14px;  
    line-height:30px;  
    font-style:italic;  
}  
.control p.selected{  
    font-size:15px;  
    color:#ccc;  
}  
.control p.sound{  
    background:url(control.png) no-repeat -88px -30px;  
    border:none;  
    float:right;  
}  
.control p.sound2{  
    background:url(control.png) no-repeat -88px -60px !important;  
}  
.control p.muted{  
    background:url(control.png) no-repeat -88px 0 !important;  
}  
.control p.btnFS{  
    background:url(control.png) no-repeat -44px 0;  
    float:right;  
}  
.control p.btnLight{  
    background:url(control.png) no-repeat -44px -60px;  
    border-left:1px solid #404040;  
    float:right;  
}  
.control p.lighton{  
    background:url(control.png) no-repeat -44px -30px !important;  
}  
  
/* PROGRESS BAR CSS */  
/* Progress bar */  
.progress {  
    width:85%;  
    height:10px;  
    position:relative;  
    float:left;  
    cursor:pointer;  
    background: #444; /* fallback */  
    background:-moz-linear-gradient(top,#666,#333);  
    background:-webkit-linear-gradient(top,#666,#333);  
    background:-o-linear-gradient(top,#666,#333);  
    box-shadow:0 2px 3px #333 inset;  
    -moz-box-shadow:0 2px 3px #333 inset;  
    -webkit-box-shadow:0 2px 3px #333 inset;  
    border-radius:10px;  
    -moz-border-radius:10px;  
    -webkit-border-radius:10px;  
}  
.progress span {  
    height:100%;  
    position:absolute;  
    top:0;  
    left:0;  
    display:block;  
    border-radius:10px;  
    -moz-border-radius:10px;  
    -webkit-border-radius:10px;  
}  
.timeBar{  
    z-index:10;  
    width:0;  
    background: #3FB7FC; /* fallback */  
    background:-moz-linear-gradient(top,#A0DCFF 50%,#3FB7FC 50%,#16A9FF 100%);  
    background:-webkit-linear-gradient(top,#A0DCFF 50%,#3FB7FC 50%,#16A9FF 100%);  
    background:-o-linear-gradient(top,#A0DCFF 50%,#3FB7FC 50%,#16A9FF 100%);  
    box-shadow:0 0 1px #fff;  
    -moz-box-shadow:0 0 1px #fff;  
    -webkit-box-shadow:0 0 1px #fff;  
}  
.bufferBar{  
    z-index:5;  
    width:0;  
    background: #777;  
    background:-moz-linear-gradient(top,#999,#666);  
    background:-webkit-linear-gradient(top,#999,#666);  
    background:-o-linear-gradient(top,#999,#666);  
    box-shadow:2px 0 5px #333;  
    -moz-box-shadow:2px 0 5px #333;  
    -webkit-box-shadow:2px 0 5px #333;  
}  
/* time and duration */  
.time{  
    width:15%;  
    float:right;  
    text-align:center;  
    font-size:11px;  
    line-height:12px;  
}  
  
/* VOLUME BAR CSS */  
/* volume bar */  
.volume{  
    position:relative;  
    cursor:pointer;  
    width:70px;  
    height:10px;  
    float:right;  
    margin-top:10px;  
    margin-right:10px;  
}  
.volumeBar{  
    display:block;  
    height:100%;  
    position:absolute;  
    top:0;  
    left:0;  
    background-color:#eee;  
    z-index:10;  
}  
  
/* OTHERS CSS */  
/* video screen cover */  
.loading, #init{  
    position:absolute;  
    top:0;  
    left:0;  
    width:100%;  
    height:100%;  
    background:url(loading.gif) no-repeat 50% 50%;  
    z-index:2;  
    display:none;  
}  
#init{  
    background:url(bigplay.png) no-repeat 50% 50% !important;  
    cursor:pointer;  
}

video.js

$(document).ready(function(){  
    //INITIALIZE  
    var video = $('#myVideo');  
      
    //remove default control when JS loaded  
    video[0].removeAttribute("controls");  
    $('.control').show().css({'bottom':-45});  
    $('.loading').fadeIn(500);  
    $('.caption').fadeIn(500);  
   
    //before everything get started  
    video.on('loadedmetadata', function() {  
        $('.caption').animate({'top':-45},300);  
              
        //set video properties  
        $('.current').text(timeFormat(0));  
        $('.duration').text(timeFormat(video[0].duration));  
        updateVolume(0, 0.7);  
              
        //start to get video buffering data   
        setTimeout(startBuffer, 150);  
              
        //bind video events  
        $('.videoContainer')  
        .append('

')           .hover(function() {               $('.control').stop().animate({'bottom':0}, 500);               $('.caption').stop().animate({'top':0}, 500);           }, function() {               if(!volumeDrag && !timeDrag){                   $('.control').stop().animate({'bottom':-45}, 500);                   $('.caption').stop().animate({'top':-45}, 500);               }           })           .on('click', function() {               $('#init').remove();               $('.btnPlay').addClass('paused');               $(this).unbind('click');               video[0].play();           });           $('#init').fadeIn(200);       });              //display video buffering bar       var startBuffer = function() {           var currentBuffer = video[0].buffered.end(0);           var maxduration = video[0].duration;           var perc = 100 * currentBuffer / maxduration;           $('.bufferBar').css('width',perc+'%');                          if(currentBuffer < maxduration) {               setTimeout(startBuffer, 500);           }       };                //display current video play time       video.on('timeupdate', function() {           var currentPos = video[0].currentTime;           var maxduration = video[0].duration;           var perc = 100 * currentPos / maxduration;           $('.timeBar').css('width',perc+'%');               $('.current').text(timeFormat(currentPos));        });              //CONTROLS EVENTS       //video screen and play button clicked       video.on('click', function() { playpause(); } );       $('.btnPlay').on('click', function() { playpause(); } );       var playpause = function() {           if(video[0].paused || video[0].ended) {               $('.btnPlay').addClass('paused');               video[0].play();           }           else {               $('.btnPlay').removeClass('paused');               video[0].pause();           }       };              //speed text clicked       $('.btnx1').on('click', function() { fastfowrd(this, 1); });       $('.btnx3').on('click', function() { fastfowrd(this, 3); });       var fastfowrd = function(obj, spd) {           $('.text').removeClass('selected');           $(obj).addClass('selected');           video[0].playbackRate = spd;           video[0].play();       };              //stop button clicked       $('.btnStop').on('click', function() {           $('.btnPlay').removeClass('paused');           updatebar($('.progress').offset().left);           video[0].pause();       });              //fullscreen button clicked       $('.btnFS').on('click', function() {           if($.isFunction(video[0].webkitEnterFullscreen)) {               video[0].webkitEnterFullscreen();           }              else if ($.isFunction(video[0].mozRequestFullScreen)) {               video[0].mozRequestFullScreen();           }           else {               alert('Your browsers doesn\'t support fullscreen');           }       });              //light bulb button clicked       $('.btnLight').click(function() {           $(this).toggleClass('lighton');                      //if lightoff, create an overlay           if(!$(this).hasClass('lighton')) {               $('body').append('

');               $('.overlay').css({                   'position':'absolute',                   'width':100+'%',                   'height':$(document).height(),                   'background':'#000',                   'opacity':0.9,                   'top':0,                   'left':0,                   'z-index':999               });               $('.videoContainer').css({                   'z-index':1000               });           }           //if lighton, remove overlay           else {               $('.overlay').remove();           }       });              //sound button clicked       $('.sound').click(function() {           video[0].muted = !video[0].muted;           $(this).toggleClass('muted');           if(video[0].muted) {               $('.volumeBar').css('width',0);           }           else{               $('.volumeBar').css('width', video[0].volume*100+'%');           }       });              //VIDEO EVENTS       //video canplay event       video.on('canplay', function() {           $('.loading').fadeOut(100);       });              //video canplaythrough event       //solve Chrome cache issue       var completeloaded = false;       video.on('canplaythrough', function() {           completeloaded = true;       });              //video ended event       video.on('ended', function() {           $('.btnPlay').removeClass('paused');           video[0].pause();       });          //video seeking event       video.on('seeking', function() {           //if video fully loaded, ignore loading screen           if(!completeloaded) {                $('.loading').fadeIn(200);           }          });              //video seeked event       video.on('seeked', function() { });              //video waiting for more data event       video.on('waiting', function() {           $('.loading').fadeIn(200);       });              //VIDEO PROGRESS BAR       //when video timebar clicked       var timeDrag = false;   /* check for drag event */       $('.progress').on('mousedown', function(e) {           timeDrag = true;           updatebar(e.pageX);       });       $(document).on('mouseup', function(e) {           if(timeDrag) {               timeDrag = false;               updatebar(e.pageX);           }       });       $(document).on('mousemove', function(e) {           if(timeDrag) {               updatebar(e.pageX);           }       });       var updatebar = function(x) {           var progress = $('.progress');                      //calculate drag position           //and update video currenttime           //as well as progress bar           var maxduration = video[0].duration;           var position = x - progress.offset().left;           var percentage = 100 * position / progress.width();           if(percentage > 100) {               percentage = 100;           }           if(percentage < 0) {               percentage = 0;           }           $('.timeBar').css('width',percentage+'%');             video[0].currentTime = maxduration * percentage / 100;       };          //VOLUME BAR       //volume bar event       var volumeDrag = false;       $('.volume').on('mousedown', function(e) {           volumeDrag = true;           video[0].muted = false;           $('.sound').removeClass('muted');           updateVolume(e.pageX);       });       $(document).on('mouseup', function(e) {           if(volumeDrag) {               volumeDrag = false;               updateVolume(e.pageX);           }       });       $(document).on('mousemove', function(e) {           if(volumeDrag) {               updateVolume(e.pageX);           }       });       var updateVolume = function(x, vol) {           var volume = $('.volume');           var percentage;           //if only volume have specificed           //then direct update volume           if(vol) {               percentage = vol * 100;           }           else {               var position = x - volume.offset().left;               percentage = 100 * position / volume.width();           }                      if(percentage > 100) {               percentage = 100;           }           if(percentage < 0) {               percentage = 0;           }                      //update volume bar and video volume           $('.volumeBar').css('width',percentage+'%');               video[0].volume = percentage / 100;                      //change sound icon based on volume           if(video[0].volume == 0){               $('.sound').removeClass('sound2').addClass('muted');           }           else if(video[0].volume > 0.5){               $('.sound').removeClass('muted').addClass('sound2');           }           else{               $('.sound').removeClass('muted').removeClass('sound2');           }                  };          //Time format converter - 00:00       var timeFormat = function(seconds){           var m = Math.floor(seconds/60)<10 ? "0"+Math.floor(seconds/60) : Math.floor(seconds/60);       var s = Math.floor(seconds-(m*60))<10 ? "0"+Math.floor(seconds-(m*60)) :Math.floor(seconds-(m*60));           return m+":"+s;       };   });

关于“如何利用HTML5制作一个好看的视频播放器”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。


分享文章:如何利用HTML5制作一个好看的视频播放器
文章位置:http://lszwz.com/article/pdpcpd.html

其他资讯

售后响应及时

7×24小时客服热线

数据备份

更安全、更高效、更稳定

价格公道精准

项目经理精准报价不弄虚作假

合作无风险

重合同讲信誉,无效全额退款