I have embedded an VLC control control in my C# winforms project. (axVLCPlugin21 control VLC version 2.1.5).
The implemtation was succesfull and all is up and running.
What I now like to do is use the build-in equalizer to modify the audio output. I use a playlist and I now I need to add options as a string format.
What I found out so far is that a piece of code like this works (just to check the syntax)
Code: Select all
string[] Voption = { ":no-audio" };
this.axVLCPlugin21.playlist.items.clear();
this.axVLCPlugin21.playlist.add(convertedURL, null, Voption);
1. --equalizer-preset
2. --equalizer-bands
So my option code should look something like this:
Code: Select all
string[] Voption = { ":equalizer-bands=19 19 19 19 0 -2 -4 -2 0 2" }
Code: Select all
string[] Voption = { ":audio-filter=equalizer", ":equalizer-preamp=-16" }
So I am stuck at this point and there no more documentation to look at according google. Any help is very much appreciated!