Page 1 of 1

ActiveX component display

Posted: 13 Dec 2005 21:11
by BillW
I am running the 0.8.4 version of the ActiveX control. I inserted the component into a Visual Basic 6.0 Application and am using it to display a multicast. I can get it to start and play. I only have a question about the displayed video when the window is relatively small.
Using the VLCLAN application I have to change the Video>deinterlace>Discard. Then the video shows correctly.
Is there a way to set this variable in the ActiveX control??
THANX in advance
Bill

Posted: 14 Dec 2005 01:07
by Quovodis
Using the VLCLAN application I have to change the Video>deinterlace>Discard. Then the video shows correctly.
Is there a way to set this variable in the ActiveX control??
in a nutshell, the activex control takes the same arguments as the VLC player command line, you just use them in the options field, following code should solve your problem

Code: Select all

Dim Voptions() As Variant Voptions() = Array(":vout-filter=deinterlace", ":deinterlace-mode=discard") vlc.addTarget "udp://@224.1.1.1:32794.mpg", Voptions, VLCPlayListAppendAndGo, -666