I was looking for a simple way to get thumbnails for some videos on Vimeo and the only way to do that seems to be to use Vimeo API.
The problem is not that it's to complicate for me to do something like :
$thumb = unserialize(file_get_contents('http://vimeo.com/api/v2/video/'.$VIDEO_ID.'/php'));
echo '<img src="'.$thumb[0]['thumbnail_medium'].'">';
But if you need to get 50 thumbnails, it will be a little bit long comparing to :
echo '<img src="http://img.youtube.com/vi/'.$VIDEO_ID.'/1.jpg">';
don't you think so ?
is that really the only way or is it a joke ?