Mediaelement.js 的连续播放

发布于 2024-10-16 03:34:48 字数 339 浏览 2 评论 0原文

我有一个音乐博客 (http://www.lowerfrequencies.com/),我在其中的每篇文章中都嵌入了 Mediaelement.js 音频文件。它效果很好,我没有任何抱怨。

但是,如果我可以实现连续播放功能,当一首歌曲播放完毕时,我希望开始播放下一首歌曲。因此,如果要听最新帖子中的第一首歌曲,那么下一篇帖子中的下一首歌曲将自动开始播放。

我希望它的工作方式与 Streampad 的工作方式类似(请参阅本网站的底部:http://tuneage.tumblr.com /

谢谢, 加布

I have a music blog (http://www.lowerfrequencies.com/) in which I have and embed Mediaelement.js audio file in every post. It works great and I have no complaints.

However, I would like it if I could implement a continuous play feature in which when one song is finished playing, the next song starts playing. So if were to listen to the first song on the most recent post, then next song on the next post would start playing automatically.

I would like it to work similar to how streampad works (see the bottom of this site: http://tuneage.tumblr.com/)

Thanks,
Gabe

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

久隐师 2024-10-23 03:34:48

我认为您会想要按照以下方式做一些事情,您听听结束的内容,然后更改 src 并播放它。

        mediaElement.addEventListener('ended', function(e) {
            mediaElement.setSrc('mynewfile.mp4');
            mediaElement.play();
        }, false);

I think you'll want to do something along the lines of the following, where you listen for ended and then change the src and play it.

        mediaElement.addEventListener('ended', function(e) {
            mediaElement.setSrc('mynewfile.mp4');
            mediaElement.play();
        }, false);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文