mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-30 12:41:37 +00:00
26 lines
493 B
Plaintext
26 lines
493 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# cam
|
|
|
|
> Frontend tool for `libcamera`.
|
|
> More information: <https://libcamera.org/docs.html>.
|
|
|
|
- List available cameras:
|
|
|
|
`cam --list`
|
|
|
|
- List controls of a camera:
|
|
|
|
`cam --camera {{camera_index}} --list-controls`
|
|
|
|
- Write frames to a folder:
|
|
|
|
`cam --camera {{camera_index}} --capture={{frames_to_capture}} --file`
|
|
|
|
- Display camera feed in a window:
|
|
|
|
`cam --camera {{camera_index}} --capture --sdl`
|