Site icon Anthony Carbon

How to get Vimeo video thumbnails?

How to get Vimeo video thumbnails? You can use the Vimeo thumbnail generator http://video.depone.eu/ or a PHP code below.

$video_id= 6271487;
$url      = 'http://vimeo.com/api/v2/video/'.$video_id.'.php';
$response = unserialize(file_get_contents($url));
$video_title = $response[0]['title'];
$lightbox_thumb = $response[0]['thumbnail_large'];

// Try to print the $response to see all parameters.
// print_r($response);
Exit mobile version