如何停止自动播放RYPP youtube视频

时间:2017-05-20 07:07:53

标签: video youtube youtube-javascript-api

我正在使用RYPP youtube视频播放器播放视频,但它在第一次加载时会自动播放。我试图找出问题但我无法成功。

如果有人可以帮我解决它请。在这里我添加了一些代码。要查看更多代码,请参阅此视频的github

这是RYPP.js的代码

 // Api key
  this.api_key = api_key;

  // Default options
  this.options = {
    update_title_desc: false,
    autoplay: false,
    autonext: false,
    loop: false,
    mute: false,
     // Logs debug messages in console
    debug: false     // Default
  };

这里的Html链接:http://news365.bdtask.com/Demo/DemoNews365/home-style-one.html

1 个答案:

答案 0 :(得分:0)

RYPP.js的第50行:

// Default options
      this.options = {
        update_title_desc: false,
        autoplay: true,
        autonext: true,
        loop: true,
        mute: false,
        debug: false
      };

未经测试:也许如果您将autoplay: true设置为autoplay: false,它可能会有效。

修改

根据ReadMe设置:

  

你有几个参数你可以在RYPP开始上传递来控制一些   基本行为......

$('#RYPP-custom-player').rypp( '{{YOUR_API_KEY_HERE}}', {

  // Player starts automatically on first video
  autoplay: true, // Default

  // Player loads next video automatically
  autonext: true, // Default

});