mjpeg
C#
3
Posts
2
Posters
0
Views
1
Watching
-
i want to capture the mjpeg stream from URL like http://85.235.16.143/mjpg/video.mjpg what is the best way do to that
-
i want to capture the mjpeg stream from URL like http://85.235.16.143/mjpg/video.mjpg what is the best way do to that
Use WebClient class on system.net:
System.Net.WebClient oWebClient = new System.Net.WebClient(); oWebClient.DownloadFile(sUrl,sDestiny);
Visit my blog at http://dotnetforeveryone.blogspot.com
-
Use WebClient class on system.net:
System.Net.WebClient oWebClient = new System.Net.WebClient(); oWebClient.DownloadFile(sUrl,sDestiny);
Visit my blog at http://dotnetforeveryone.blogspot.com