I have used the VLC / C# binding from the Wiki and created a small sample:
Code: Select all
private void button1_Click(object sender, EventArgs e)
{
try
{
video1.ClearPlayList();
video1.AddToPlayList(@"W:\Office.wmv", "Something", new string[] { });
video1.Play();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
Code: Select all
private void button1_Click_1(object sender, EventArgs e)
{
video1.Brightness = float.Parse(textBox1.Text);
Text = video1.Brightness.ToString();
}
Now why when I set the brightness with this code, still it is value is 1.0 ? As if it is unchanged?
Can you please tell me how to set brightness correctly?
Thanks,
Elias