I am trying to get the VB.net plugin working but it will not load. I have added the COM component, I can drag the control onto the form and then use this code to load the video:
Code: Select all
AxVLCPlugin21.CtlVisible = True
AxVLCPlugin21.playlist.items.clear()
Dim uri = New Uri("C:\Users\XXX\Documents\flame.avi")
AxVLCPlugin21.playlist.add(uri.AbsoluteUri)
AxVLCPlugin21.playlist.play()
Thanks