Search found 6 matches

Go to advanced search

by lallous
18 Jul 2008 09:08
Forum: Web and scripting
Topic: C# and brightness control
Replies: 4
Views: 1740

Re: C# and brightness control

My hack was posted here.

Just when adding a video to the playlist, make sure you pass an option to tell VLC to load the adjust filter, exactly as my last post demonstrates.

HTH
Elias
by lallous
23 Jun 2008 18:35
Forum: VLC media player for Windows Troubleshooting
Topic: Changing VLC 0.86c brightness,hue,contrast in .Net
Replies: 2
Views: 658

Re: Changing VLC 0.86c brightness,hue,contrast in .Net

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",...
by lallous
23 Jun 2008 17:25
Forum: Web and scripting
Topic: C# and brightness control
Replies: 4
Views: 1740

Re: C# and brightness control

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...
by lallous
23 Jun 2008 12:54
Forum: Web and scripting
Topic: C# and brightness control
Replies: 4
Views: 1740

Re: C# and brightness control

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...
by lallous
23 Jun 2008 10:33
Forum: Coffee Corner
Topic: source code location
Replies: 2
Views: 1088

Re: source code location

You can download using GIT or SVN tools or from http:
http://nightlies.videolan.org/build/source/
by lallous
23 Jun 2008 10:18
Forum: Web and scripting
Topic: C# and brightness control
Replies: 4
Views: 1740

C# and brightness control

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...

Go to advanced search