From ecebc820204511b818cf6068705bc520dd6754e9 Mon Sep 17 00:00:00 2001 From: Shanoop Padmanabhan Date: Sat, 19 Oct 2019 23:48:30 +0800 Subject: [PATCH] uvcdynctrl : add page (#3408) --- pages/linux/uvcdynctrl.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pages/linux/uvcdynctrl.md diff --git a/pages/linux/uvcdynctrl.md b/pages/linux/uvcdynctrl.md new file mode 100644 index 000000000..a49ea7d99 --- /dev/null +++ b/pages/linux/uvcdynctrl.md @@ -0,0 +1,31 @@ +# uvcdynctrl + +> A libwebcam command line tool to manage dynamic controls in uvcvideo. + +- List all available cameras: + +`uvcdynctrl -l` + +- Specify the device to use (defaults to `video0`): + +`uvcdynctrl -d {{device_name}}` + +- List available controls: + +`uvcdynctrl -c` + +- Set a new control value (for negative values, add -- before {{-value}}): + +`uvcdynctrl -s {{control_name}} {{value}}` + +- Get the current control value: + +`uvcdynctrl -g {{control_name}}` + +- Save the state of the current controls to a file: + +`uvcdynctrl -W {{file_name}}` + +- Load the state of the controls from a file: + +`uvcdynctrl -L {{file_name}}`