1

我正在尝试在桌面和手机上播放带有开始和结束时间的 youtube 视频(必须在 safari 浏览器 ios 中)。我正在获取这样的 youtube url 表单数据库。

$video_location='http://www.youtube.com/watch?v=2Tvy_Pbe5NA&start=10&end=29';

我正在使用下面的代码来播放视频。

   if (strpos($video_location,'youtube') !== false)
      {
       $parsedurl = parse_url("$video_location");
       $queryvars = explode("&",$parsedurl["query"]);
       $string1 = str_replace("=","/",$queryvars[0]);
       $string2 = $queryvars[1]."&".$queryvars[2];
       $cleanurl = "http://www.youtube.com/".$string1."&".$string2."&".'version=3';
       $videodata = "<embed width=\"100%\" height=\"400px\" src=\"$cleanurl\"
       type=\"application/x-shockwave-flash\">
    </embed>";
      }
      else
      { 
       another condition
      }

    above code is working only in desktops with start and end times but in mobile devices start and end times not working properly.thanks!
4

1 回答 1

1

版本使它成为 Flash 播放器 aka AS3,iOS 可以播放的是 html5 播放器。摆脱 version=3 并查看我在Playing YouTube video with start and end time using YouTube API 上的回答

如此处所述:developers.google.com/youtube/player_parameters#end End 参数仅在 AS3(flash)播放器中受支持,因此在 HTML5 播放器中的 iOS 中不可用。

于 2013-10-22T13:53:33.070 回答