How to remove pause menu video suggestions / related videos (class: ytp-pause-overlay) from Youtube embed

我只是一个虾纸丫 提交于 2020-06-27 07:17:11

问题


Youtube is showing a menu with video suggestions while my embedded video is paused. The element in the iframe has the class 'ytp-pause-overlay'

How can you remove it without removing controls?


回答1:


Yes it is possible. You have to use showinfo=0?ecver=2 in your iframe code.

Example:

<iframe src="https://www.youtube.com/embed/pV1jC37ELmQ?rel=0&amp;showinfo=0?ecver=2" width="640" height="360"></iframe>



回答2:


In case you loading your videos using Javascript YouTube Player iframe API you will need to use Player Parameters and set the value of rel to 0.

Example:

player = new YT.Player( 'player', {
    height: '390',
    width: '100%',
    videoId: 'y9QEQHe8ax4',
    playerVars: { 'rel':0}
    }
);

Update in October 2018

Youtube changed the behavior of rel parameter:

The behavior for the rel parameter is changing on or after September 25, 2018. The effect of the change is that you will not be able to disable related videos. However, you will have the option of specifying that the related videos shown in the player should be from the same channel as the video that was just played.

To be more specific: Prior to the change, if the parameter's value is set to 0, then the player does not show related videos. After the change, if the rel parameter is set to 0, the player will show related videos that are from the same channel as the video that was just played.

Update in October 2019

I found a workaround in case you are the owner of the videos.

  1. Use the provided code example to require Youtube to load the related videos from your channel only.

  2. In order enforcing Youtube to remove the related videos list. Simply I created a new channel and uploaded the needed videos as unlisted. You have to make sure that All the videos in the new channel are not listed which means that when Youtube tries to show the related videos from the same channel the list will be empty so Youtube doesn't show related videos menu at all.

  3. To test this solution try an incognito session or another browser because Youtube will show the related videos menu to you if you are logged in with the same account that owns the channel and has access over the unlisted videos




回答3:


The solution for me was to add the parameter "rel" with a value of "0" to the end of the url.

According to the developers guide here, the description of the "rel" parameter is:

This parameter indicates whether the player should show related videos when playback of the initial video ends. Supported values are 0 and 1. The default value is 1.

When I set the value to "0", this parameter keeps the suggested videos from being displayed when the video is paused.

An example url would be:https://www.youtube.com/embed/ABCDEFG?rel=0




回答4:


None of the proposed solutions worked for me, so I ended up adding this to the page:

<style>
.ytp-pause-overlay{
display:none;
}
</style>



回答5:


After trying all of these tricks (and a few from other posts as well), I still could not get rid of the ytp-pause-overlay. The only thing that DID actually work was restricting the dimensions of the iframe itself (using percentage), while setting the desired dimensions (using px) in an outer div.

Example: <div style="height: 300px; width: 350px"><iframe style="width:90%" src...></iframe></div>

(Please excuse the inline styling)




回答6:


I messed around with this for a little bit and found this solution worked for me:

my browser is chrome version 73.0.3683.86
my adblock plus is version 3.5
using adblock plus, go to its settings, click on advanced on left side, scroll down to the "My Filter List" area, add the following line:

.ytp-pause-overlay

click save, reload the webpage with the video.

I have also added the following but I do not think it is necessary to solve your exact problem but I am including the info just to be thorough. I believe this just blocks the grid of suggested/related content at the very end of the video.

/yts/swfbin/player-*/endscreen.swf
youtube.com##div.videowall-endscreen
youtube.com##watch-related



来源:https://stackoverflow.com/questions/44027851/how-to-remove-pause-menu-video-suggestions-related-videos-class-ytp-pause-ov

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!