播放器通过 http/rtsp 流式传输音频(还有 shoutcast)BlackBerry 应用程序

发布于 2024-12-25 08:19:00 字数 368 浏览 0 评论 0原文

我如何通过 BB 的 http 和 rtsp 协议为黑莓开发一个简单的音频或音频/视频播放器?

我会尝试使用:

Player p = javax.microedition.media.Manager.createPlayer("rtsp://...");
p.realize();
VolumeControl volume = (VolumeControl)p.getControl("VolumeControl");
volume.setLevel(30);
p.prefetch();
p.start();

它在使用 Eclipse 插件的模拟器上不起作用。

编辑:我特别需要播放Flash 广播和shoutcast。

how can i develop a simple audio or audio/video player for blackberry over http and rtsp protocol for BB ?

I'll try to use:

Player p = javax.microedition.media.Manager.createPlayer("rtsp://...");
p.realize();
VolumeControl volume = (VolumeControl)p.getControl("VolumeControl");
volume.setLevel(30);
p.prefetch();
p.start();

it doesn't work on simulator using Eclipse plugin.

EDIT: I need to play Flash radio and shoutcast especially.

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

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

发布评论

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

评论(1

べ映画 2025-01-01 08:19:00

请在此处查看 RIM 的“流媒体 - 从头到尾”应用程序:

http://supportforums.blackberry.com/t5/Java-Development/Streaming-media-Start-to-finish/ta-p/488255

实现流式传输非常复杂移动设备上的媒体应用程序正在处理不同的传输协议:Wi-Fi、3G、EDGE 等。在开始使用时,我会坚持仅使用 Wi-Fi。要在模拟器上执行此操作,请执行以下操作:

  1. 转到无线连接并连接到“默认 WLAN 连接”,这将使用您的普通 PC 网络连接进行 Internet 连接。
  2. 将“;interface=wifi”附加到您的流媒体 URL。

一旦应用程序通过 Wi-Fi 运行,您就可以随时构建传输处理程序。

Check out the "Streaming media - Start to finish" application from RIM here:

http://supportforums.blackberry.com/t5/Java-Development/Streaming-media-Start-to-finish/ta-p/488255

A lot of the complexity in implementing a streaming media application on a mobile device is handling the different transport protocols: Wi-Fi, 3G, EDGE etc. Whilst getting started I would stick to using Wi-Fi only. To do this on the simulator do the following:

  1. Go to Wireless Connections and connect to the 'Default WLAN connection', this will use your normal PC network connection for Internet connectivity.
  2. Append ";interface=wifi" to your streaming URLs.

You can always build in a transport handler later once the app is working over Wi-Fi.

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