jPlayer 和 PhoneGap 构建兼容性

发布于 2024-11-28 02:53:57 字数 304 浏览 2 评论 0原文

我正在尝试将 jPlayer 用于 Web 应用程序,该应用程序将使用 PhoneGap Build 服务针对 iPhone、Android 和 Blackberry 进行本机编译。我正在使用该播放器播放简短的 MP3 音频片段,它在网络浏览器中运行良好。

但是,当使用 PhoneGap 编译此文件时,音频将不会播放,并且不会在播放器中显示文件的长度。尽管我使用相对路径(../audio/myaudio.mp3)引用它,但它看起来找不到该文件。

有人有让 jPlayer 在通过 PhoneGap 编译的本机应用程序上工作的经验吗?

I'm trying to use jPlayer for a web app that will be native compiled for iPhone, Android and Blackberry using the PhoneGap Build service. I'm using the player to play short MP3 audio snippets and it works fine in the web browser.

However, when this is compiled using PhoneGap, the audio won't play and it doesn't display the length of the file in the player. It looks like it can't find the file, although I'm referencing it using a relative path (../audio/myaudio.mp3).

Does anybody have any experience of getting jPlayer to work on a native app compiled through PhoneGap?

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

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

发布评论

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

评论(1

鹊巢 2024-12-05 02:53:57

这可能与 PhoneGap Build 根本无关。它可能存在问题,因为 html5 音频支持在许多移动平台上都很糟糕。 Html5 音频不适用于 Android 2.x 或更旧的黑莓设备。即使在支持 html5 音频的情况下,它的行为也并不总是符合您的预期(无法搜索、无法一次播放多个剪辑等……)。您可能需要查看phonegap的Media类,以实现跨平台一致的音频播放,即使不支持html5音频:http://docs.phonegap.com/en/2.0.0/cordova_media_media.md.html#Media

This is not likely related to PhoneGap Build at all. It is probably having issues b/c html5 audio support is terrible across many mobile platforms. Html5 audio does not work on Android 2.x or older blackberry devices. Even where html5 audio is supported, it does not always behave as you might expect (can't seek, can't play more than one clip at a time, etc...). You might want to look at phonegap's Media class for consistent audio playback across platforms, even where html5 audio is not supported: http://docs.phonegap.com/en/2.0.0/cordova_media_media.md.html#Media

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文