Sign up to create your own snipts, or login.

Public snipts » styledev's snipts » Grab Vimeo Thumbnail

posted on Oct 15, 2009 at 8:31 p.m. EDT in 
  • <?php
    $url = 'http://vimeo.com/api/clip/6518700/php';
    $contents = @file_get_contents($url);
    $thumb = @unserialize(trim($contents));
    echo "<img src=".$thumb[0][thumbnail_small].">";
    ?>
    
    With Viper's Video Plugin for Wordpress
    
    <?php
    $cont = explode('/',get_the_content(null, 0, ''));
    $videoID = substr($cont[3], 0, -1);
    $url = "http://vimeo.com/api/clip/".$videoID."/php";
    $contents = @file_get_contents($url);
    $thumb = @unserialize(trim($contents));
    echo "<img src=".$thumb[0][thumbnail_small].">";
    ?>
    

    copy | embed

0 Comments

Sign up, or login to leave a comment.