Created
October 3, 2024 16:32
-
-
Save RamboRogers/8b416dbd37682cefae720fc2d2d143c0 to your computer and use it in GitHub Desktop.
Elgato Webcam Facecam Profile for Linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Elgato Facecam | |
v4l2-ctl --set-ctrl=brightness=85 # (default 43) 0-255 | |
v4l2-ctl --set-ctrl=contrast=2 # (default 5) 0-5 | |
v4l2-ctl --set-ctrl=saturation=28 # (default 32) 0-63 | |
v4l2-ctl --set-ctrl=white_balance_automatic=0 # BOOL 0-1 | |
v4l2-ctl --set-ctrl=power_line_frequency=2 # 2 = 60 Hz, 0 off | |
v4l2-ctl --set-ctrl=sharpness=3 # (default 2) 2-4 | |
v4l2-ctl --set-ctrl=zoom_absolute=1 # default=1 1-31 | |
v4l2-ctl --set-ctrl=auto_exposure=2 # default=0 0 (Auto Mode) (0-3) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment