让我解释一下我的情景。我想使用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>
在我的localhost上有一些虚拟主机域,我得到了结果:
据我所知,错误150代表“所请求视频的所有者不允许在嵌入式播放器中播放”。但我认为它仍然适用于案例1,3,4,那么它是什么意思?
Vevo的所有视频都与此问题有关。我不确定Vevo是否定义了嵌入视频的政策。
问题可能来自我的 music.com ,但我不确定是否有一些域名规则可以在网站上嵌入Vevo的视频。
如果我为我的网站购买域名然后我得到错误150,那就太糟糕了。 :(
之前有没有人处理过此事?请给我一些解决方案。提前谢谢。
注意:此错误仅发生在Vevo的视频中。
答案 0 :(得分:2)
允许内容所有者设置允许/拒绝嵌入的白/黑域名列表。没有办法解决这些限制。
此博客文章提供了有关内容限制的更多信息:http://apiblog.youtube.com/2011/12/understanding-playback-restrictions.html