1

我必须制作一个视频库,用户将在其中上传闪烁视频链接。我需要视频的缩略图。我如何使用 javascript/php 来做到这一点?

4

2 回答 2

2

假设您需要此视频的缩略图http://www.flickr.com/photos/mariareyesmcdavis/3478595161/

使用 php curl 发出以下 HTTP 请求。

http://www.flickr.com/services/oembed/?url={flicker video url}&format=json

http://www.flickr.com/services/oembed/?url=http%3A//www.flickr.com/photos/mariareyesmcdavis/3478595161/&format=json

你会从 flicker 得到一个 json 响应

{
    "type":"video",
    "title":"Wordpress Blog Design and Social Marketing Project",
    "author_name":"Maria Reyes-McDavis",
    "author_url":"http:\/\/www.flickr.com\/photos\/mariareyesmcdavis\/",
    "width":500,"height":375,
    "web_page":"http:\/\/www.flickr.com\/photos\/mariareyesmcdavis\/3478595161\/",
    "thumbnail_url":"http:\/\/farm4.staticflickr.com\/3570\/3478595161_7c2845616e_m.jpg",
    "thumbnail_width":"240",
    "thumbnail_height":"180",
    "web_page_short_url":"http:\/\/flic.kr\/p\/6ioH9D",
    "html":"<object type=\"application\/x-shockwave-flash\" width=\"500\" height=\"375\" data=\"http:\/\/www.flickr.com\/apps\/video\/stewart.swf?v=109786\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"> <param name=\"flashvars\" value=\"intl_lang=en-us&photo_secret=7c2845616e&photo_id=3478595161&flickr_show_info_box=true\"><\/param> <param name=\"movie\" value=\"http:\/\/www.flickr.com\/apps\/video\/stewart.swf?v=109786\"><\/param> <param name=\"bgcolor\" value=\"#000000\"><\/param> <param name=\"allowFullScreen\" value=\"true\"><\/param><embed type=\"application\/x-shockwave-flash\" src=\"http:\/\/www.flickr.com\/apps\/video\/stewart.swf?v=109786\" bgcolor=\"#000000\" allowfullscreen=\"true\" flashvars=\"intl_lang=en-us&photo_secret=7c2845616e&photo_id=3478595161&flickr_show_info_box=true\" height=\"375\" width=\"500\"><\/embed><\/object>",
    "license":"Attribution-ShareAlike License",
    "license_url":"http:\/\/creativecommons.org\/licenses\/by-sa\/2.0\/",
    "license_id":"5","version":"1.0",
    "cache_age":3600,
    "provider_name":"Flickr",
    "provider_url":"http:\/\/www.flickr.com\/"
}

现在从响应中获取“thumbnail_url”

于 2012-10-10T10:02:31.623 回答
0

从 flickr 的嵌入代码中提取照片 id照片秘密(你已经很清楚了)
然后,按照它:

$hash = unserialize(file_get_contents("http://api.flickr.com/services/rest/?method=flickr.photos.getInfo&api_key=7bcd4d0a48fc6fe0e86ec660f95541a9&photo_id=$flickr_photo_id&secret=$flickr_photo_secret&format=php_serial"));    
$video_url = $hash['photo']['urls']['url'][0]['_content']; 
$hash2 = unserialize(file_get_contents("http://www.flickr.com/services/oembed/?url=$video_url&format=php_serial"));
return $hash2['thumbnail_url'];
于 2013-04-03T06:17:20.590 回答