如何从youtube视频中删除水印徽标/品牌徽标和顶部标题?

时间:2017-03-12 22:26:45

标签: youtube-api youtube-javascript-api youtube-data-api

我想在网站上添加YouTube视频。我想,只有控制面板。并需要隐藏顶部标题和徽标。 但如果隐藏标题,则永远不要隐藏徽标/水印徽标。 但我需要隐藏两次(标题+徽标)。 我怎么能这样做?

这是我的代码:

<iframe width="560" height="315" src="https://www.youtube.com/embed/Oo00q-l8VKQ?modestbranding=1&autoplay=0&rel=0&showinfo=0" frameborder="0" allowfullscreen>
</iframe>

2 个答案:

答案 0 :(得分:0)

正如您应该从HERE读取的那样,无法从播放器窗口中删除所有品牌。

这是他们制作的企业产品。因此,他们宣传他们的播放器(来自他们的网站)用于我们共享功能。

考虑到像YT-Player这样的产品的工作,他们给了我们很多访问api的权限。我认为这是合理的。

如果您不想要任何品牌,您应该拥有自己的播放器和内容。

答案 1 :(得分:0)

试试这个jsfiddle.net

<style>
 .video-wrapper {height: 153px; width: 272px; position: relative; overflow:hidden}
  #YouTubeVideo1 {height: 262px; width: 272px; position: absolute; margin-top:-55px}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<div class="video-wrapper">
<iframe id="ytplayer" type="text/html" width="272" height="252"
src="https://www.youtube.com/embed/M5h3U_nNn3k?autoplay=1&controls=0&fs=0&rel=0&showinfo=0"
frameborder="0" allowfullscreen></iframe>
</div>