I'am new here and with problems. I want to create website, where people come in, and see the same video at the same time from youtube. Its like video streaming, but the video is uploaded older. Is this possible? Any suggestion is appreciated, thanks!
I think the player.seekTo() function is what you're looking for.
If the start time is numberOfSeconds, try player.seekTo(numberOfSeconds, true) to skip ahead to that time.
Related
I'm building an audio player but having problems with Chrome.
If I try to jump ahead on the play time Chrome just restarts the clip. I probably just need to be pointed in the right direction. I'm thinking I need to waiting for buffer to load first or something.
Here's the url to the working file:
https://www.christart.com/music/
I'd appreciate any suggestions.
I'm trying to make a Chrome Extension for Netflix, and I'm curious if there's away to get details about the current video being played. I just want to extract the title of the video. I've seen that the Netflix API has been shut down so I'm curious if this is even possible?
Thanks in advance!
document.getElementsByClassName('player-status-main-title')
or with out the html
document.getElementsByClassName('player-status-main-title')[0].innerHTML
I am looking to have a video play once the first video ends. Both videos are coming from Vimeo. I have attempted to use this plugin and follow the Vimeo API however I can't seem to get anywhere. The plugin successfully plays one video after the other but the video loads next to it, not in place of it. I've also tried the suggestion on this post but it doesn't work for me either.
Any suggestions? I'm beginner level for Javascript so the more detail the better :) thank you!
I'm trying to make a web-app in which people can remix youtube videos...
I looked at the youtube api, and it doesn't seem to support thumbnail at a specific location.
So, I'm trying to create multiple chromeless youtube videos, start them at specific positions and stop them almost immediately to make them seem like "thumbnails".
However, the videos all show up black when I try to do so.
Here's the link to the source code: http://pastebin.com/6Bpr1Dsz
Note that when I comment out the pauseVideo part, the videos play fine.
ps: I tried to make this work on jsfiddle, but it wouldn't work.
Thanks :)
I searched for many solutions to play Youtube videos on iOS.
At the moment i just use a webview to show only the player and then press the play button (only embed the video in the webview).
But I know there is a javascript solution to get an mp4 link for the youtube video.
This is the javascript:
http://userscripts.org/scripts/show/25105
The script searches for the video element and grabs all informations and finally make it possible to download the mp4.
Im not good in javascript, so i dont know if there is an possibility to write that code, that it just works with http://myurl.com/getvideo?id=VIDEOID .
I would try it myself, but i dont know if it is possible to grab all these informations the script uses without the player element.
Maybe you can help me ;)
(im using iOS 5 btw)
My english is not the best, so if u have problems to understand something, just ask.
you can check PSYouTubeExtractor that allows you to retrieve the mp4 version of a YouTube video, it is pretty easy to use.