我可以指定我的视频何时在 html 上开始播放吗?
我希望我的视频在嵌入 html 时显示指定的图像 基本上我正在做以下事情: <代码> <嵌入src =“video.m4v”宽度=“520”高度=“456”自动播放=“假”控制器=“真”类型=“video/quicktime”比例=“tofit”pluginspage=“http://www” .apple.com/quicktime/download/" bgcolor="black">
是否有我可以添加的特定参数来说明视频何时开始?
I want my video to show a specified image while embedding it on html
basically I'm doing the following:
<embed src="video.m4v" width="520" height="456" autoplay="false" controller="true" type="video/quicktime" scale="tofit" pluginspage="http://www.apple.com/quicktime/download/" bgcolor="black"> </embed>
Is there a specific parameter that I can add that says when the video shall start?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
embed
标记没有指定嵌入内容的开始时间的属性。根据播放视频的内容,您可以将
param
标记与flashvars
结合使用。There are no attributes of the
embed
tag that specify the start time of what's embedded.Depending on what's playing your video, you could use a
param
tag withflashvars
.