準備
- v4l2-utilsのインストール
$ apt-get install v4l-utils
コマンド一覧
- デバイスの情報を表示
$ v4l2-ctl -d /dev/video0 --all
- 対応解像度の表示
$ v4l2-ctl -d /dev/video0 --list-formats-ext
- 解像度の変更
$ v4l2-ctl -d /dev/video0 --set-fmt-video=width=<width>,height=<height> --set-parm=<Hz>
- コントロール一覧の表示
$ v4l2-ctl -d /dev/video0 --list-ctrls-menu
- コントロールの変更
$ v4l2-ctl -d /dev/video0 -c <ctrl>=<val>