Skip to content

Converters

Images To Video Converter

Section titled “Images To Video ”

Inputs

  • Image(s): The batch of images to convert.
  • Audio: (Optional) Audio track.

Widgets

  • Format: Output video format.
  • FPS: Frames Per Second.
  • Compression: Compression level.
  • CRF: Quality (lower is better).

Outputs

  • Video: The resulting video object.

Converts a batch of images into a video file. This is the standard way to turn your frame-by-frame processing results back into a playable video format.

WidgetTypeOptionsDescription
formatDropdownmp4, avi, mov, webmmp4 (h264) is best for web/sharing. mov (prores) is best for editing.
fpsInt24, 30, 60Playback speed.
crfInt20Constant Rate Factor. Quality control. 0 is lossless, 50 is worst. Default 20.




Primitive To Image Converter

Section titled “Primitive To Image ”

Inputs

  • Primitive: Geometric primitive object(s).

Widgets

None

Outputs

  • Image: Rendered image.

Renders abstract geometric primitives (like Circles, Rectangles, Text) into an actual raster image (pixel data) that can be processed by other nodes.





Inputs

  • Input: Any data type.

Widgets

None

Outputs

  • String: Text representation.

Converts any input data (Numbers, Arrays, Objects) into its text string representation.





Vector Separate Converter

Section titled “Vector Separate ”

Inputs

  • Vector: 2D Vector (X, Y).

Widgets

None

Outputs

  • X: X component.
  • Y: Y component.

Splits a 2D Vector (like a coordinate or size) into its individual X and Y floating-point numbers.





Video To Frames Converter

Section titled “Video To Frames ”

Inputs

  • Video Path: (Optional) Path to file.
  • Video: (Optional) Video object.

Widgets

  • Start Frame: Start index.
  • End Frame: End index.
  • Frame Interval: Step size.

Outputs

  • Images: Extracted frames.
  • Info: Total Frames, FPS, W/H.

Extracts individual images (frames) from a video file. This is usually the first step in a video-to-video workflow (Video -> Frames -> Processing -> Images to Video).

WidgetTypeDefaultDescription
Start/End FrameInt0 / -1Define a specific range to process. -1 means “end of video”.
Frame IntervalInt1Skip frames to speed up preview (e.g., 2 processes every 2nd frame).