mirror of
https://github.com/andreili/camera-streamer.git
synced 2025-08-23 19:34:07 +02:00
12 lines
194 B
Bash
Executable File
12 lines
194 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -x
|
|
|
|
v4l2-ctl --list-devices
|
|
|
|
for device in /dev/video*; do
|
|
v4l2-ctl -d "$device" -L
|
|
v4l2-ctl -d "$device" --list-formats-out
|
|
v4l2-ctl -d "$device" --list-formats-ext
|
|
done
|