dots


dots / config / .local / bin
xxwhirlpool  ·  2026-03-10

webcamimg

 1#!/usr/bin/env bash
 2
 3PICPATH="/home/kat/Pictures/Camera/webcam"
 4
 5# turn on webcam for a bit so the brightness isn't fucked
 6echo "starting camera, wait 5s"
 7timeout 5s v4l2-ctl --silent -d /dev/video0 -d0 --stream-mmap
 8
 9# take the pic
10echo "taking the pic!"
11ffmpeg -f video4linux2 -i /dev/video0 -vframes 5 -video_size 1920x1080 "$PICPATH/webcam_pic_$(today time)_%3d.jpeg" -hide_banner -loglevel error