如何通过彩信传输://
有一些关于此的帖子,但到目前为止,我还没有看到任何好的答案。有没有办法可以使用 Android 从 mms:// uris 流式传输音频? MediaPlayer 似乎不喜欢这些流。另外,用 http 或 rtsp 更改 mms:// 也不起作用。有人找到解决方法吗?谢谢!
There are some posts about this, but so far, i haven't seen any good answer. Is there a way i can stream audio from mms:// uris with Android?. MediaPlayer seems not to like these streams. Also changing mms:// with http or rtsp doesn't work either. Did someone find a workaround to this?. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为了节省一些时间,您可以使用以下库来播放彩信流:
FFMpegMediaPlayer。
它具有与 android MediaPlayer 相同的界面,因此易于使用,并且还附带可选的预构建二进制文件。
我在自己的彩信流应用程序中使用它,没有遇到任何问题。
To save some time you can use the following library for playing mms streams:
FFMpegMediaPlayer.
It has the same interface as the android MediaPlayer so its easy to work with and it comes with optional prebuilt binaries too.
I use it in my own mms streaming application and I haven't had any problems.