-1

チューブ ビデオ リンクがあります: 例: http://www.youtube.com/watch?v=EF5FnKTsIbc&feature=youtube_gdata_player PHP を使用してこのリンクの説明とビデオ タイトルと画像を取得したいのですが、どうすればよいですか?

4

2 に答える 2

7

ここにコードがあります。私はそれをテストし、うまく機能します。IBM 開発者ネットワークに感謝します

ここでコード全体を見ることができます。 http://www.ibm.com/developerworks/xml/library/x-youtubeapi/


利用方法

// For the video >>> youtube.com/watch?v=37l11UzbvvA

// Video id = 37l11UzbvvA;

$vid="37l11UzbvvA";

// set video data feed URL

$feedURL = 'http://gdata.youtube.com/feeds/api/videos/' . $vid;

// read feed into SimpleXML object

$entry = simplexml_load_file($feedURL);

$video = parseVideoEntry($entry);

echo $video->title;

関数 > parseVideoEntry()

// function to parse a video <entry>
function parseVideoEntry($entry) {      
  $obj= new stdClass;

  // get author name and feed URL
  $obj->author = $entry->author->name;
  $obj->authorURL = $entry->author->uri;

  // get nodes in media: namespace for media information
  $media = $entry->children('http://search.yahoo.com/mrss/');
  $obj->title = $media->group->title;
  $obj->description = $media->group->description;

  // get video player URL
  $attrs = $media->group->player->attributes();
  $obj->watchURL = $attrs['url']; 

  // get video thumbnail
  $attrs = $media->group->thumbnail[0]->attributes();
  $obj->thumbnailURL = $attrs['url']; 

  // get <yt:duration> node for video length
  $yt = $media->children('http://gdata.youtube.com/schemas/2007');
  $attrs = $yt->duration->attributes();
  $obj->length = $attrs['seconds']; 

  // get <yt:stats> node for viewer statistics
  $yt = $entry->children('http://gdata.youtube.com/schemas/2007');
  $attrs = $yt->statistics->attributes();
  $obj->viewCount = $attrs['viewCount']; 

  // get <gd:rating> node for video ratings
  $gd = $entry->children('http://schemas.google.com/g/2005'); 
  if ($gd->rating) { 
    $attrs = $gd->rating->attributes();
    $obj->rating = $attrs['average']; 
  } else {
    $obj->rating = 0;         
  }

  // get <gd:comments> node for video comments
  $gd = $entry->children('http://schemas.google.com/g/2005');
  if ($gd->comments->feedLink) { 
    $attrs = $gd->comments->feedLink->attributes();
    $obj->commentsURL = $attrs['href']; 
    $obj->commentsCount = $attrs['countHint']; 
  }

  // get feed URL for video responses
  $entry->registerXPathNamespace('feed', 'http://www.w3.org/2005/Atom');
  $nodeset = $entry->xpath("feed:link[@rel='http://gdata.youtube.com/
  schemas/2007#video.responses']"); 
  if (count($nodeset) > 0) {
    $obj->responsesURL = $nodeset[0]['href'];      
  }

  // get feed URL for related videos
  $entry->registerXPathNamespace('feed', 'http://www.w3.org/2005/Atom');
  $nodeset = $entry->xpath("feed:link[@rel='http://gdata.youtube.com/
  schemas/2007#video.related']"); 
  if (count($nodeset) > 0) {
    $obj->relatedURL = $nodeset[0]['href'];      
  }

  // return object to caller  
  return $obj;      
} 

Lotharの通知によると、Json リンクは次のとおりです。json_decode を使用して、この JSON データを簡単に解析できます。

注: json_decode 関数は PHP>=5.2.0 で動作します

http://gdata.youtube.com/feeds/api/videos/[VIDEO_ID]?v=2&alt=jsonc

例えば

http://gdata.youtube.com/feeds/api/videos/37l11UzbvvA?v=2&alt=jsonc
于 2012-08-24T05:30:37.817 に答える
2

以下のコードは、私のスクリプトから直接コピーして貼り付けたものです。まだ機能するかどうかはわかりません。あなたはそれを試してみることができます。

<?php
$id = '38z8TPtT1BE';
$url = "http://gdata.youtube.com/feeds/api/videos/$id?v=2&alt=json";
$ch = curl_init(); 
curl_setopt($ch, CURLOPT_URL, $url); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);  
$output = curl_exec($ch); 
curl_close($ch);  
print_r(json_decode($output));
?>

Youtube API のドキュメントはあなたのバイブルです。あなたはそこに欲しいものすべてを手に入れるでしょう。リンクは、@ceejayoz がコメント セクションで提供したものです。

PS: SO へようこそ。次に問題が発生した場合は、既に行ったことを公開してください。ここにいる人たちはきっとあなたを助けてくれるでしょう。

于 2012-04-10T17:17:30.477 に答える