I'm trying to stream an IPCAM D'Link using the Aforge Libraries but i'm not succeed:
I want to display the video stream into an PB control.
My Code:
Imports AForge.Video
Public Class Form1
Private Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load
Try
Dim stream As New MJPEGStream("http://190.6.198.3/video/mjpg.cgi")
stream.Login() = "admin"
stream.Password() = ""
stream.Start()
Catch ex As System.Net.WebException
MsgBox(ex.Message.ToString)
End Try
End Sub
End Class
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…