jplayerを使用して1つのshoutcastステーションを正常に再生でき、他のステーションを再生できないという最も奇妙な問題があります。これは、shoutcast サーバーの情報が同様の構成を示唆しているため、奇妙です。
http://198.27.79.224:9770/
http://108.61.73.119:8128/
また、jplayer の flash バージョンは両方を再生しますが、html バージョンは最初の 1 つしか再生しないことに注意する必要があります。
Jplayer jsはこんな感じ
<script type="text/javascript">
//<![CDATA[
$(document).ready(function(){
new jPlayerPlaylist({
jPlayer: "#jquery_jplayer_1",
cssSelectorAncestor: "#jp_container_1"
}, [
{
title:"#1 Stream",
mp3:"http://108.61.73.119:8128/;stream/1"
},
{
title:"#2 Stream",
mp3:"http://108.61.73.118:8128/;stream/1"
},
{
title:"#3 Stream",
mp3:"http://108.61.73.117:8128/;stream/1"
},
{
title:"#4 Stream",
mp3:"http://198.27.79.224:9770/;stream/1"
},
], {
swfPath: "jplayer",
supplied: "mp3",
wmode: "window",
preload: "none",
//solution: "flash, html",
smoothPlayBar: true,
keyEnabled: true
});
$("#jplayer_inspector_1").jPlayerInspector({jPlayer:$("#jquery_jplayer_1")});
});
//]]>
</script>
何か案は?