What is the best way to embed Youtube videos?(嵌入 Youtube 视频的最佳方式是什么?)
问题描述
我正在建立一个视频网站,我希望我的用户能够从 Youtube 上传或嵌入视频.Youtube API 似乎不提供从他们的网站上传视频,是吗?所以我尝试通过 iframe
使用 PHP 嵌入视频.代码如下:
I'm building a video website and I want my users to be able to upload or embed videos from Youtube. The Youtube API doesn't seem to provide video upload from their website, or do they?
So I tried to embed videos via an iframe
with PHP. Here is the code:
<?php
$source=$_POST['source'];
?>
<html>
<div id="bo"><?php echo $source;?></div>
<form action="altupload.php" method="post">
<input type="text" name="source">
<input type="submit">
</form>
</html>
但我得到的是:
<html><div id="bo"><iframe width="560" height="315" src="http://www.youtube.com/embed/tZa5hyb0_wA" frameborder="0" allowfullscreen></iframe></div>`
<html>
<form action="altupload.php" method="post">
<input type="text" name="source">
<input type="submit">
</form>
</html>
谁能推荐一些其他的方法来做到这一点?谢谢
Can anyone recommend some other ways to do it? Thanks
推荐答案
允许用户仅上传来自 URL 的 youtube 视频 ID 为:
Allow the user upload only youtube video ID from URL as :
http://www.youtube.com/watch?v=Vw5FDZRGTL0
视频 ID:Vw5FDZRGTL0
你可以设置IFrame标签的其他选项:
and you can set other options of IFrame tag :
<iframe width="420" height="315" src="http://www.youtube.com/embed/<?php echo $videoID; ?>" frameborder="0" allowfullscreen></iframe>
祝你好运
这篇关于嵌入 Youtube 视频的最佳方式是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:嵌入 Youtube 视频的最佳方式是什么?
基础教程推荐
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01