Difference between revisions of "Set file specific brightness or contrast"
Jump to navigation
Jump to search
m (Corbax moved page VSG:Video:FileContrast to Set file specific brightness or contrast) |
(Sortkey: Contrast) |
||
(3 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
− | + | {{howto|set specific brightness or contrast for a file}} | |
− | |||
− | {{howto|set | ||
First open Command Prompt/cmd.exe. A quick way of doing this is to go to:<br>'''Start''' >> '''Run'''. Then enter "'''cmd'''" and press Enter/OK.<br> | First open Command Prompt/cmd.exe. A quick way of doing this is to go to:<br>'''Start''' >> '''Run'''. Then enter "'''cmd'''" and press Enter/OK.<br> | ||
Line 11: | Line 9: | ||
</pre> | </pre> | ||
− | Where [options] are the | + | Where [options] are the [[command line]] parameters and FILE is the location of the file you wish to play. |
<br> | <br> | ||
Line 34: | Line 32: | ||
'''The image adjust filter needs to be enabled so use:'''<br> | '''The image adjust filter needs to be enabled so use:'''<br> | ||
− | <pre> -- | + | <pre> --video-filter adjust |
</pre> | </pre> | ||
To enable it.<br> | To enable it.<br> | ||
Line 41: | Line 39: | ||
'''Here is an example:'''<br> | '''Here is an example:'''<br> | ||
− | <pre> vlc -- | + | <pre> vlc --video-filter adjust --brightness 1.8 --contrast 1.5 FILE |
</pre> | </pre> | ||
<br> | <br> | ||
Line 50: | Line 48: | ||
{{VSG}} | {{VSG}} | ||
+ | |||
+ | {{DEFAULTSORT:Contrast}} |
Latest revision as of 05:08, 30 October 2016
This page describes how to set specific brightness or contrast for a file. | Other "how to" pages |
First open Command Prompt/cmd.exe. A quick way of doing this is to go to:
Start >> Run. Then enter "cmd" and press Enter/OK.
Assuming you have VLC installed, to do it in one line, you can do something like:
C:\Program Files\VideoLAN\VLC\vlc.exe [options] FILE
Where [options] are the command line parameters and FILE is the location of the file you wish to play.
For a two-line method, which is potentially faster for doing multiple instances etc.:
cd C:\Program Files\VideoLAN\VLC vlc [options] FILE
The commandline parameters for image properties are as follows:
Image properties filter --contrast <float> Image contrast (0-2) --brightness <float> Image brightness (0-2) --hue <integer> Image hue (0-360) --saturation <float> Image saturation (0-3) --gamma <float> Image gamma (0-10) --brightness-threshold, --no-brightness-threshold Brightness threshold (default disabled)
The image adjust filter needs to be enabled so use:
--video-filter adjust
To enable it.
Here is an example:
vlc --video-filter adjust --brightness 1.8 --contrast 1.5 FILE
This page is part of the informal VLC Support Guide.
Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.