AFORGE.net与Android手机作为IP摄像头

时间:2013-11-01 15:02:18

标签: c# android tcp camera aforge

故事:我使用AFORGE.net实现了视频流应用程序,使用TCP协议在我的笔记本电脑相机的c#中实现了视频流应用程序。它工作得非常好。我使用lan电缆在多台PC上测试应用程序,它运行良好。我从未使用过IP-Cameras,但是我读了这个论坛(http://www.aforgenet.com/forum/viewtopic.php?f=4&t=36)并且它说每个ip-cam都需要一个URL字符串来连接AFORGE.net的MJPEGStream类:

MJPEGStream mpeg = new MJPEGStream();
mpeg.Login = "username";
mpeg.Password = "pass";
mpeg.Source = "http://ip:port/img/mjpeg.cgi";
mpeg.Start();

问题:现在我想用我的Android手机作为视频流的ip-camera。我还创建了一个Android应用程序,使用TCP将图像连续发送到地址。

我想知道如果它可以使用Android设备作为ip-camera吗?如果是,那么我应该使用哪个源字符串与MJPEGStream类。?

提前感谢您的建议和指南。

0 个答案:

没有答案