列出播放列表项时返回的持续时间?

时间:2014-05-07 19:33:58

标签: youtube youtube-api youtube-data-api

我正在使用此网址:

https://www.googleapis.com/youtube/v3/playlistItems?
    playlistId=FLFe0SGNFqZ9E2owO5ZDZpeg&
    part=snippet,contentDetails,status

获取YouTube播放列表项目。

我包含了我感兴趣的所有part,但是我发现无法返回该项目的duration

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

这可能吗?

目前我只回来了这样的项目:

{
  "status": {
    "privacyStatus": "public"
  }, 
  "kind": "youtube#playlistItem", 
  "contentDetails": {
    "videoId": "tL-Ba86UhoE"
  }, 
  "snippet": {
    "playlistId": "FLFe0SGeFqZ9E2owO5ZDZpwg", 
    "thumbnails": {
      "default": {
        "url": "https://i1.ytimg.com/vi/tL-BA86Uhoh/default.jpg", 
        "width": 120, 
        "height": 90
      }, 
      "high": {
        "url": "https://i1.ytimg.com/vi/tL-BA86Uhoh/hqdefault.jpg", 
        "width": 480, 
        "height": 360
      }, 
      "medium": {
        "url": "https://i1.ytimg.com/vi/tL-BA86Uhoh/mqdefault.jpg", 
        "width": 320, 
        "height": 180
      }
    }, 
    "title": "Music Video", 
    "resourceId": {
      "kind": "youtube#video", 
      "videoId": "tL-BA86Uhoh"
    }, 
    "channelId": "UCFe0SGNFqZ9E2owO5ZDZpwg", 
    "publishedAt": "2013-07-06T18:41:43.000Z", 
    "channelTitle": "channeltitle", 
    "position": 0, 
    "description": "Video for"
  }, 
  "etag": "\"ePFRUfYBkeQ2ncpP9OLHvB0fDw4/CJiCG6tvFw4quQlzJq3gTrhvCNo\"", 
  "id": "FL-fX6VqgtTfCJWKNE4aVRODKSrRgEdGvw"
}, 

根本没有时间指示。 我宁愿避免因为要求退回单个视频的时间而充斥YouTube。

2 个答案:

答案 0 :(得分:2)

使用此类链接获取许多视频的播放时间:

{{1}}

答案 1 :(得分:0)

使用此功能:[仅用于Youtube Api v3]

浏览器:

你必须再发一个http请求 使用:

  

https://www.googleapis.com/youtube/v3/videos?id= {video id}& part = contentDetails& key = {api Key}

  

contentDetails

你会找到持续时间

Php:

function getDuration($apiKey,$video_id){        
    $link='https://www.googleapis.com/youtube/v3/videos?id='.$video_id.'&part=contentDetails&key='.$apiKey;
    $data = json_decode(file_get_contents($link),true);
    $duration =  $data['items'][0]['contentDetails']['duration'];   
    return $duration;
 }