If you use the libvlc.dll directly, you can do that! Take a look at the menu source, you'll find the answer! Here my function written i managed c++: SortedList<int,String^>^ VlcControl::GetAudioTracks( ) { // create new list SortedList<int,String^>^ liEmptyAudioTracks = gcnew SortedList<int,String^>...
I have found the problem! When i copy the exe into the vlc directory it works! But how must i initialize libvlc, when the program is not in the vlc directory ??? Working code in the vlc directory: char *ppsz_argv[2] = { "vlc", "--no-one-instance" }; -> Problem sloved :D char *pps...
I'm trying this too! I have taken a look in the activex source. But it is not working yet :( Witch steps must be done, to show a video in my own window ? Here is my code. What is missing ??? ... // create vlc instance m_iVlcInstance = VLC_Create(); // init vlc char *ppsz_argv[2] = { "C:\\Progra...