gpt4 book ai didi

php - 如何制作全屏替换youtube视频的url链接

转载 作者:行者123 更新时间:2023-11-28 14:21:43 25 4
gpt4 key购买 nike

现在我正在使用此代码用于播放 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 完整歌曲高清宣传视频 youtube.com

和类似的描述 中国惊喜观看这段与音乐 Composer Anirudh、Dhanush、Shruti Hassan、Aishwarya 和音响工程师 Sivakumar 一起录制歌曲期间拍摄的独家视频

有点像 facebook 做的。

怎么做,谁有答案。

最佳答案

试试,allowFullScreen="true" 在你的 embed 属性中


要获取其他视频信息,例如 description,您必须使用 youtube data api, Reference Guide: Data API Protocol

您可以使用 curl 从服务器端获取信息。

关于php - 如何制作全屏替换youtube视频的url链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8426627/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com