Hello !
I'm trying to use the VLC activex to read data on a rstp flux in a VB.net application.
Using one of the latest nightly builds, I can use the --rtp-client-port to force the port to use when reading a rstp flux with a command like:
Shell("C:\vlc.exe -q rtsp://mafreebox.freebox.fr/freeboxtv/203 --rtp-client-port=31336", AppWinStyle.NormalFocus)
If I try to use vlc activex, I do that:
Dim myoptions As New ArrayList
myoptions.Add(":--rtp-client-port=31336")
Dim myMRL As String
myMRL = "rtsp://mafreebox.freebox.fr/freeboxtv/203"
myVLC.addTarget(myMRL, myoptions, AXVLC.VLCPlaylistMode.VLCPlayListReplaceAndGo, -666)
but i have nothing.
Does the activex support this option, and how can i use it ?
Thx for all !
Raphaël