filmout_manager/src/cli
mattmcw 93641a6164 CLI supports framing and displays as many seconds as provided 2026-06-24 00:13:33 -04:00
..
README.md CLI now supports rgb mode. CLI works mostly. FI needs more features but is working 2025-12-31 23:59:08 -05:00
index.ts CLI supports framing and displays as many seconds as provided 2026-06-24 00:13:33 -04:00

README.md

filmout_manager CLI

Sytax

<Command>,<Image>,<Time(s)>

Commands

  • E - Exposure normal
  • RGB - Per channel RGB exposure (for balancing)
  • I - Inverted exposure
  • IRGB - Per channel inverted RGB exposure

Examples

Exposure normal

E,images/test.jpg,1000

Will open the camera and create a single 1000ms (1 second) exposure and close the camera.

RGB

RGB,images/test.jpg,100,300,500

Will open the camera, expose the red channel for 100ms, green for 300ms and blue for 500ms.

Inverted

I,images/test.jpg,500

Will open the camera and create a single 500ms exposure and close the camera.

Inverted RGB

IRGB,images/test.jpg,500,300,100

TODO: Work on this feature