如何通过彩信传输://

发布于 2024-09-09 07:15:59 字数 144 浏览 6 评论 0原文

有一些关于此的帖子,但到目前为止,我还没有看到任何好的答案。有没有办法可以使用 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 技术交流群。

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

发布评论

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

评论(2

夕色琉璃 2024-09-16 07:15:59
  1. 下载 Android NDK
  2. 然后下载修改后的 libmms 和 libffmpeg http://radiotime.com/apps/android.aspx< /a>
  3. 基本上你必须有 2 个线程:
    • 第一个线程用于从彩信站下载音频数据,然后写入 wma 文件
    • 第二个线程使用 libffmpeg 将此 wma 解码为 PCM 数据。
  1. Download Android NDK
  2. Then download modified libmms and libffmpeg at http://radiotime.com/apps/android.aspx
  3. basically you has to have 2 threads:
    • 1st thread for downloading the audio data from mms station then write to a wma file
    • 2nd thread decode this wma to PCM data using the libffmpeg.
白云不回头 2024-09-16 07:15:59

为了节省一些时间,您可以使用以下库来播放彩信流:
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.

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