现在我正在使用 此代码用于播放YouTube视频
<?php
// Replace Youtube URLs with embed code
function embedYoutube($text)
{
$search = '% # Match any youtube URL in the wild.
(?:https?://)? # Optional scheme. Either http or https
(?:www\.)? # Optional www subdomain
(?: # Group host alternatives
youtu\.be/ # Either youtu.be,
| youtube\.com # or youtube.com
(?: # Group path alternatives
/embed/ # Either /embed/
| /v/ # or /v/
| /watch\?v= # or /watch\?v=
) # End path alternatives.
) # End host alternatives.
([\w\-]{10,12}) # Allow 10-12 for 11 char youtube id.
\b # Anchor end to word boundary.
%x';
$replace = '<object width="425" height="344">
<param name="movie" value="http://www.youtube.com/v/$1?fs=1"</param>
<param name="allowFullScreen" value="true"></param>
<param name="allowScriptAccess" value="always"></param>
<embed src="http://www.youtube.com/v/$1?fs=1"
type="application/x-shockwave-flash" allowscriptaccess="always" width="425" height="344">
</embed>
</object>';
return preg_replace($search, $replace, $text);
}
$string = 'This is the forum post content with some Youtube links:'."\n".
'http://www.youtube.com/watch?v=NLqAF9hrVbY'."\n".
'http://www.youtube.com/v/u1zgFlCw8Aw?fs=1&hl=en_US';
echo embedYoutube($string);
?>
但这些视频无法在全屏模式下播放,而且这些嵌入式代码不会显示视频的任何信息或从中拍摄的信息。
例如。 http://www.youtube.com/watch?v=YR12Z8f1Dh8 显示全屏选项视频 标题 为什么这个Kolaveri Di Full Song促销视频高清 youtube.com
和描述一样 Chinna惊喜 在音乐作曲家Anirudh,Dhanush,Shruti Hassan,Aishwarya和Sound Engineer Sivakumar的录制过程中观看这首独家视频拍摄
像facebook那样的事情。怎么做,任何人都有答案。
答案 0 :(得分:0)
在allowFullScreen="true"
属性
embed
要获取description
等其他视频信息,您必须使用youtube数据api,
Reference Guide: Data API Protocol
您可以使用curl
从服务器端获取信息。