Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/windows/17.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Windows MJPEGStream显示流Aforge.Video.dll_Windows_Vb.net_Ip Camera_Aforge - Fatal编程技术网

Windows MJPEGStream显示流Aforge.Video.dll

Windows MJPEGStream显示流Aforge.Video.dll,windows,vb.net,ip-camera,aforge,Windows,Vb.net,Ip Camera,Aforge,我正在尝试使用Aforge库流式传输IPCAM D'Link,但没有成功: 我想将视频流显示到PB控件中。 我的代码: 你有点混合了MJPEG流和控件 Dim mjpegSource As New MJPEGStream("rtsp://192.0.0.64:554/cam[CHANNEL]/mjpeg") mjpegSource.Login = "admin" mjpegSource.Password = "" VideoSourcePlayer1.Vi

我正在尝试使用Aforge库流式传输IPCAM D'Link,但没有成功: 我想将视频流显示到PB控件中。 我的代码:


你有点混合了MJPEG流和控件

Dim mjpegSource As New MJPEGStream("rtsp://192.0.0.64:554/cam[CHANNEL]/mjpeg")
        mjpegSource.Login = "admin"
        mjpegSource.Password = ""
    VideoSourcePlayer1.VideoSource = mjpegSource
错误是无法识别url前缀 我就是这样修好的 但是使用
vlc
can流媒体

Dim mjpegSource As New MJPEGStream("rtsp://192.0.0.64:554/cam[CHANNEL]/mjpeg")
        mjpegSource.Login = "admin"
        mjpegSource.Password = ""
    VideoSourcePlayer1.VideoSource = mjpegSource