On a site I'm developing I embed videos from YouTube and want to get the video title and its description.
How do I get that information?
|
On a site I'm developing I embed videos from YouTube and want to get the video title and its description. How do I get that information? |
||||
|
|
To get the DESCRIPTION element, you need to access the gdata version of the video's info, and you can return json using alt=json on the path. In this case, oHg5SJYRHA0 is the video ID, found at the end of the url of the video you're working with on YouTube, e.g.
(the prettyprint is formatting to make that easy to read, you don't need it for what you're doing) You can grab the JSON, add it into a variable and access it using jQuery:
Then access it using object notation:
|
||||
|
|
|
You can do it with oembed. Example: http://www.youtube.com/oembed?url=http%3A//youtube.com/watch%3Fv%3DM3r2XDceM6A&format=json |
|||||
|
|
I'd start by taking a look at Youtube Data API to get what you want: http://code.google.com/apis/youtube/getting_started.html#data_api |
|||
|
|
|
I read this topic a bit in delay. I did something like this using jSON and YT API's
Note: $rs['vid'] is the video ID dinamically retrived from my DB. Once you put the contents in the handle $json you can retrive like this:
use var_dump( $json ) to view all values you can access. |
||||
|
|