将YouTube嵌入内容列出在本地播放列表中

时间:2019-04-06 17:32:26

标签: php youtube youtube-api gdata gdata-api

我设法创建了一个php脚本,以从精选的视频中建立播放列表。主要以我想要的方式工作

if ($search_term){
  echo "</br><h3>Search term used: " . $search_term . "</h3>";
  $result = "<iframe width=\"720\" height=\"405\" src=\"https://www.youtube.com/embed/?playlist=";
  $last = count($playlist) -1;
  for ($k=0; $k < count($playlist); $k++){
    if ($k < $last){
      $result = $result . $playlist[$k]['videoid'] . ",";
    } else {
      $result = $result . $playlist[$k]['videoid'] . "&showinfo=1&listType=playlist&rel=0\" frameborder=\"0\" allowfullscreen>";
    }
  }
    echo $result;
}

唯一缺少的是在播放列表中具有视频列表,就像在YouTube主页上一样。

我想知道API是否可以创建类似的播放列表,或者我是否必须自己构建一个kludgy版本?

0 个答案:

没有答案