I'm using a c# vlclib.dll wrapper and the options I send are: string[] args = {VlcDirectory, ":no-one-instance", ":no-loop", ":no-drop-late-frames", ":disable-screensaver", ":vout=direct3d", "--no-osd","--ignore-config","--qu...
Don't take it personally I'm not the type of guy to flame anything - have changed my quote to: I'm glad I referenced your code in the marx' awesome thread, it seams it is THE vlc wrapper - awesomer! Sorry to marx if I did offend, his wrapper has helped me a lot as I posted on his thread. Just found ...
I'm glad I referenced your code in the marx' awesome thread, it seams it is THE vlc wrapper - awesomer! however I'm just getting back into developing my vlc player and only just getting chance to try your mighty wrapper. I have stumbled into a problem already, I don't have the "plugins\libd3dim...
All I want to do is get a ibvlc_MediaPlayerEndReached I made a rubbish work-around: //declare timer timer = new Timer(); timer.Interval = 500; timer.Tick += new EventHandler(TimerOnTick); timer.Enabled = true; //do something when ended void TimerOnTick(object obj, EventArgs ea) { Console.WriteLine(...
First thanks Marx for a great wrapper. I'm not sure wich version I have of the wrapper and are unable to register any events, have these been implememted? if so where are the new versions? I've spent the last few days building a C# wrapper to the new API. Anything that has been depreciated has been ...