将 LiveStream 合并到 Android 应用程序中

发布于 2024-11-02 09:23:47 字数 173 浏览 1 评论 0原文

有没有办法在 Android 应用程序中合并 LiveStream(来自 http://www.livestream.com)?

似乎可以提取 m3u8 文件,也许这是一条可行的路线?

谢谢

Is there a way in incorporate a LiveStream (from http://www.livestream.com) in an Android app?

It seems that its possible to extract a m3u8 file, perhaps this is a viable route to go?

Thanks

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

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

发布评论

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

评论(1

薄荷港 2024-11-09 09:23:47

您可以使用 livestream 提供的 RTSP 流,并使用意图操作 VIEW 打开它,这将使用默认播放器打开流。

要获取适当的 RTSP url,您应该向自定义 url 发送请求:

"http://x" + yourChannel + "x.channel-api.livestream-api.com/2.0/getstream"

这将返回 XML 数据,您可以在此测试通道 url 中检查其结构 http://xlivestreamapi43x.channel-api.livestream-api.com/2.0/getstream ,然后您将在该字段中获得所需的 RTSP url androidURL。

You can use a RTSP stream provided by livestream, and open it with the intent action VIEW, which will open the stream with the default player.

To get the appropriate RTSP url, you should send a request to the custom url :

"http://x" + yourChannel + "x.channel-api.livestream-api.com/2.0/getstream"

This will return a XML data, you can check its structure in this test channel url http://xlivestreamapi43x.channel-api.livestream-api.com/2.0/getstream , then you will have the desired RTSP url in the field androidURL.

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