33

我想使用 YT.Player 代码来检测事件。我有一个带有 Youtube 视频 ID 的 CSV 文件和一个将 ID 放入数组中的函数,并且希望能够在用户单击图像时动态更改 ID。基本上是这样的:

html

<!-- 1. The <iframe> (and video player) will replace this <div> tag. -->
<div id="player"></div>

javascript

// 2. This code loads the IFrame Player API code asynchronously.
var tag = document.createElement('script');
tag.src = "//www.youtube.com/iframe_api";
var firstScriptTag = document.getElementsByTagName('script')[0];
firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);

// 3. This function creates an <iframe> (and YouTube player)
//    after the API code downloads.
// NOTE: videoId is taken out and instead is placed as the generated IFRAME src from the postSelection function

var player;
function onYouTubeIframeAPIReady() {
   player = new YT.Player('player', {
      height: '100%',
      width: '100%',
      videoId: '<<CALL TO FUNCTION OR VARIABLE HERE>>',
      events: {
         //'onReady': onPlayerReady,
         'onStateChange': onPlayerStateChange
      }
   });
}

如果您熟悉此代码,那么会发生#playerDIV 被 IFRAME 替换。我可以使用此功能更改 IFRAME 源:

function postSelection() {
    $("#player").attr("src", _selected.attributes.url); //_selected.attributes.url comes from the CVS file
}

但这非常有问题,而且对跨浏览器不友好。如果我使用标准 IFRAME 而不是 YT Player API,那么一切正常。但我想检测结束,暂停等等,所以我必须使用 API。我的猜测是,这是一个状态问题,并且在创建 IFRAME 的过程中丢失了持久性。

问候。

4

2 回答 2

65

使用 js api 非常简单。当您想加载新视频时,只需在https://developers.google.com/youtube/iframe_api_reference#loadVideoByIdplayer.loadVideoById(videoId);调用 详细信息

于 2012-11-01T16:15:58.053 回答
-1

如果这对像我一样挣扎的人有帮助......

player.loadVideoById(videoId) 仅在 videoId 被硬编码时对我有用,例如 player.loadVideoById('sdfexxdfse')

当我尝试将该值直接放入变量中或存储在数组中时,即使它包含相同的信息,它也无法正常工作。

视频每次都出现错误的参数。

以这种方式将其添加到变量中

var x = new String(variabledatahere)

做了这项工作。

于 2018-08-11T09:57:46.493 回答