I'm placing the ActiveX as an OLE object on my Powerbuilder window (similar to VB). I can add files to play by executing:-
ole_vlc.object.playlist.Add("C:\xyz.mov", "", ":no-video-title-show :start-time="+gs_media_time+" --mouse-hide-timeout=0 --no-file-logging --fullscreen")
in my program. Works fine.
Now I need to make the video play with OpenGL option so I can make the video play over multiple monitors (7 to be precise). I can't get it to work. I tried adding --vout=OpenGL to the options but it made no difference yet if I run VLC.EXE from the Windows command line like this:-
"C:\Program Files\VideoLAN\VLC\vlc.exe" "C:\xyz.mov" --opengl-effect
it works fine.
How can I add OpenGL in the activeX?