如何使用 mediaelement.js 获取 HTML5 音频播放列表?
我尝试在 mediaelement.js 中搜索音频播放列表的示例。但我没有找到,mediaelement.js 支持音频播放列表吗?如果是这样,请支持我的示例代码或链接。非常感谢。
I tried to search the example of audio playlist in mediaelement.js. But i found none, is mediaelement.js supports audio playlist? If so, please kindly support me the sample code or links. Thank you very much.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我设法获得了一个超级基本(阅读:hacky)的播放列表演示,该演示在我正在使用的 WordPress 主题中运行。您所要做的就是使用一组 ID、一个类或本例中的
标记来设置多个媒体元素。
然后,您可以使用 JS 查看播放器何时结束(停止播放音乐)并运行一些基本条件来查看哪个播放器正在播放、下一个播放器应该播放什么以及如果没有下一个播放器,则从头开始。这又很hacky,但它似乎对我有用。
HTML:
JavaScript:
I managed to get a super basic (read: hacky) demo of a playlist working in a WordPress theme I’ve got going. All you have to do is setup multiple media elements using a set of IDs, a class or in this case the
<audio>
tag.Then you can use JS to see when a player has ended (stopped playing music) and run some basic conditionals to see which player is playing, what player should play next and if there is no next player, start over from the beginning. Again this is very hacky, but it seems to be working for me.
HTML:
JavaScript:
不,没有播放列表。
如果您正在寻找拥有该功能的播放器,请查看此处:http://praegnanz.de/html5video/
此外,您只需使用 mediaelementjs JavaScript API 即可轻松制作播放列表。这是非常简单的任务,IMO 不需要额外的支持。
Nope, no playlist.
If you looking for player that has one, check here: http://praegnanz.de/html5video/
Also, you can easy make playlist simply by using mediaelementjs JavaScript API. It is pretty simple task, IMO there is no need for extra support for that.