在 MediaPlayer SDK8 上进行流式传输时出现问题

发布于 2024-11-14 14:27:29 字数 147 浏览 4 评论 0原文

我直接通过服务(SDK 8 及更高版本)中的 Mediaplayer 流式传输直播广播 URL。一些客户表示,他们在流之间听到了一些杂音和杂音。我在这里没有做任何不同的事情,只是允许 MediaPlayer 播放音频。有人能告诉我为什么会发生这种情况吗?

-哈里

I'm streaming a live radio url directly through Mediaplayer in a service (SDK 8 and above). Some clients are saying that they are hearing some blips and bloops in between the stream. I'm not doing anything different here and just allowing the MediaPlayer to play the audio. Can someone tell me why is this happening?

-Hari

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

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

发布评论

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

评论(1

玩物 2024-11-21 14:27:29

我不确定它是否会有帮助,但我可以告诉你我使用 http 流播放 mp3 的方式,例如:

1:代码

mediaPlayer = MediaPlayer.create(this, Uri.parse("http://vprbbc.streamguys.net:80/vprbbc24.mp3"));
mediaPlayer.start();

2:.pls 文件< /strong>

此 URL 来自 BBC,仅作为示例。这是一个 .pls 文件,我在 Linux 上下载

wget http://foo.bar/file.pls

,然后用 vim 打开(使用你最喜欢的编辑器;),我看到了这个文件中的真实 URL。不幸的是,并非所有 .pls 都是这样的纯文本。

使用 Android 1.6 和 2.2 进行测试。

i'm not sure if it's gonna help, but i can tell you the way i play using http streaming for a mp3, for example:

1: the code

mediaPlayer = MediaPlayer.create(this, Uri.parse("http://vprbbc.streamguys.net:80/vprbbc24.mp3"));
mediaPlayer.start();

2: the .pls file

This URL is from BBC just as an example. It was an .pls file that on linux i downloaded with

wget http://foo.bar/file.pls

and then i opened with vim (use your favorite editor ;) and i've seen the real URLs inside this file. Unfortunately not all of the .pls are plain text like that.

tested with android 1.6 and 2.2.

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