ユーザーがちらつきビデオリンクをアップロードするビデオギャラリーを作成する必要があります。動画のサムネイルが必要です。javascript/php を使用してどのように行うことができますか?
質問する
307 次
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 に答える