如何开发一个在 Wi-Fi 广播/组播上接收视频流的视频播放器?
一般视频播放器通过单播连接媒体服务器 但我需要一个播放器来使用多播/广播接收媒体流。
设想: 媒体服务器---> AP --(多播/广播视频流)-->播放器(android手机)
有没有Android SDK支持这个功能? 或者有没有不开发软件编解码器和RTP堆栈的解决方案?
詹姆斯.
general video players connect the media server through unicast
but I need a player to receive media stream using multicast/broadcast.
scenario:
Media Server ---> AP --(multicast/broadcast video stream)--> player(android phone)
is there any Android SDK to support this function?
or is there any solution without developing software codec and RTP stack?
James.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一篇关于 Android 和多播支持的文章: How to receive Multicast packets Android
有关多播视频流协议的问题是一个单独的问题。不应该有任何 Android 特定的要求(假设您可以从 Android 获取和接收多播数据)。
让新的编解码器在 Android 中显示为视频播放应用程序是一个单独的问题。看这个问题:
如何向 Android 添加新的视频编解码器?
Here is a post about Android and multi-cast support: How to receive Multicast packets on Android
The question about a multicast video streaming protocol is a separate issue. There should be nothing Android-specific required (assuming you can get and receive multicast data is all you need from Android).
Getting the new codec to show up as a video-playing app in Android is a separate issue. See this question:
How to add a new video codec to Android?