youtube嵌入如何在撇号视频中隐藏推荐视频
youtube embed how to hide recommended videos in apostrophe video
我想知道是否有办法在嵌入视频播放完毕后不显示推荐视频。我确实看到了在 URL 中添加 "rel=0" 参数的选项,但这不起作用。任何帮助将不胜感激。
3 个简单步骤:
将 apostrophe-oembed 模块从 node_modules/apostrophe 复制到您自己的 lib/modules/ 目录/lib/modules 目录。我们这样做是为了能够在不更改原始模块的情况下自定义 oembed 模块。
编辑文件 apostrophe-oembed/lib/youtube.js 第 17 行从 response.html = response.html.replace('feature=oembed', 'feature=oembed&wmode=opaque');
到 response.html = response.html.replace('feature=oembed', 'feature=oembed&wmode=opaque&rel=0');
重新启动服务器以查看它对现有视频的影响
我想知道是否有办法在嵌入视频播放完毕后不显示推荐视频。我确实看到了在 URL 中添加 "rel=0" 参数的选项,但这不起作用。任何帮助将不胜感激。
3 个简单步骤:
将 apostrophe-oembed 模块从 node_modules/apostrophe 复制到您自己的 lib/modules/ 目录/lib/modules 目录。我们这样做是为了能够在不更改原始模块的情况下自定义 oembed 模块。
编辑文件 apostrophe-oembed/lib/youtube.js 第 17 行从
response.html = response.html.replace('feature=oembed', 'feature=oembed&wmode=opaque');
到response.html = response.html.replace('feature=oembed', 'feature=oembed&wmode=opaque&rel=0');
重新启动服务器以查看它对现有视频的影响