First off, WOW, nice player you created here.
I am currently working with VB.NET under Visual Studio 2010 with VLC 1.1.2 The Luggage. I implemented the plugin v2 in my project. So far, everything is working fine. Let me briefly explain what I intend to do:
I would like to have one set of controls on any form which can control two instances of the vlc player. Both players play the same .mpeg file, synchronized. They are also on separate forms. The control set should play, pause, etc both instances simultaneously. What I am doing right now is to open the file twice. Every control is doubled to achieve some sort of fake uni control.
example:
Code: Select all
Buttonclick:
Form1.vlc.playlist.togglePause()
Form2.vlc.playlist.togglePause()
Please feel free to ask for additional details.
Help of any kind is very much appreciated,
Thank you
tru