在我的 Android 应用程序中播放 WMA

发布于 2024-11-29 16:45:34 字数 402 浏览 1 评论 0原文

简单的问题:

我正在使用 MediaPlayer 播放 mp3 文件(它们播放得很好),但我也需要对 WMA 文件的支持。我知道有些设备支持它,但不是全部,但我想要某种方式,我确信它可以在任何设备上播放。有什么我可以实现或做的事情,以便我可以播放 Mp3 和 WMA 文件吗?

现在我有两个测试按钮,具有相同的代码,一个源是 Mp3(有效),另一个具有 WMA 相同代码(失败)

MediaPlayer mp = MediaPlayer.create(this, Uri.fromFile(source));
mp.start(); // no need to call prepare(); create() does that for you

谢谢。 亚历克斯

Simple question:

I'm using MediaPlayer to play mp3 files (they play just fine), but also i need support for WMA files. I know some devices support it, but not all of them, but i want some way where I'm sure it will play in any device. Is there anything i can implement or do so i can play Mp3 and WMA files?

right now i got two test buttons, with the same code, one the source is an Mp3 (works) the other same code with a wma (fails)

MediaPlayer mp = MediaPlayer.create(this, Uri.fromFile(source));
mp.start(); // no need to call prepare(); create() does that for you

Thanks.
Alex

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

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

发布评论

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

评论(1

踏月而来 2024-12-06 16:45:34

为什么不将 wma 文件重新编码为 mp3 或 ogg(优先)? wma 是一种封闭格式,它的支持依赖于一些在 Android 设备上并不总是可用的库,并且它们不是 AOSP 树本身的一部分。话虽这么说,大多数 AOSP 衍生的 ROM 都不能播放 wma。
因此,最好的办法是将文件重新编码为 ogg 或 mp3。

Why don't you reencode the wma file to mp3 or ogg (preferentially)? wma is a closed format and it's support depend on some libraries not always available on Android devices, and they're not part of the AOSP tree itself. That being said, most AOSP derived ROMs wont play wma's.
So the best thing to do is to reencode the files to ogg or mp3.

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