Flowplayer 向视频添加步骤
大家好,我怎样才能使用一些 HTML 添加步骤到视频中,例如:
步骤 1 -> 00:00 | 00:00步骤2-> 03:01 | 03:01步骤3-> 05:33。
Flowplayer 是否为此提供了一些功能?
谢谢。
Hey guys how can I add steps to a video with some HTML like:
Step 1 -> 00:00 | Step 2 -> 03:01 | Step 3 -> 05:33.
Is there something that Flowplayer offers for this?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您可以通过 Flowplayer 的 JavaScript API 来完成此操作。这是示例。
基本上,您只需调用播放器上的
seek
方法即可。Yes, you can do it through Flowplayer's JavaScript API. Here's an example.
Basically, you just call the
seek
method on the player.尝试一下这个非常简单的例子。它适用于 Chrome 和 Firefox。我只是使用纯 html 5 和 javascript 以及一个按钮(顺便说一句,它呈现得相当小),并且我使用了来自 此处。希望这有帮助。
<代码>
<代码>
Try this really simple example to play with. It works in chrome and firefox. I am just using plain html 5 and javascript and a button (which is rendered pretty small btw) and I used alot of info from here. Hope this helps.