Thanks for the Quic Reply!
Yes, I confirmed the Raspberry (MotionEye software) is streaming mjpeg.
I can get this code to successfully connect to http:10.0.0.183:8082
but when the "GET" command is issued it gets Terminated.
I have played with the GET Code extensively with no luck
Original Code:
Dim sTmp As String = $"GET ${mPath} HTTP/1.1
Host: ${mHost}
Connection: keep-alive
"$
Where sTmp = "/axis-cgi/mjpg/video.cgi" and mHost = ""ticklecam.engr.utk.edu"
In my case I have Neither of these. I've tried ever possible combination of these values:
Dim sTmp As String = $"GET * HTTP/1.1
Host:
http://10.0.0.183:8082
Connection: keep-alive
"$
-and-
Dim sTmp As String = $"GET
Http://10.0.0.183:8082 HTTP/1.1
Connection: keep-alive
"$
-and-
Dim sTmp As String = $"GET 10.0.0.183 HTTP/1.1
Host:
http://10.0.0.183:8082
Connection: keep-alive
"$
-and-
a hundred or more combinations...
Any ideas would be appreciated