Last active
October 1, 2024 08:59
-
-
Save bacoords/77ee4d13dfa76db03981cb4eb0df0c6f to your computer and use it in GitHub Desktop.
Grab a thumbnail of a private (but embeddable) Vimeo video
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Grab the url of a publicly embeddable video hosted on vimeo | |
* @param str $video_url The "embed" url of a video | |
* @return str The url of the thumbnail, or false if there's an error | |
*/ | |
function grab_vimeo_thumbnail($vimeo_url){ | |
if( !$vimeo_url ) return false; | |
$data = json_decode( file_get_contents( 'http://vimeo.com/api/oembed.json?url=' . $vimeo_url ) ); | |
if( !$data ) return false; | |
return $data->thumbnail_url; | |
} |
oh! i see the issue, a classic—the example code you gave had the separator/string mixed up! thanks again @monowales 🙏
return explode('_', $data->thumbnail_url)[0].'_1920x1080';
I just removed the resolution entirely and it give me the highest resolution image
return explode('_', $data->thumbnail_url)[0]
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey @shaunkardinal, have a look at my last comment: you can use PHP to replace the ...
_640
at the end ofthumbnail_url
with any crop you like, eg_1920x1080
. It's undocumented, but works.