I use axvlc com object to embed vlc player into a window forms.
I can easily display rtsp stream from my ip cam, without problem
But when i want to save this stream, that's don't work :
Code: Select all
Dim ipCAM As String = "rtsp://xxx:xxx@192.168.1.155:554/videoMain"
Dim mediaOptions = ":sout=#std{access=file,mux=mp4, dst=c:\\temp\\test.mp4}"
Me.AxVLCPlugin21.playlist.add(ipCAM, "My cam", mediaOptions )
Me.AxVLCPlugin21.playlist.play()
Thanks !!