我已经在我的网站上实现了leanback 播放器。现在我正在尝试使用 XML (XPSF) 播放列表来扩展leanbackplayer。列表正在显示,但在列表中单击时歌曲不播放。
我为播放列表设置了一个测试页面:http ://www.radiomerlijn.nl/mediaplayer/test_mediaplayer.htm
当我先在播放器上按开始时,歌曲会播放,然后单击播放列表中的一首歌曲。
这是我用于leanbackplayer 和播放列表的代码:
<div class="leanback-player-audio h5_lb_player" id="boekenplayer_parent" style="height: 0px;" width="auto">
<!-- HTML5 <audio> element -->
<audio class="h5_lb_audio" id="boekenplayer" preload="metadata" tabindex="0">
<source src="http:www.rmuitzendinggemist.nl/uitzendinggemist/boekenxx03.mp3" type='audio/mpeg; codecs="vorbis"'/></audio>
<div id="boekenplayer_list">
<script type="text/javascript">
// do: define XSPF Audio Playlist options
LBP.XSPFAudio.options = {
// if playlist style "width" is defined within your CSS; default is "false"
fixedWidth: true
};
// do: provide XSPF Audio Playlist URL for HTML5 <audio> element id="unique_id"
LBP.XSPFAudio["boekenplayer"] = "http://www.radiomerlijn.nl/rss/boekennieuws.xml";
</script>
</div>
</div>
谢谢你的帮助!
桑德