在我的 Android 应用程序中播放 WMA
简单的问题:
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不将 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.