我正在尝试使用以下参数将youtube视频嵌入到我的网站中,但无法正常工作:
<iframe width="560" height="315" src="https://www.youtube.com/embed/1xPEIXk69lc?rel=0&controls=0&autoplay=1&showinfo=0&modestbranding=1" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
答案 0 :(得分:0)
自2018年9月起已弃用某些参数,包括showinfo和将rel = 0更改。删除它们会有所帮助。有关更多信息,请参见https://developers.google.com/youtube/player_parameters。
如果您使用IFrame API(而不是嵌入iframe ex http://youtu.be/?videoIDxxx..。),则可以获取停止(完成)视频的事件,然后按ID将视频提示到播放器中。有关基本播放器的参考,请参见https://developers.google.com/youtube/iframe_api_reference#Playback_controls。
var pars = context.document.getSelection().paragraphs;
pars.load();
return context.sync().then(function () {
for (var i = 0; i < pars.items.length; i++) {
pars.items[i].style = "Heading 2";
}
return context.sync();
})
}) //needed for Stack overflow
.catch(function (error) {
console.log("Error: " + error);
if (error instanceof OfficeExtension.Error) {
console.log("Debug info: " + JSON.stringify(error.debugInfo));
}
});