我正在尝试在桌面和手机上播放带有开始和结束时间的 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!