The YouTube JavaScript Player API allows users to control the YouTube chromeless or embedded video players via JavaScript.

learn more… | top users | synonyms

40
votes
1answer
22k views

YouTube iframe API: how do I control a iframe player that's already in the HTML?

I want to be able to control iframe based YouTube players. This players will be already in the HTML, but I want to control them via the JavaScript API. I've been reading the documentation for the ...
12
votes
3answers
8k views

How to pause a YouTube player when hiding the iframe?

I have a hidden div containing a YouTube video in an <iframe>. When the user clicks on a link, this div becomes visible, the user should then be able to play the video. When the user closes the ...
0
votes
2answers
4k views

YouTube API Target (multiple) existing iframe(s)

I'm trying to understand how to target an existing iframe using the YouTube API (i.e. without constructing an iframe with the script). As usual, Google does not give enough API examples, but explains ...
7
votes
2answers
8k views

YouTube Player API: How to get duration of a loaded/cued video without playing it?

I'm not able to get the correct video duration/length (in seconds) of a loaded/cued video via the getDuration() method of the YouTube Player API; the same method, however, returns a valid value once ...
2
votes
1answer
577 views

addEventListener in content script not working

I've got a chrome extension with a popup.html and an injected content script. With the injected content script I'm trying to access youtube's javascript API functions and it all works fine except for ...
6
votes
1answer
8k views

Hide/show in JavaScript - stop playing YouTube iframe video [closed]

I've used the iframe function to embed videos, and I'm hiding/showing the content and videos through JavaScript. I have one problem. When I press play on the first video, and then click on the next ...
2
votes
2answers
2k views

Can't Figure Out How to Pause YouTube Video on Click

My users are using the old embed method of utilizing the tag YouTube gives you instead of the iframe. I'm trying to figure out how to detect the player state (when it's paused, playing etc) when a ...
0
votes
1answer
1k views

Youtube iframe API, subscribing to events

Youtube iframe API: how do I control a iframe player that's already in the HTML? How do I subscribe to events here? I would like to listen for video finish.
3
votes
1answer
1k views

Correct way of using element.addEventListener

I have a few JavaScript functions that behave as event listeners for an <object/> object which fires custom events. The object in question is the JavaScript API enabled YouTube player. The ...
2
votes
2answers
5k views

Javascript - Wait 5 seconds before executing next line

This function below doesn't work like I want it to - being a JS novice I can't figure out why. I need it to wait 5 seconds before checking whether the 'newState' is -1. Currently, it doesn't wait, ...
2
votes
2answers
2k views

Using YouTube's PlayerAPI inside of a Google Chrome Extension under Manifest V2 — works, but generating lots of warnings

I am receiving a couple of non-critical error messages when using YouTube's Player API inside of a Google Chrome Extension under v2. I have the following definitions in my content_security_policy: ...
2
votes
1answer
292 views

Playing a monetized YouTube song inside of a Google Chrome Extension. Do I have any options?

I have encountered a huge roadblock in the development of my Google Chrome extension. Any YouTube song which is monetized (e.g. has an advertisement) will not play. This is documented here: ...
1
vote
1answer
2k views

Youtube HTML5 Video Player Fallback with Player API (v2)

I'm trying to use the youtube javascript player api to embed youtube videos into my site and control them via clickable thumbnails / javascript. I thought that the youtube player would fall back to ...
0
votes
1answer
38 views

How can I present information on top of a full screened youtube video embedded on my webpage?

I am developing a web application where I have a youtube video player embedded in one of my web pages. I am trying to present extra information on top of the playing video (on full screen). By extra ...
0
votes
1answer
725 views

Full Screen Option in Chromeless player using Javascript?

I am using Youtube Javascript API to develop chromeless player. Can you tell me How to Add / Develop "Full Screen Control" using Javascript on player ?
0
votes
1answer
151 views

Youtube embed player avoiding zindex

I'm trying to get an image to be placed over an youtube embedded player. I added the wmode=transparent to the url through jQuery to allow the player to accept a zindex. While it loads the image does ...
0
votes
1answer
615 views

Stop Youtube player in IE7 (using Rob W solution)

I'm using this script made by Rob W and everything works fine except for IE7. Here it is the jsfiddle page. I've also tried importing this to enable JSON on IE, but it still doesn't work on IE7. ...
0
votes
2answers
308 views

Get a video link from youtube

In one of my application I need to show a YouTube video. If user submits a video then I have to check if that video is alive in YouTube. If OK then I have to save the video id in my database and ...