Please help me with this code in vb
Posted: 28 Apr 2010 00:14
I have the following code in VB6, I can see the video, but i can't stream it, does any one please help me????
Thank you
Code: Select all
Private Sub Form_Load()
Dim opt() As Variant
opt() = Array(":sout=#duplicate{dst=display,dst=" & Chr(34) & "standard{mux=ts,dst=239.255.12.43,access=udp}" & Chr(34) & "}", ":ttl=12")
'VLCPlugin1.addTarget "C:\Alizee\isla.mpg", ":ttl=12", VLCPlayListInsert, -666
'VLCPlugin1.MRL = "C:\Alizee\isla.mpg :sout=#duplicate{dst=display,dst=" & Chr(34) & "standard{mux=ts,dst=239.255.12.43,access=udp}" & Chr(34) & "}"
VLCPlugin1.addTarget "C:\Alizee\isla.mpg", Null, VLCPlayListInsert, -666
VLCPlugin1.play
End Sub
Thank you