您的位置:首页 > 运维架构 > 网站架构

如何使用jPlayer插件(jQuery)在您的网站上添加音频和视频

2020-08-05 00:53 169 查看

jPlayer video player. Today we continue jQuery lessons, and will talk about adding customizable player for audio or video files to our website. This new plugin jPlayer is pretty good: it allows play media files, pause, change volume, it even have all necessary controls (which you can see in any media player). Also it allow us to change all its styles (all styles of interface loceted in single css file). More, it support HTML5 and able to work quite in all possible browsers. Here are supported formats of media files: mp3, ogg, m4a, m4v, ogv, wav etc. So, lets start to create our own players?

jPlayer视频播放器。 今天,我们继续jQuery课程,并将讨论向我们的网站添加音频或视频文件的可自定义播放器。 这个新的插件jPlayer非常好:它允许播放媒体文件,暂停,更改音量,甚至还具有所有必要的控件(您可以在任何媒体播放器中看到)。 它还允许我们更改其所有样式(位于单个css文件中的所有界面样式)。 此外,它支持HTML5,并且能够在所有可能的浏览器中正常工作。 以下是媒体文件支持的格式:mp3,ogg,m4a,m4v,ogv,wav等。那么,让我们开始创建自己的播放器吗?

Here are sample and downloadable package:

以下是示例和可下载的软件包:

现场演示

[sociallocker]

[社交储物柜]

打包下载

[/sociallocker]

[/ sociallocker]

Ok, download the example files and lets start coding !

好的,下载示例文件并开始编码!

步骤1. HTML (Step 1. HTML)

As usual, we start with the HTML.

和往常一样,我们从HTML开始。

This is our main page code with all samples.

这是我们所有示例的主页代码。

index.html (index.html)

<link rel="stylesheet" href="css/jplayer.blue.monday.css" type="text/css" media="all" />
<link rel="stylesheet" href="css/main.css" type="text/css" media="all" />
<script src="js/jquery.min.js" type="text/javascript"></script>
<script src="js/jquery.jplayer.min.js" type="text/javascript"></script>
<script src="js/main.js" type="text/javascript"></script>
<div class="example">
<div>
<div class="players">
<h2>Audio player</h2>
<div class="jp-audio">
<div class="jp-type-single">
<div id="jquery_jplayer_1" class="jp-jplayer"></div>
<div id="jp_interface_1" class="jp-interface">
<ul class="jp-controls">
<li><a href="#" class="jp-play" tabindex="1">play</a></li>
<li><a href="#" class="jp-pause" tabindex="1">pause</a></li>
<li><a href="#" class="jp-stop" tabindex="1">stop</a></li>
<li><a href="#" class="jp-mute" tabindex="1">mute</a></li>
<li><a href="#" class="jp-unmute" tabindex="1">unmute</a></li>
</ul>
<div class="jp-progress">
<div class="jp-seek-bar">
<div class="jp-play-bar"></div>
</div>
</div>
<div class="jp-volume-bar">
<div class="jp-volume-bar-value"></div>
</div>
<div class="jp-current-time"></div>
<div class="jp-duration"></div>
</div>
<div id="jp_playlist_1" class="jp-playlist">
<ul>
<li>Audio track</li>
</ul>
</div>
</div>
</div>
</div>
<div class="players">
<h2>Video player</h2>
<div class="jp-video jp-video-270p">
<div class="jp-type-single">
<div id="jquery_jplayer_2" class="jp-jplayer"></div>
<div id="jp_interface_2" class="jp-interface">
<div class="jp-video-play"></div>
<ul class="jp-controls">
<li><a href="#" class="jp-play" tabindex="1">play</a></li>
<li><a href="#" class="jp-pause" tabindex="1">pause</a></li>
<li><a href="#" class="jp-stop" tabindex="1">stop</a></li>
<li><a href="#" class="jp-mute" tabindex="1">mute</a></li>
<li><a href="#" class="jp-unmute" tabindex="1">unmute</a></li>
</ul>
<div class="jp-progress">
<div class="jp-seek-bar">
<div class="jp-play-bar"></div>
</div>
</div>
<div class="jp-volume-bar">
<div class="jp-volume-bar-value"></div>
</div>
<div class="jp-current-time"></div>
<div class="jp-duration"></div>
</div>
<div id="jp_playlist_2" class="jp-playlist">
<ul>
<li>Tokyo weather</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<link rel="stylesheet" href="css/jplayer.blue.monday.css" type="text/css" media="all" />
<link rel="stylesheet" href="css/main.css" type="text/css" media="all" />
<script src="js/jquery.min.js" type="text/javascript"></script>
<script src="js/jquery.jplayer.min.js" type="text/javascript"></script>
<script src="js/main.js" type="text/javascript"></script>
<div class="example">
<div>
<div class="players">
<h2>Audio player</h2>
<div class="jp-audio">
<div class="jp-type-single">
<div id="jquery_jplayer_1" class="jp-jplayer"></div>
<div id="jp_interface_1" class="jp-interface">
<ul class="jp-controls">
<li><a href="#" class="jp-play" tabindex="1">play</a></li>
<li><a href="#" class="jp-pause" tabindex="1">pause</a></li>
<li><a href="#" class="jp-stop" tabindex="1">stop</a></li>
<li><a href="#" class="jp-mute" tabindex="1">mute</a></li>
<li><a href="#" class="jp-unmute" tabindex="1">unmute</a></li>
</ul>
<div class="jp-progress">
<div class="jp-seek-bar">
<div class="jp-play-bar"></div>
</div>
</div>
<div class="jp-volume-bar">
<div class="jp-volume-bar-value"></div>
</div>
<div class="jp-current-time"></div>
<div class="jp-duration"></div>
</div>
<div id="jp_playlist_1" class="jp-playlist">
<ul>
<li>Audio track</li>
</ul>
</div>
</div>
</div>
</div>
<div class="players">
<h2>Video player</h2>
<div class="jp-video jp-video-270p">
<div class="jp-type-single">
<div id="jquery_jplayer_2" class="jp-jplayer"></div>
<div id="jp_interface_2" class="jp-interface">
<div class="jp-video-play"></div>
<ul class="jp-controls">
<li><a href="#" class="jp-play" tabindex="1">play</a></li>
<li><a href="#" class="jp-pause" tabindex="1">pause</a></li>
<li><a href="#" class="jp-stop" tabindex="1">stop</a></li>
<li><a href="#" class="jp-mute" tabindex="1">mute</a></li>
<li><a href="#" class="jp-unmute" tabindex="1">unmute</a></li>
</ul>
<div class="jp-progress">
<div class="jp-seek-bar">
<div class="jp-play-bar"></div>
</div>
</div>
<div class="jp-volume-bar">
<div class="jp-volume-bar-value"></div>
</div>
<div class="jp-current-time"></div>
<div class="jp-duration"></div>
</div>
<div id="jp_playlist_2" class="jp-playlist">
<ul>
<li>Tokyo weather</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
[/code]

