mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
Fix webcam to select 16:9 on FW13 and others
This commit is contained in:
@@ -33,8 +33,19 @@ start_webcam_overlay() {
|
|||||||
# Target width (base 360px, scaled to monitor)
|
# Target width (base 360px, scaled to monitor)
|
||||||
local target_width=$(awk "BEGIN {printf \"%.0f\", 360 * $scale}")
|
local target_width=$(awk "BEGIN {printf \"%.0f\", 360 * $scale}")
|
||||||
|
|
||||||
# Scale maintaining aspect ratio (-1 means auto-calculate to maintain ratio)
|
# Try preferred 16:9 resolutions in order, use first available
|
||||||
ffplay -f v4l2 -framerate 30 /dev/video0 \
|
local preferred_resolutions=("640x360" "1280x720" "1920x1080")
|
||||||
|
local video_size_arg=""
|
||||||
|
local available_formats=$(v4l2-ctl --list-formats-ext -d /dev/video0 2>/dev/null)
|
||||||
|
|
||||||
|
for resolution in "${preferred_resolutions[@]}"; do
|
||||||
|
if echo "$available_formats" | grep -q "$resolution"; then
|
||||||
|
video_size_arg="-video_size $resolution"
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
ffplay -f v4l2 $video_size_arg -framerate 30 /dev/video0 \
|
||||||
-vf "scale=${target_width}:-1" \
|
-vf "scale=${target_width}:-1" \
|
||||||
-window_title "WebcamOverlay" \
|
-window_title "WebcamOverlay" \
|
||||||
-noborder \
|
-noborder \
|
||||||
|
|||||||
Reference in New Issue
Block a user