Skip to content

Gen Video Workflow

Direct command workflow for generating videos from image sequences.

This module implements CLI workflow orchestration for its command family, including argument parsing, request construction, execution dispatch, and result presentation handoff.

Usage context

  • Command routing: Resolve CLI aliases and normalized command names.
  • Task execution: Build request objects and invoke registered tasks.
  • Output handling: Forward results to table, plot, export, or report flows.

Command: gen-video

Arguments

No command-specific arguments found.

Common Runtime and Presentation Arguments

These are shared workflow-level CLI flags added before command-specific options, covering runtime context (engine/input/storage) and output presentation/export behavior.

Flag Required Default Help Choices
--folder No . Folder containing image files. Example: --folder results/figures, which tells the command where to collect frames.
--output No reaxkit_outputs/video/output_video.mp4 Output video filename. Example: --output movies/msd.mp4, which writes the generated video to that path.
--fps No 10 Frames per second. Example: --fps 8, which plays 8 frames each second for a slower animation than the default 10.
--ext No .png,.jpg,.jpeg Comma-separated list of accepted image extensions. Example: --ext .png,.jpg, which limits frame discovery to PNG and JPG files.