So I am continuously grabbing jpeg images from a camera with a command such as follows: MagickImageCamera.Read("http://207.251.86.238/cctv18.jpg")
(note this is an actual public camera I found on the Internet)
I am performing this action every 2 seconds. I tracked down the delay to the Read() function.
The locking up usually occurs every minute or so.
As an alternative to the read function I tried using the New command for every call instead, but got the same locking up using;
Using MagickImageCamera As New MagickImageCamera(http://207.251.86.238/cctv18.jpg”)
I should also point out that when the Read() function is locked up I am able to go to the URL of the jpeg in a web browser and refresh the image just fine.
So is there a way I can stop the Read() from locking up?
(note this is an actual public camera I found on the Internet)
I am performing this action every 2 seconds. I tracked down the delay to the Read() function.
The locking up usually occurs every minute or so.
As an alternative to the read function I tried using the New command for every call instead, but got the same locking up using;
Using MagickImageCamera As New MagickImageCamera(http://207.251.86.238/cctv18.jpg”)
I should also point out that when the Read() function is locked up I am able to go to the URL of the jpeg in a web browser and refresh the image just fine.
So is there a way I can stop the Read() from locking up?