将视频添加到网站
好吧,我会尝试说得更具体一些。
该网站尚未启动并运行,但我将使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 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