I want to use the thumbnail of the Google video’s. In PHP or JavaScript function
function getScreen( url, size )
{
if(url === null){ return “”; }
size = (size === null) ? “big” : size;
var vid;
var results;
results = url.match(“[\?&]v=([^&#]*)”);
vid = ( results === null ) ? url : results[1];
if(size == “small”){
return “http://img.youtube.com/vi/“+vid+”/2.jpg”;
}else {
return “http://img.youtube.com/vi/“+vid+”/0.jpg”;
}
}
for the you tube vedio
imgUrl_big = getScreen(“uVLQhRiEXZs”);
imgUrl_small = getScreen(“uVLQhRiEXZs”, ‘small’);
Here is a small script that maybe gets the job done the way you want it: