rtsp服务器转发
所以我试图将网络摄像头源从我的计算机传输到我的 Android 手机。我使用一个简单的转发服务器来连接两者,这样我就不必担心家庭网络 IP 防火墙等。我正在使用 FMJ 捕获视频源,并且认为 rtsp 协议是最好的,因为 android 支持读取它。我的问题是我不知道如何通过服务器转发信息,是否像转发UDP数据包那么简单?顺便说一句,所有涉及的程序都是用java实现的。
So I am trying to stream a webcam feed from my computer to my android phone. I am using a simple forwarding server to connect the two so that I don't have to worry about home network IP firewalls ect. I am using FMJ to capture the video feed and was thinking rtsp protocol would be best because android supports reading it. My problem is I dont know how to forward the information via the server, is it as simple as forwarding UDP packets? all programs involved are implemented in java btw.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 Netty。使用这个库创建 RTSP 服务器非常容易。有关提示,请参阅此处的来源。
Use Netty. It is very easy to create an RTSP server with this library. For hints see the sources here.
或者您可以移植我用 C# 编写的库
http://net7mma.codeplex.com/
CodeProject 文章 @ http://www.codeproject.com/Articles /507218/使用 Rtsp 和 Rtp 的托管媒体聚合
Or you can port my library which is written in C#
http://net7mma.codeplex.com/
CodeProject article @ http://www.codeproject.com/Articles/507218/Managed-Media-Aggregation-using-Rtsp-and-Rtp