Page 1 of 1

Brightness in vlc plugin(0.9.9) in linux

Posted: 16 Jun 2009 14:07
by babitha
Hello all,
May I know how to set brightness in vlc 0.0.9 plugin in linux?I'm able to set it throuugh command line.Waiting for your reply.
Thanks,

Re: Brightness in vlc plugin(0.9.9) in linux

Posted: 16 Jun 2009 14:31
by thannoy
I don't think it is possible. What do you use for you command-line?

Most of the time, you can add command-line argument as the third argument of .playlist.add(url, name, options) like

Code: Select all

myvlc.playlist.play(url, "foo", ":brightness=1.9")
But there is some problems:
- "brightness" optiopn is not yet tagged as safe to be use so it will be ignored in this kind of usages
- I think you also need another argument like ":vout-filter=adjust" or ":video-filter=adjust". But vout-filter and video-filter modification is not safe so it will not be tagged as safe.