The YouTube JavaScript Player API allows users to control the YouTube chromeless or embedded video players via JavaScript.
1
vote
1answer
56 views
Why is YouTube JS API OnPlayerStateChange Event Handler no longer working? Is this a catastrophic bug? [duplicate]
As of 6/13/2013 at approximately 2AM, my streaming video service FMGEM.com can no longer auto-advance playlists.
I was just notified of this as it has affected a production system that has not been ...
0
votes
1answer
94 views
Is the YouTube JavaScript (iframe) player broken today? [duplicate]
Today, my iPad app, which uses the YouTube JavaScript iframe API, stopped working. On investigation, it appears that the player object is bollixed. For example, player.getCurrentTime is undefined ...
0
votes
2answers
76 views
YouTube Player API: retrieving a reference to an existing player
I'm developping a Google Chrome extension, using content script. I want to interact with pages embedding a YouTube video player. I have include the www-widgetapi-vfljlXsRD.js as a JavaScript file, and ...
0
votes
0answers
10 views
How to get the file size at a given playback quality?
Given that the player.getVideoBytesTotal() method is depreciated, how does one find out the total size of a video file?
0
votes
1answer
46 views
having trouble with youtube player api
A feature I am trying to implement in my rails app is the ability for users to control embedded youtube videos. I am using the youtube player api (guidelines here: ...
1
vote
1answer
39 views
How to upload files on YouTube using resumable upload API v3
The following code does not work, how can I use it to upload files on YouTube?
$service_url = 'https://www.googleapis.com/upload/youtube/v3/videos?uploadType=resumable&part=snippet,status';
...
0
votes
0answers
59 views
Youtube API player chrome extension
I'm a newbie using YouTube API player.
I'm building a chrome extension to work with YouTube's API. In order to use the player, I have created a method in which I make this:
popup.js :
...
0
votes
1answer
12 views
format of yt.play playlist for embedding a playlist
Writing first chrome extension and I cant figure out how to load a playlist with my YT.Player, my attempts of just having an "array" of video ids does not work.
Sorry if this is an easy question to ...
0
votes
0answers
17 views
Use a youtube playlist and go to other page after it finishes? [duplicate]
I want to make a webpage with a youtube playlist and, when it finishes playing all the videos, automatically must redirect to another webpage.
How do I do this? I am new in web developing, so please ...
0
votes
0answers
38 views
I update the same video ID, but the youtube-api v3 still show “Video not found”
I used google js api Link1and youtube v3 api Link2
I want use js to update my video, the js code for listing videos:
var requestOptions = {
playlistId: playlistId,
part: 'snippet',
//id: ...
0
votes
1answer
31 views
Has anyone found a working implementation of YouTube Direct?
I'm working on a website that has a need to accept user-submitted videos. After some research, it seemed like YouTube Direct would be a good fit for our purposes. Most Google products are very ...
1
vote
0answers
35 views
Uploading a video to youtube from browser
Im OK authorized.
I have 2 button's like this on my page:
<input type="file" id="fileToSend"/>
<input type="button" onclick="upload()" value="Upload" id="btnSend"/>
I want to upload ...
0
votes
0answers
31 views
Dynamically Embed Multiple swfObject
Each page contains several youtube videos (retrieved from an xml file). Every time a next page button is clicked, a new set of videos are loaded into the main container on the body while deleting all ...
1
vote
0answers
18 views
Controlling Youtube Frames generated in Wordpress and loaded via Ajax
I am developing a Google Map interface where all video are included in Wordpress posts and appended to Marker.
The interface includes also "4 div container" preloaded right above the map, and when I ...
0
votes
2answers
29 views
Initializing an empty player with Youtube Javascript API
I have made a component for my web app that initializes a YouTube player on the page. This player will be used to an un-demand video on to the page. However, when initializing the player, I have to ...