I want get video URL of my live channel
I know https://www.youtube.com/embed/live_stream?channel=UChF0CL3nPrnp7q3hfbvVg6A is permanent video URL but i need
URL like https://youtu.be/xxxfd or https://www.youtube.com/watch?v=xxxxdfd
Is there any API to get it programmatically
1)Use the youtube site to find the video you want.
2)Click the 'Share' button below the video.
3)Click the 'Embed' button next to the link they show you.
4)Copy the iframe code given and paste it into the html of your web page.
Related
I use api in the from of json. In JSON file have many link as well as a video link. I want the video link play in next window.
For example I want to get StackOwerflow logo as picture from youtube video.
From this youtube address: https://youtu.be/QwS1r1mc888?t=2
At this time: 00:02
I can take current video time, video data etc.
player= document.getElementById("movie_player");
player.getCurrentTime();
// ...
player.getVideoData();
How can I get video frame from specific time?
It is not possible to add a thumbnail image on iFrame.
You can use the iFrame of youtube as a target using . And then you can use a inside the tag
Check this answer:
Display thumbnail image in iframe
I have multiple YouTube iframe videos. I am trying to get url of current clicked iframe. I tried like by giving iframe id but its not work.
`https://viid.su/rfCYe`
the problem is on this page, well when people click on the embeded youtube video, I dont want the video to play there, but redirect people on youtube so they can interact, such as like or subscibe.
If you don't want the player to be usable, you can just put an image with a link on top of it.
Also there is the solution of using Youtubes Player API :
https://developers.google.com/youtube/iframe_api_reference#Requirements
I'm pretty sure you can catch the click of the user and redirect with javascript ( window.location or something like that )
My use case is kinda basic. According to the URL a user inputs, I want to have the good player displayed, that varies according to the input of course.
For instance, inputting http://www.youtube.com/watch?v=rv5OwTiBEiQ would display the preview of the Youtube player. The same goes with Dailymotion, Yahoo!, Vimeo, Justin.tv, Myspace...
Do you know is any Javascript plugin does this ? Ideally, it'd be based on Prototype.
In the Youtube case, all you have to do is get the video id of the url and put this in the follow URL:
http://img.youtube.com/vi/{video-id}/1.jpg
Then you have the link to the youtube preview image!