Skip to content

Instantly share code, notes, and snippets.

@yanknudtskov
Last active June 18, 2018 06:24
Show Gist options
  • Save yanknudtskov/dbdb1dee9abed73a9a8158263e34db5d to your computer and use it in GitHub Desktop.
Save yanknudtskov/dbdb1dee9abed73a9a8158263e34db5d to your computer and use it in GitHub Desktop.
Get Vimeo Video Thumbnail #vimeo
<?php
function get_vimeo_video_id( $vimeo_url ) {
// ----- http://stackoverflow.com/a/10489007/1291469 ----- //
$video_id = (int) substr(parse_url($vimeo_url, PHP_URL_PATH), 1);
return $video_id;
}
function get_vimeo_thumbnail( $vimeo_url ) {
// ----- http://stackoverflow.com/a/1361192/1291469 ----- //
$id = get_vimeo_video_id( $vimeo_url );
$hash = unserialize(file_get_contents("https://vimeo.com/api/v2/video/$id.php"));
return $hash[0]['thumbnail_medium'];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment