i want to extract the title of youtube videos. how can i do this?
Thanks
|
|
Easiest way to obtain information about a youtube video afaik is to parse the string retrieved from: http://youtube.com/get_video_info?video_id=XXXXXXXX Using something like PHP's parse_str(), you can obtain a nice array of nearly anything about the video:
That will print the title for the video using $id as the video's id. |
|||||||||
|
|
One way to do this would be to retrieve the video from youtube as shown here Then extract the title out of the atom feed sent by youtube. A sample feed is shown here |
|||
|
|
|
With bash, wget and lynx:
|
|||
|
|
|
Using JavaScript data API:
Then you just need to call More informations are available on the API documentation. |
|||
|
|
|
|||||
|
|
|
If you are familiar with java, try the Jsoup parser.
|
|||
|
|