I want to pass a YouTube URL to maybe YouTube's API and get the video thumbnail using PHP & curl? Is that possible?

link|improve this question

feedback

4 Answers

up vote 202 down vote accepted

Each YouTube video has 4 generated images. They are predictably formatted as follows:

http://img.youtube.com/vi/<insert-youtube-video-id-here>/0.jpg
http://img.youtube.com/vi/<insert-youtube-video-id-here>/1.jpg
http://img.youtube.com/vi/<insert-youtube-video-id-here>/2.jpg
http://img.youtube.com/vi/<insert-youtube-video-id-here>/3.jpg

The first one in the list is a full size image and others are thumbnail images. The default thumbnail image (ie. one of 1.jpg, 2.jpg, 3.jpg) is:

http://img.youtube.com/vi/<insert-youtube-video-id-here>/default.jpg

For the high quality version of the thumbnail use a url similar to this:

http://img.youtube.com/vi/<insert-youtube-video-id-here>/hqdefault.jpg

For the maximum resolution version of the thumbnail use a url similar to this:

http://img.youtube.com/vi/<insert-youtube-video-id-here>/maxresdefault.jpg

Alternatively, you can use the YouTube API to get thumbnail images.

link|improve this answer
1  
Thanks Asaph :) – Ryan Jan 15 '10 at 0:43
12  
The 0 image is a full size image of the video: http://img.youtube.com/vi/<insert-youtube-video-id-here>/0.jpg – munissor Mar 18 '10 at 10:58
2  
How do you get the high definition image (if there is one)? – trusktr Mar 7 '11 at 10:14
3  
There's also default.jpg which returns the default thumbnail (one of 1.jpg 2.jpg 3.jpg). – Thai May 30 '11 at 15:23
4  
To add onto that, there's also now an hqdefault.jpg, for the HQ version of the thumb – Mitch Grande Aug 15 '11 at 14:59
show 4 more comments
feedback

The URL trick is undocumented, therefore, unreliable. You can use YouTube Data API to retrieve video thumbnails, caption, description, rating, statistics and more. Trying out the API takes 30 seconds or less:

What does the data returned by the API look like

Open these URLs in your browser to find out:

  1. http://gdata.youtube.com/feeds/api/videos/gzDS-Kfd5XQ?v=2&prettyprint=true
  2. http://gdata.youtube.com/feeds/api/videos/gzDS-Kfd5XQ?v=2&prettyprint=true&alt=json
  3. http://gdata.youtube.com/feeds/api/videos/gzDS-Kfd5XQ?v=2&prettyprint=true&alt=jsonc

Notes:

  • gzDS-Kfd5XQ is the Id of the video.
  • I recommend the 3rd one because it has the smallest footprint

Use the data on client side using vanilla JavaScript

<script type="text/javascript">
    function youtubeFeedCallback(json){
        document.write('<img src="' + json["data"]["thumbnail"]["sqDefault"] + '">');
    }
</script>
<script type="text/javascript" src="http://gdata.youtube.com/feeds/api/videos/gzDS-Kfd5XQ?v=2&alt=jsonc&callback=youtubeFeedCallback"></script>

Use the data on client side using jQuery

$.getJSON("http://gdata.youtube.com/feeds/api/videos/gzDS-Kfd5XQ?v=2&alt=jsonc&callback=?", function(json){
    $("<img/>").attr("src", json["data"]["thumbnail"]["sqDefault"]).appendTo("body");
});

Use the data on server-side using PHP

<?php
$json = json_decode(file_get_contents("http://gdata.youtube.com/feeds/api/videos/gzDS-Kfd5XQ?v=2&alt=jsonc"));
echo '<img src="' . $json->data->thumbnail->sqDefault . '">';

More details here: Retrieve Title, Description and Thumbnail of a YouTube Video Using AJAX

link|improve this answer
Superb info, thankyou. – 422 Apr 7 at 9:45
feedback

You can get the Video Entry which contains the URL to the video's thumbnail. There's example code in the link. Or, if you want to parse XML, there's information here. The XML returned has a media:thumbnail element, which contains the thumbnail's URL.

link|improve this answer
I'm unable to get it out using simpleXML. It's quite hard! – aditya menon May 8 '11 at 6:18
feedback

If you want the biggest image from youtube for specific video ID, then the code should be something like this.

http://i3.ytimg.com/vi/SomeVideoIDHere/0.jpg

Using the API will pick up the default thumb simple codes should be something like this

//grab the default thumb
$attrs = $media->group->thumbnail[1]->attributes();
$thumbnail = $attrs['url']; 
    $thumbnail = substr($thumbnail, 0,-5);
    $thumb1 = $thumbnail."default.jpg";
//grab the third
    $thumb2 = $thumbnail."2.jpg";
//grab the fourth.
    $thumb3 = $thumbnail."3.jpg";

//Using simple  cURL to save it your server. You can extends the cURL below if you want it fancy just like the rest of the folks here.
$ch = curl_init ("$thumb1");
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_BINARYTRANSFER,1);
$rawdata=curl_exec ($ch);
curl_close ($ch);
//using fwrite to save the above
$fp = fopen("SomeLocationInreferenceToYourScript/AnyNameYouWant.jpg",'w');
//write the file
fwrite($fp, $rawdata);
//and then close it.
fclose($fp);    
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.