Comfy-Org/ComfyUI · error · ValueError

Reference video {i} is {fps:.2f} FPS. Supported range is 23.

Error message

Reference video {i} is {fps:.2f} FPS. Supported range is 23.976-60 FPS.

What it means

Error "Reference video {i} is {fps:.2f} FPS. Supported range is 23.976-60 FPS." thrown in Comfy-Org/ComfyUI.

Source

Thrown at comfy_api_nodes/nodes_minimax.py:875

        total_video_duration = 0.0
        for i, video in enumerate(reference_videos.values(), 1):
            try:
                fps = float(video.get_frame_rate())
            except Exception:
                fps = 0.0
            if fps and not (23.9 <= fps <= 60.5):
                raise ValueError(f"Reference video {i} is {fps:.2f} FPS. Supported range is 23.976-60 FPS.")
            try:
                dur = video.get_duration()
            except Exception:

View on GitHub (pinned to 1c6d8d45b3)

Solutions

  1. Use a reference video with a frame rate between 23.976 and 60 FPS.

When it happens

Trigger: Thrown at comfy_api_nodes/nodes_minimax.py:875 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of Comfy-Org/ComfyUI@1c6d8d45b3 (2026-08-14). Data as JSON: /api/errors/512866ce22045511. Report an issue: GitHub.