我正在研究一个小的Windows窗体应用程序,它向我显示了网络中几个IP摄像机(来自不同公司)的流,还允许我移动摄像机(向左,向右,向上,向下,缩放)。这是通过AFORGE.net MJPEG流和通过触发获取请求进行的摄像机移动来实现的。 问题:我有一台摄像机不能逐步移动(例如,每次单击“向上”后),但是它连续移动。仅当我发送另一个带有参数“ stop”的请求时,它才会停止。
获取向右移动的请求:
http://192.XXX.XX.XXX:XXXX/web/cgi-bin/hi3510/ptzctrl.cgi?-step=0&-act=right&-speed=63
获取停止运动的请求:
http://192.XXX.XX.XXX:XXXX/web/cgi-bin/hi3510/ptzctrl.cgi?-step=0&- act=stop&-speed=63
我用于其他相机的功能:
private void move_right()
{
string url = 'someURL';
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
request.Method = "GET";
request.GetResponse();
request.Abort();
}
我希望相机在单击按钮后逐步向右移动,但是当触发向右移动的请求时,我的程序就卡住了。
答案 0 :(得分:1)
使用HttpClient对象并创建一个异步请求,尝试类似(未经测试)的操作:
private async Task move_right()
{
var url = 'someURL';
var client = new HttpClient();
var request = new HttpRequestMessage()
{
RequestUri = new Uri(url),
Method = HttpMethod.Get,
};
var response = await client.SendAsync(request);
//Do something with your response
}
private async Task executeWebRequests()
{
//Usage - Await for result
await move_right();
//Execute asynchronously
move_right(); //Will create a new task and run asynchronously in the BG
move_right(); //Will create a new task and run asynchronously in the BG
move_right(); //Will create a new task and run asynchronously in the BG
move_right(); //Will create a new task and run asynchronously in the BG
}
答案 1 :(得分:-1)
我有一台使用相同网址的相机。
该线程已有几年历史,但对于其他感兴趣的人,请使用 step=1 逐步移动。