diff options
author | EuAndreh <eu@euandre.org> | 2025-03-02 10:47:31 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-03-02 10:47:31 -0300 |
commit | d55ddb8c5a1e0073953b01d426e786a0f0b94aa4 (patch) | |
tree | 8bf71b683153e9ed8de9567d70a5501f8f23a6c7 | |
parent | bin/shot: Ensure directory of $TEMPLATE exists (diff) | |
download | dotfiles-d55ddb8c5a1e0073953b01d426e786a0f0b94aa4.tar.gz dotfiles-d55ddb8c5a1e0073953b01d426e786a0f0b94aa4.tar.xz |
bin/webcam: Add working utility
-rwxr-xr-x | bin/webcam | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/bin/webcam b/bin/webcam new file mode 100755 index 0000000..12edf91 --- /dev/null +++ b/bin/webcam @@ -0,0 +1,12 @@ +#!/bin/sh +set -eu + +exec mpv \ + --msg-level=all=warn \ + --profile=low-latency \ + --untimed \ + --framedrop=no \ + --speed=1.01 \ + --osc=no \ + --no-input-default-bindings \ + /dev/video0 |