I want to pass a YouTube URL to maybe YouTube's API and get the video thumbnail using PHP & curl? Is that possible?
|
feedback
|
|
Each YouTube video has 4 generated images. They are predictably formatted as follows:
The first one in the list is a full size image and others are thumbnail images. The default thumbnail image (ie. one of
For the high quality version of the thumbnail use a url similar to this:
For the maximum resolution version of the thumbnail use a url similar to this:
Alternatively, you can use the YouTube API to get thumbnail images. | |||||||||||||||||||||
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 likeOpen these URLs in your browser to find out:
Notes:
Use the data on client side using vanilla JavaScript
Use the data on client side using jQuery
Use the data on server-side using PHP
More details here: Retrieve Title, Description and Thumbnail of a YouTube Video Using AJAX | ||||
|
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 | |||
|
feedback
|
|
If you want the biggest image from youtube for specific video ID, then the code should be something like this.
Using the API will pick up the default thumb simple codes should be something like this
| ||||
|
feedback
|