0

我需要在我的站点中嵌入 jQuery 音频播放器。src 来自 DB。问题是没有一种固定格式。它可以是 3gp、mov.ogg.mp3 等

我搜索了它并找到了许多 jQuery 插件,但它们都仅限于 2 或 3 种格式。我想知道是否有任何支持所有格式的 jQuery 插件?

4

2 回答 2

1

正如constantinius 所说,jquery 不会播放声音——浏览器会。现在假设大多数用户将拥有支持 HTML5 的浏览器还为时过早。同时,播放音频文件的最便携(跨浏览器)方式是使用 embed 标签。

如果您需要支持多种不同的文件类型,请使用(例如)ffmpeg 在服务器端转换它们。

尝试使用 java applet 或 flash 来实现对不同文件类型的支持是可能的(但我怀疑 altter 将需要比前者更多的工作)。

于 2012-07-09T13:52:59.583 回答
0

The quicktime player will play all of those formats, the only downside is that your users will have to install the quicktime plugin if they don't already have it.

Unfortunately Flash does not support all of these formats so you won't be able to use a flash player, which is already installed more often than not.

于 2012-07-09T14:09:01.303 回答