Youtube API v3,如何获得视频持续时间?

我正在使用Youtube API v3来搜索YouTube。

https://developers.google.com/youtube/v3/docs/search

正如你所看到的,响应JSON不包含视频持续时间。 有没有办法获得视频的持续时间? 最好不要再为结果中的每个元素调用API(除非这是获得持续时间的唯一方法)。


进行搜索调用后,您将不得不打电话给YouTube数据API的视频资源。 您可以在搜索中放置50个视频ID,因此您不必为每个元素调用它。

https://developers.google.com/youtube/v3/docs/videos/list

您需要设置part = contentDetails,因为持续时间在那里。

例如下面的调用:

https://www.googleapis.com/youtube/v3/videos?id=9bZkp7q19f0&part=contentDetails&key={YOUR_API_KEY}

给出这个结果:

{
 "kind": "youtube#videoListResponse",
 "etag": ""XlbeM5oNbUofJuiuGi6IkumnZR8/ny1S4th-ku477VARrY_U4tIqcTw"",
 "items": [
  {

   "id": "9bZkp7q19f0",
   "kind": "youtube#video",
   "etag": ""XlbeM5oNbUofJuiuGi6IkumnZR8/HN8ILnw-DBXyCcTsc7JG0z51BGg"",
   "contentDetails": {
    "duration": "PT4M13S",
    "dimension": "2d",
    "definition": "hd",
    "caption": "false",
    "licensedContent": true,
    "regionRestriction": {
     "blocked": [
      "DE"
     ]
    }
   }
  }
 ]
}

时间被格式化为ISO 8601字符串。 PT代表时间持续时间,4M是4分钟,13S是13秒。


得到它了!

$dur = file_get_contents("https://www.googleapis.com/youtube/v3/videos?part=contentDetails&id=$vId&key=dldfsd981asGhkxHxFf6JqyNrTqIeJ9sjMKFcX4");



 $duration =json_decode($dur, true);
  foreach ($duration['items'] as $vidTime) {
     $vTime= $vidTime['contentDetails']['duration'];

在那里它返回Youtube API V3的时间。 [关键是由方式;]我使用了$vId ,我已从频道的视频返回列表中获得,我正在显示来自...的视频...

它的工作原理.. :)谷歌真的需要包括在片段的持续时间,所以你可以通过一个电话而不是两个......叹息.......这是在他们的'wontfix'名单。


我使用YouTube API v3编写了以下课程以获得YouTube视频的持续时间。 (它也会返回缩略图)

class Youtube
{
    static $api_key = '<API_KEY>';
    static $api_base = 'https://www.googleapis.com/youtube/v3/videos';
    static $thumbnail_base = 'https://i.ytimg.com/vi/';

    // $vid - video id in youtube
    // returns - video info
    public static function getVideoInfo($vid)
    {
        $params = array(
            'part' => 'contentDetails',
            'id' => $vid,
            'key' => self::$api_key,
        );

        $api_url = Youtube::$api_base . '?' . http_build_query($params);
        $result = json_decode(@file_get_contents($api_url), true);

        if(empty($result['items'][0]['contentDetails']))
            return null;
        $vinfo = $result['items'][0]['contentDetails'];

        $interval = new DateInterval($vinfo['duration']);
        $vinfo['duration_sec'] = $interval->h * 3600 + $interval->i * 60 + $interval->s;

        $vinfo['thumbnail']['default']       = self::$thumbnail_base . $vid . '/default.jpg';
        $vinfo['thumbnail']['mqDefault']     = self::$thumbnail_base . $vid . '/mqdefault.jpg';
        $vinfo['thumbnail']['hqDefault']     = self::$thumbnail_base . $vid . '/hqdefault.jpg';

        $vinfo['thumbnail']['sdDefault']     = self::$thumbnail_base . $vid . '/sddefault.jpg';
        $vinfo['thumbnail']['maxresDefault'] = self::$thumbnail_base . $vid . '/maxresdefault.jpg';

        return $vinfo;
    }
}

请注意,您需要API_KEY才能使用YouTube API:

  • 在此创建一个新项目:https://console.developers.google.com/project
  • 在“APIs&auth” - > API下启用“YouTube数据API”
  • 在“APIs&auth” - > Credentials下创建新的服务器密钥
  • 链接地址: http://www.djcxy.com/p/28999.html

    上一篇: Youtube API v3 , how to get video durations?

    下一篇: Show Youtube video source into HTML5 video tag?