将视频添加到网站

发布于 2025-01-05 19:27:44 字数 338 浏览 0 评论 0原文

好吧,我会尝试说得更具体一些。

该网站尚未启动并运行,但我将使用 YouTube 等托管网站。 我的意思是我尝试使用以下代码添加视频

<video width="320" height="240" controls="controls">
<source src="parklane.mp4" type="video/mp4" />
<object data="parklane.mp4" width="320" height="240">
<embed src="parklane.swf" width="320" height="240">

Alright I´m gonna try to be a bit more specific.

The website is not yet up and running, but I will be using a hosting site such as youtube.
What I meant to say is that I tried adding a video using the following code

<video width="320" height="240" controls="controls">
<source src="parklane.mp4" type="video/mp4" />
<object data="parklane.mp4" width="320" height="240">
<embed src="parklane.swf" width="320" height="240">

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

等待我真够勒 2025-01-12 19:27:44

如果您使用 YouTube,那么他们会提供一个很好的嵌入代码供您添加到您的页面。

例如

这会将此页面 http://www.youtube.com/watch?v=teHfyby_veU 中的视频以 420 像素宽嵌入到您的网站上高度为 315 像素。

如果您想从数据库或视频 ID 列表动态添加它们,您只需更改嵌入代码中的 ID。

例如 http://www.youtube.com/watch?v=**teHfyby_veU**

您可以通过更改 iFrame 的宽度和高度来调整尺寸。

如果您需要的不仅仅是这些基础知识,那么您可能需要查看 youtube api - http://code.google.com/apis/youtube/overview.html

If you're using YouTube then they provide a nice embedding code for you to add to your page.

e.g <iframe width="420" height="315" src="http://www.youtube.com/embed/teHfyby_veU" frameborder="0" allowfullscreen></iframe>

This will embed the video from this page http://www.youtube.com/watch?v=teHfyby_veU on your site at 420px wide and 315px high.

If you want to dynamically add them from a database or list of video ids you just need to change the id in the embedding code.

e.g http://www.youtube.com/watch?v=**teHfyby_veU**

<iframe width="420" height="315" src="http://www.youtube.com/embed/**teHfyby_veU**" frameborder="0" allowfullscreen></iframe>

You can adjust the dimensions by changing the width and height of the iFrame.

If you need anything more than these basics then you might want to have a look at the youtube api - http://code.google.com/apis/youtube/overview.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文