Yes you are right, the AllowVideoAdjustments should have worked, but it isn't for some reason's you can find out while debugging the code. To make a long story short, use this as a quick fix in NativeLibVlc.cs : string[] initOptions = { NativeLibVlc.vlcInstallDirectory, ":no-one-instance",...
Hi Readers, After a long day of research and debugging and getting to learn about VLC more, it turned out that the "adjust" video out filter must be loaded before you can access the "brightness" variables. For that, you have to pass an option to VLC when adding the media file. In...
Hi again, It turned out after investigation that: VlcObject vobj = new VlcObject(this.vlcHandle, objectType) Is not initializing / returning a valid subobject, thus: public float GetVlcObjectFloat(ObjectType objectType, String propertyName, float errorReturn) { try { using(VlcObject vobj = new VlcOb...
Hello I have used the VLC / C# binding from the Wiki and created a small sample: private void button1_Click(object sender, EventArgs e) { try { video1.ClearPlayList(); video1.AddToPlayList(@"W:\Office.wmv", "Something", new string[] { }); video1.Play(); } catch (Exception ex) { M...