vb.net - IP camera HK vision url streaming in vb .net -
dim mjpegsource new mjpegstream("rtsp://192.0.0.64:554/cam[channel]/mjpeg") mjpegsource.login = "admin" mjpegsource.password = "" videosourceplayer1.videosource = mjpegsource
error url prefix not recognized how fixed vlc can streaming
mjpegstream
expects feed motion jpeg on http. http request/response camera infinitely sends sequence of jpeg images on established http link.
your url starts rtsp://
, suggests identifier of rtsp compliant resource. camera sends data in conformance rtsp protocol, rtp payload motion jpeg encoding.
rtsp identifier, protocol, connection incompatible mjpegstream
class.