【发布时间】:2012-07-11 05:41:11
【问题描述】:
我正在尝试使用 Jplayer 通过 rtmp 播放 mp3 流示例(已修补 https://github.com/rmhall/jPlayer 以允许 rtmp)。 我的代码在这里:
$('#jquery_jplayer').jPlayer({
swfPath: "/Scripts/JPlayer/",
supplied: "rtmpa, rtmpv, mp3",
solution: "flash",
ready: function () {
$(this).jPlayer("setMedia", {
rtmpa: "rtmp://limelight-fmstream-70.musicnet.com/a4396/e1/mp3:/spl/068/771/139/spl_024?e=1342014373&h=0dc0153ed7fb0ff34d04fce764de9896" //this is not work
//THIS WORKS! rtmpv: "rtmp://cp67126.edgefcs.net/ondemand/mp4:mediapm/ovp/content/test/video/spacealonehd_sounas_640_300.mp4"
});
$(this).jPlayer("play");
}
});
如果我正在播放 rtmpv 视频,它可以工作,但是这个音频(rtmpa)不起作用(不播放任何东西)。我在http://widgets.mndigital.com/test/stream.aspx 上测试了这个 mp3,它在那里工作。
有人可以帮助我吗? 谢谢
【问题讨论】: