使用javascript播放mp3文件
通过 javascript 播放 mp3(非常短)文件的最佳跨浏览器方式是什么? 我尝试了不同的方法,但总是有一个问题...
编辑1:
我不需要一个“完整”的播放器,我只需要一个每次发生事情时都可以调用的函数
编辑2 :
好吧,我必须更好地解释我的问题。服务器是连接到 LAN 中的智能手机,但并不总是连接到互联网。我想使用 mp3,因为该文件仅重 3kb(而不是 60kb 的 wav),但如果播放该文件的机制太“重”(播放器或 jquery.js),我认为最好使用 wav 文件。 其他建议?
Which is the best and cross-browser way to play a mp3 (very short) file via javascript?
I tried different ways but there's always a problem...
EDIT 1:
I don't need a "full" player, I just need a function than I can call everytime something happens
EDIT 2:
Ok, I've to explain better my problem. The server is a smartphone connected in a LAN, but not always to the internet. I want to use mp3 because the file weighs only 3kb (instead of 60kb of wav), but if the mechanism to play this file is too "heavy" (a player or jquery.js) I think is better to use the wav file.
Other suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用这个:
这个的文档(
HTMLAudioElement
)可以在 MDN 上找到,注意大多数控件都是由HTMLMediaElement
。Use this:
The documentation for the this (
HTMLAudioElement
) can be found at MDN, note that most of the controls are inherited byHTMLMediaElement
.只需直接下载音频文件即可加载页面。检测浏览器是否支持 MP3。如果是这样,请逐步增强对 AUDIO 标签的直接下载。下面是一个示例:
Javascript:
我想大多数预建的 MP3 播放插件都是这样工作的。
更新:
由于您已经编辑了问题以指定您更喜欢不使用 jQuery 的解决方案,因此我将指出,重写此问题以不使用 jQuery 是微不足道的。它只是更长而且不太优雅。请记住,从 CDN 加载的 Javascript 库通常由浏览器缓存。
Load the page with just a direct download to the audio file. Detect if the browser supports MP3s. If it does, progressively enhance the direct download into an AUDIO tag. Here's a sample:
And the Javascript:
I would imagine that most of the zillions of prebuilt MP3 playing plugins work like this.
UPDATE:
Since you've edited the question to specify that you'd prefer a solution that doesn't use jQuery, I will point out that rewriting this to not use jQuery is trivial. It's just longer and less elegant. Do keep in mind that Javascript libraries loaded from CDNs are usually cached by the browser.
尝试使用我自己的脚本,
当链接该脚本时,您唯一需要做的就是
try using my own script,
and when that script is linked, the only thing you need to do is