Can anyone give me an idea how can we show or embed a YouTube video if we just have the URL or the Embed code?
|
|
You have to ask users to store the 11 character code from the youtube video. For e.g. http://www.youtube.com/watch?v=Ahg6qcgoay4 The eleven character code is : Ahg6qcgoay4 You then take this code and place it in your database. Then wherever you want to place the youtube video in your page, load the character from the database and put the following code:- e.g. for Ahg6qcgoay4 it will be :
|
|||||||||||||||||
|
|
Do not store the embed code in your database -- YouTube may change the embed code and URL parameters from time to time. For example the I suggest that you look at these articles to figure out what to do with these ids: A naive PHP example for extracting the video id is as follows:
To create your own YouTube video player: |
|||||||
|
|
Use a regex to extract the "video id" after Store the video id in a variable, let's call this variable Get the embed code from a random video, remove the video id from the embed code and replace it with the I don't know how to deal with regex in php, but it shouldn't be too hard Here's example code in python:
The regular expression |
||||
|
|
|
If you want to upload videos programatically, check the YouTube Data API for PHP |
|||
|
|
|
From both long and short youtube urls you can get the embed this way:
Hope it helps someone |
|||
|
|
|
Searching for this same topic I found another method using Javascript an Youtube API's Directly from: http://code.google.com/apis/ajax/playground/#simple_embed Loading the API
And executing the following javascript code:
The complete sample is in the previously referred page http://code.google.com/apis/ajax/playground |
||||
|
|
|
Here is a function to allow you to embed youtube video |
|||
|
Here is some code I've wrote to automatically turn URL's into links and automatically embed any video urls from youtube. I made it for a chat room I'm working on and it works pretty well. I'm sure it will work just fine for any other purpose as well like a blog for instance. All you have to do is call the function "autolink()" and pass it the string to be parsed. For example include the function below and then echo this code.
` |
||||
|
|
|
luvboy, If i understand clearly, user provides the URL/code of the Youtube video and then that video is displayed on the page. For that, just write a simple page, with layout etc.. Copy video embed code from youtube and paste it in your page. Replace embed code with some field, say VideoID. Set this VideoId to code provided by your user. edit: see answer by Alec Smart. |
||||
|
|
|
U CAN simply create a php input form for Varchat date,give it a varchar length of lets say 300. then ask the users to copy and paste the Embed code.,when u view the record, u will view the streamed video. |
|||
|
|
|
Here is a way how to upload videos from your website before to embed them: http://www.webdryver.com/php-tutorials/youtube-gdata-php-script-for-video-upload.html Thanks and keep the grate job. |
|||
|
|
|
Just a small update to Alec Smart's answer: since AS2 is deprecated now, the '?version=3' is required to get his example to work. See the Youtube reference at YouTube Embedded Players and Player Parameters under "Selecting content to play" for details. In other words:
Apparently, the Youtube reference above does this as follows (the inner embed presumably used as a fallback for browsers that don't yet support the object tag):
Or using iframes (replace http://example.com with your site's domain):
|
||||
|
|