使用YouTube iframe API的播放列表不再有效?

时间:2013-10-27 14:34:25

标签: javascript iframe youtube youtube-api playlist

YouTube似乎对YouTube iframe API进行了一些更改。不幸的是,我不再能够使用定义的起始(索引)编号嵌入YT播放列表。 直到今天,以下简单代码在队列中播放完整的播放列表,从列表的第4个视频开始。

<!DOCTYPE html>
<html>
    <head>
        <meta content="text/html;charset=utf-8" http-equiv="Content-Type">
        <title>
            YT video player
        </title>
        <script src="https://www.youtube.com/iframe_api"></script>

        <script type='text/javascript'>
var player;

function onYouTubeIframeAPIReady() {
    player = new YT.Player('player', {
        height: '390',
        width: '640',
        videoId: 'videoseries',
        events: {
            onReady: loadPlaylist
        }
    });
}

function loadPlaylist() {
    player.loadPlaylist({
        playlist: "PL6E443347ECEF351E",
        listType: "playlist",
        index: 4
    });
}
        </script>
    </head>
    <body>
          <div id="player"></div>
    </body>
</html>

我给了它几次尝试来解决它,但我还没有成功。你有解决这个问题的线索吗?

1 个答案:

答案 0 :(得分:0)

除默认设置外,有一种解决方法可以设置“建议质量”。

已提交,您可以从https://code.google.com/p/gdata-issues/issues/detail?id=5411

跟踪它