我正在尝试创建一个移动网站,点击图片后播放YouTube视频。
我已经在几款Android手机/版本上进行过测试,但有些手机并没有按预期运行。
我的意思是它停止缓冲,永远不会播放视频。我注意到的另一件事是播放器在用户触发视频后播放而不是以编程方式播放。更详细的是,如果我直接显示youtube播放器,用户点击播放视频,然后点击一个按钮/图像播放另一个视频。
我在这里发布了我使用JsFiddle
的测试页面$(document).ready(function () {
// Caching jQuery objects
var $body = $('body'),
$log = $('#log'),
$yt = $('#ytplayer'),
$ytwrap = $('#ytwrapper'),
$choices = $('#choices');
// This code loads the YouTube API
var tag = document.createElement('script');
tag.src = "https://www.youtube.com/iframe_api";
$body.append(tag);
// This will become the player object when the API is ready
var player;
// See what kind of device we're using
var userAgent = navigator.userAgent.toLowerCase();
var isAndroid = userAgent.indexOf('android') > -1;
var isIpad = userAgent.indexOf('ipad') > -1;
var isIphone = userAgent.indexOf('iphone') > -1;
window.onYouTubeIframeAPIReady = function onYouTubeIframeAPIReady() {
player = new YT.Player('ytplayer', {
videoId: videos[0],
playerVars: {
allowfullscreen: 'allowfullscreen',
playsinline: 0
},
events: {
'onReady': onPlayerReady,
'onStateChange': onPlayerStateChange
}
});
window.player = player;
//hide player
slidePlayer(false);
};
function onPlayerStateChange(event) {
// When a video starts playing,
// enable the fake fullscreen mode on Android & iPad
if (event.data == YT.PlayerState.PLAYING) {
if (isIpad) {
fakeFullScreen(true);
} else if (isAndroid) {
fakeFullScreen(true);
}
}
// On pause: hide the player, show thumbs
if (event.data == YT.PlayerState.PAUSED) {
if (isAndroid) {
// Exit fullscreen
fakeFullScreen(false);
// Scroll back to choices
window.scrollTo(0, playerTop);
} else if (isIpad) {
fakeFullScreen(false);
window.scrollTo(0, playerTop);
} else if (isIphone) {
slide(false);
}
}
}
$('#vstImageAd .imageWrap img').click(function (e) {
e.preventDefault();
var $this = $(this);
if (player) {
$this.css("display", "none");
slidePlayer(true);
player.playVideo();
}
});
// When a thumb image is pushed, start the video
$('#choices .playthumb img').click(function (e) {
var $this = $(this),
nr = parseInt($this.data('nr'));
if (!videos[nr]) nr = 1;
player.loadVideoById(videos[nr]);
// Hide the thumbs
slide(true);
});
});
答案 0 :(得分:4)
看起来您正在使用的某些功能(player.playVideo())在移动设备中被禁用。 在我的情况下,在某些Android设备中使用player.playVideo()后,即使点按播放器后该视频也无法播放
https://developers.google.com/youtube/iframe_api_reference?hl=zh-TW#Mobile_considerations
自动播放和脚本播放
HTML5元素,在某些移动浏览器中(例如Chrome) 和Safari),只允许播放由a发起 用户互动(例如点击播放器)。
由于这个限制,功能和参数,如自动播放, playVideo(),loadVideoById()不适用于所有移动环境**