Youtube IFrame Player API - 禁用Youtube自动恢复视频

时间:2017-05-31 08:29:09

标签: javascript video iframe youtube

我正在使用Youtube IFrame Player API播放来自Youtube的视频。 我希望从头开始播放视频,但Youtube会自动从我上次离开的地方恢复视频。

这是我的代码:

new YT.Player('yt-player', {
        height: '439',
        width: '100%',
        videoId: 'my-video-id',
        startSeconds: 0,
        playerVars: {
                controls: 0,
                color: 'white',
                disablekb: 1,
                enablejsapi: 0,
                modestbranding: 1,
                rel: 0,
                showinfo: 1,
                iv_load_policy: 3,
                start: 0
        },
        events: {
                onReady: function() {
                         this.playVideo();
                }
        }
})

我尝试使用startSecondsstart参数,但它不起作用。

如何解决此问题?

1 个答案:

答案 0 :(得分:0)

尝试将start:0更改为start:1

这会重置视频,但我不知道原因。

我使用带参数的直接网址进行了测试。

  1. 示例,包含start = 0 example0
  2. 示例,包含start = 1 example1
  3. 您将看到start = 1将正常工作。