Reputation: 624
I have a youtube player integrated into my site, the problem is if I'm logged into my google account, every time I pause the video an inline menu appears showing recommended videos. Using playerVars: {rel: 0}
only removed the recommended videos from the end, so that doesn't work for this problem. I could be mistaken, but I think this is a new feature of the Youtube API.
So, my question is, is there an option to removed those related videos without logging out of my google account
Upvotes: 1
Views: 2006
Reputation: 1
Implement your own pause:
Implement your own play:
Incorporate these implementations with detecting state changes (e.g. onStateChange for the pause value of 2)
Upvotes: 0