3

让我解释一下我的情况。我想使用Youtube IFrame API在我的网站上嵌入一些视频。我在此页面上测试了 ID为 wdGZBRAwW74 ( https://www.youtube.com/watch?v=wdGZBRAwW74 ) 的视频: Youtube IFrame Player Demo。它工作正常。

我试试这个示例代码:

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

<script>
  // 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.
  var player;
  function onYouTubeIframeAPIReady() {
    player = new YT.Player('player', {
      height: '390',
      width: '640',
      videoId: 'wdGZBRAwW74',
      events: {
        'onReady': onPlayerReady,
        'onStateChange': onPlayerStateChange,
        'onError': onPlayerError
      }
    });
  }

  // 4. The API will call this function when the video player is ready.
  function onPlayerReady(event) {
    event.target.playVideo();
  }

  // 5. The API calls this function when the player's state changes.
  //    The function indicates that when playing a video (state=1),
  //    the player should play for six seconds and then stop.
  var done = false;
  function onPlayerStateChange(event) {
    if (event.data == YT.PlayerState.PLAYING && !done) {
      setTimeout(stopVideo, 6000);
      done = true;
    }
  }

  function onPlayerError(event){
     console.log(event.data);
  }

  function stopVideo() {
    player.stopVideo();
  }
</script>
</body>
</html>

在我的本地主机上有一些虚拟主机域,我得到了结果:

  1. 使用域app.centaur.com /youtube/index.htm:IFrame API 工作正常,视频播放没有问题。
  2. 使用域app.music.com /youtube/index.html:IFrame API 工作正常,但视频无法播放,API 触发 onError 并出现错误 150 并且嵌入式播放器显示消息“此视频包含来自 VEVO 的内容,该视频已被阻止从本网站上的显示。在 Youtube 上观看
  3. 使用域app.musiccentaur.com /youtube/index.htm:就像第一种情况一样,一切正常
  4. 使用域app.centaurmusic.com /youtube/:就像第一种情况一样,一切正常

据我所知,错误 150 代表“所请求视频的所有者不允许它在嵌入式播放器中播放”。但我看到它在案例 1、3、4 中仍然有效,那是什么意思?

似乎 Vevo 的所有视频都与此问题有关。我不确定 Vevo 是否定义了一些嵌入视频的策略。

也许问题来自我的域music.com,但我不确定是否有一些域规则可以在网站上嵌入 Vevo 的视频。

如果我为我的网站购买了一个域名,然后我得到了错误 150,这太糟糕了。:(

以前有人处理过这个吗?请给我一些解决方案。提前致谢。

注意:此错误仅发生在 Vevo 的视频中。

4

1 回答 1

2

允许内容所有者设置允许/拒绝嵌入的域名的白/黑名单。没有办法绕过这些限制。

这篇博文提供了有关一般内容限制的更多信息:http: //apiblog.youtube.com/2011/12/understanding-playback-restrictions.html

于 2012-11-30T16:25:05.290 回答