我试图在Jplayer的简单html页面上播放一个简单的曲目,我有mp3的曲目,并将其转换为m4a和ogg但不能让它们中的任何一个工作。所有路径都是正确的,我的标记如下:
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script src="/jplayer/jquery.jplayer.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#jquery_jplayer_1").jPlayer({
ready: function () {
$(this).jPlayer("setMedia", {
mp3: "/media/02 Cello Concerto _Overture_.mp3"
});
},
solution:"flash,html",
swfPath: "jplayer",
supplied: "mp3"
});
});
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-44543565-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body style="text-align: center; background: url(images/bg.jpg) no-repeat center center; width: 100%; height: 100%; font-family: helvetica, arial; margin: 0px;">
<div id="jquery_jplayer_1" class="jp-jplayer"></div>
答案 0 :(得分:0)
从我在代码中看到的情况来看,这可能有多种原因:
修改强>
您也不会发出播放命令:
...
$(document).ready(function(){
$("#jquery_jplayer_1").jPlayer({
ready: function () {
$(this).jPlayer("setMedia", {
mp3: "/media/02 Cello Concerto _Overture_.mp3"
}).jPlayer("play");
},
solution:"flash,html",
swfPath: "jplayer",
supplied: "mp3"
});
});
...
答案 1 :(得分:0)
即使在编码之后,jPlayer也不支持url中的空格(encodeUri / encodeUriComponent)。尝试重命名文件并删除空格。