Here I draw 2 players – for audio and for video. Both have similar code.

我在这里画了2个播放器-音频和视频。 两者都有相似的代码。

步骤2. CSS (Step 2. CSS)

Here are used CSS styles.

这是使用CSS样式。

css / main.css (css/main.css)

body{background:#eee;font-family:Verdana, Helvetica, Arial, sans-serif;margin:0;padding:0}
.example{background:#FFF;width:1000px;height:500px;font-size:80%;border:1px #000 solid;margin:0.5em 10% 0.5em;padding:1em 2em 2em;-moz-border-radius:3px;-webkit-border-radius:3px}
.example .players{float:left;margin:10px}
body{background:#eee;font-family:Verdana, Helvetica, Arial, sans-serif;margin:0;padding:0}
.example{background:#FFF;width:1000px;height:500px;font-size:80%;border:1px #000 solid;margin:0.5em 10% 0.5em;padding:1em 2em 2em;-moz-border-radius:3px;-webkit-border-radius:3px}
.example .players{float:left;margin:10px}
[/code]

Other css files (with related images):

其他css文件(带有相关图像):

css / jplayer.blue.monday.css,css / jplayer.blue.monday.jpg,css / jplayer.blue.monday.video.play.png,css / jplayer.blue.monday.video.play.hover.png和css / pbar-ani.gif (css/jplayer.blue.monday.css, css/jplayer.blue.monday.jpg, css/jplayer.blue.monday.video.play.png, css/jplayer.blue.monday.video.play.hover.png and css/pbar-ani.gif)

no need to show here. It always available as a download package (all just because its just part of our jPlayer plugin)

无需在这里显示。 它始终可以作为下载包使用(全部只是因为它只是我们的jPlayer插件的一部分)

步骤3. JS (Step 3. JS)

Here are necessary JS files to our project.

这是我们项目的必要JS文件。

js / main.js (js/main.js)

$(document).ready(function(){
$("#jquery_jplayer_1").jPlayer({
ready: function () {
$(this).jPlayer("setMedia", {
mp3: "media/track.mp3",
}).jPlayer("play"); // auto play
},
ended: function (event) {
$(this).jPlayer("play");
},
swfPath: "swf",
supplied: "mp3"
})
.bind($.jPlayer.event.play, function() { // pause other instances of player when current one play
$(this).jPlayer("pauseOthers");
});
$("#jquery_jplayer_2").jPlayer({
ready: function () {
$(this).jPlayer("setMedia", {
m4v: "media/tokyo.m4v",
ogv: "media/tokyo.ogv",
poster: "media/poster.jpg"
});
},
ended: function (event) {
$("#jquery_jplayer_2").jPlayer("play", 0);
},
swfPath: "js",
supplied: "m4v, ogv",
cssSelectorAncestor: "#jp_interface_2"
})
.bind($.jPlayer.event.play, function() { // pause other instances of player when current one play
$(this).jPlayer("pauseOthers");
});
});
$(document).ready(function(){
$("#jquery_jplayer_1").jPlayer({
ready: function () {
$(this).jPlayer("setMedia", {
mp3: "media/track.mp3",
}).jPlayer("play"); // auto play
},
ended: function (event) {
$(this).jPlayer("play");
},
swfPath: "swf",
supplied: "mp3"
})
.bind($.jPlayer.event.play, function() { // pause other instances of player when current one play
$(this).jPlayer("pauseOthers");
});
$("#jquery_jplayer_2").jPlayer({
ready: function () {
$(this).jPlayer("setMedia", {
m4v: "media/tokyo.m4v",
ogv: "media/tokyo.ogv",
poster: "media/poster.jpg"
});
},
ended: function (event) {
$("#jquery_jplayer_2").jPlayer("play", 0);
},
swfPath: "js",
supplied: "m4v, ogv",
cssSelectorAncestor: "#jp_interface_2"
})
.bind($.jPlayer.event.play, function() { // pause other instances of player when current one play
$(this).jPlayer("pauseOthers");
});
});
[/code]

This is most interesting and important part of our lesson. Here are initializations of both players. Via ‘jPlayer’ function we starting initialization of our players. Via first method ‘setMedia’ we defining media which will play. You can check my code to understand format – how need to put it here. When media finished to play (‘ended’ event), player jump to begining ($("#jquery_jplayer_2").jPlayer("play", 0);). Second param – time. Param ‘swfPath’ – path to Jplayer.swf file. Param ‘supplied’ – defines formats supplied to player. This is most important details.

这是我们课程中最有趣也是最重要的部分。 这是两个播放器的初始化。 通过“ jPlayer”功能,我们开始播放器的初始化。 通过第一种方法“ setMedia”,我们定义将播放的媒体。 您可以检查我的代码以了解格式-如何将其放在此处。 当媒体播放完毕(“结束”事件)时,播放器跳到开头($(“#jquery_jplayer_2”)。jPlayer(“ play”,0);)。 第二个参数-时间。 参数'swfPath'-Jplayer.swf文件的路径。 “已提供”参数-定义提供给播放器的格式。 这是最重要的细节。

js / jquery.min.js和js / jquery.jplayer.min.js (js/jquery.min.js and js/jquery.jplayer.min.js)

This is common files – jQuery library with player plugin. No need to give full code of that file here. It always available in package

这是常见文件–带有播放器插件的jQuery库。 无需在此处提供该文件的完整代码。 始终以包装形式提供

步骤4. SWF (Step 4. SWF)

Single used flash swf file: (our main player)

单个使用过的Flash SWF文件:(我们的主播放器)

swf / Jplayer.swf (swf/Jplayer.swf)

Seems we quite finished. All media files I put to ‘media’ folder. This is our audio file – track.mp3, video files: tokyo.m4v + tokyo.ogv, and thumbnail (poster): poster.jpg

看来我们已经完成了。 我将所有媒体文件放入“ media”文件夹。 这是我们的音频文件– track.mp3,视频文件:tokyo.m4v + tokyo.ogv,以及缩略图(海报):poster.jpg

If you have strange behaviour and ogg files (oga, ogv, ogg) not working well, possible .htaccess file (in folder with media files) will help you: AddType audio/ogg .oga AddType video/ogg .ogv .ogg

如果您的行为异常并且ogg文件(oga,ogv,ogg)无法正常运行,则可能的.htaccess文件(位于媒体文件的文件夹中)将为您提供帮助:AddType音频/ ogg .oga AddType视频/ ogg .ogv .ogg

现场演示

结论 (Conclusion)

So, now you will able to put audio/video players to pages of your website. Congratulations. Sure that you will happy play with it. You can use this material in your startups. Good luck!

因此,现在您可以将音频/视频播放器放到您网站的页面上。 恭喜你 确保您会喜欢它。 您可以在创业公司中使用这种材料。 祝好运!

翻译自: https://www.script-tutorials.com/how-to-play-audio-video-using-jplayer/

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: