在html5视频标签中,是否可以按顺序播放源标签中列出的媒体资源?
问题是,我的视频托管在视频网站上,较长的视频会分为几个部分。我想在自己的网站上播放 html5 video 标签中的这些剪辑,是否可以按顺序播放源标签中列出的媒体资源?
我用谷歌搜索并进入了w3c的html5视频规范页面,找到一个名为startOffsetTime的属性,我尝试按照规范中的建议将此属性的值分配给每个媒体资源,但它仍然不起作用。
The problem is, my videos are hosted on a video site, longer videos will be divided into several parts. I want to play these clips in html5 video tag on my own site, is it possible to play media resources listed in source tags sequentially?
I googled and got to the w3c's html5 video spec page, find an attribute named startOffsetTime, I tried to assign value for this attribute to each media resource as suggested in the spec, but it still doesn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当 JavaScript 的
onend
事件被触发时,您可以加载下一个剪辑。查看 markcial 的回答,位于 另一个线程。
You can load the next clip when JavaScript's
onend
event is triggered.Check out markcial's answer in another thread.