I have a computer with a few capture cards and i need to open each one of them in the plugin
They open fine with the vlc.eve but the problem is that I cant seam to get the right syntax to open it in the plugin
I'm trying (vb):
soutString = " :sout=#transcode{vcodec=mp4v,vb=800,scale=1,acodec=mpga,ab=128,channels=22}:duplicate{dst=std{access=udp,dst=" & PublicIp & ":" & Trim(Str(9000 + ChannelNum)) & "}}"
VLCPlugin2.playlist.Add dshow:// :dshow-vdev="Conexant Capture" :dshow-adev="" , "tv", soutString
VLCPlugin2.playlist.play
my problem is the code play the defaul dshow input device (in my case its a webcam) every time no meter what I write instead of :dshow-vdev="Conexant Capture" :dshow-adev=""
I tryed to insert the :dshow-vdev... into the soutString as is and as an array but with no sucsess
I can open the right capture device running the vlc.exe with shell command.
help anybody
thanks