Invalid Import Troubleshooting
What does "invalid take" mean?
When you import a folder of videos into a project, Genesis scans and validates every video file before accepting the take. If any check fails, the take is flagged as invalid and cannot be imported. The reason is shown in the take list next to the take name.
No video data is lost — the files are never modified. You simply need to fix the underlying problem and re-import.
1 - Take name not found
-
Error message: Take name not found
-
What happened: Genesis parses the take name from each video filename. If it cannot extract a recognisable take name from any file in the folder, the take is marked invalid.
-
Troubleshooting Checklist:
-
Filenames must follow the convention
camXX_<takename>.<ext>— for examplecam01_scene01_take03.mp4 - Check there is no leading/trailing whitespace, special characters, or non-ASCII characters in the filename
- All videos in the same folder must share the same take name segment
-
2 - Camera ID number is invalid
-
Error message: Camera ID number is invalid
-
What happened: Genesis found a camera ID prefix in the filename (e.g.
cam) but the numeric portion that follows is missing or non-numeric. -
Troubleshooting Checklist:
- Camera IDs must be numeric:
cam01,cam02, …,cam16— notcamA,cam_left, etc. - Leading zeros are fine (
cam01), but the number itself must be a valid integer - Rename the offending files and re-import
- Camera IDs must be numeric:
3 - Duplicate camera IDs
-
Error message: Two or more videos have the same camera ID
-
What happened: Two files in the same take suffix both parsed to the same camera ID (e.g. two files both named
cam03_take01.mp4). -
Troubleshooting Checklist:
- Each camera must produce exactly one video file per take
- Check for accidental duplicates (e.g. a file copied twice, or two cameras sharing the same ID in camera settings)
- Remove the duplicate and re-import, or rename so each file has a unique camera ID
4 - Video file cannot be opened / Video is unreadable
-
Error messages:
-
Failed to open the video file
-
Video is unreadable
-
- What happened:
- Cannot be opened - the file exists but Genesis cannot open the container at all. Common causes: corrupt file, unsupported container format, file is still being written.
- Unreadable - the file opened but frame data cannot be decoded. Common causes: codec not supported, partial transfer, or storage failure mid-recording.
- Troubleshooting Checklist:
- Confirm the file transfer from camera/SD card is fully complete before importing
- Try playing the file in VLC or another media player - if it will not play, the file is corrupt
- Check supported formats in the Genesis documentation (MP4/MOV with H.264 or H.265 are recommended)
- Re-export or re-copy the file from the original camera/card, then re-import
If only some cameras fail while others succeed, focus on the specific files that failed. Partial SD card corruption or incomplete copies are the most common cause.
5 - Video has too few frames
-
Error message: Video has too few or invalid number of frames: {N}
-
What happened: The video contains 5 frames or fewer. Genesis requires more than 5 frames to process a take.
- Troubleshooting Checklist:
- This usually means a recording was started and stopped almost immediately, or the camera stopped early
- Check the camera did not run out of battery or storage mid-recording
- Re-record the take — there is no way to recover a clip that is genuinely too short
6 - Videos have different resolutions
-
Error message: Video files have different resolutions
-
What happened: All cameras in a take must record at the same resolution. Genesis detected at least one camera with a different width or height.
- Troubleshooting Checklist:
- Open your camera app or review device settings — all cameras must be set to the same resolution before recording
- Common mismatch: one camera left on a different preset from a previous session
- Re-record with matching resolution settings on all cameras
- If mixing camera models, ensure the chosen resolution is supported by all models in the rig.
7 - Inconsistent frame rates
-
Error message: Video framerate inconsistent with others. The fps difference {N} is more than 1
-
What happened: The FPS difference between two cameras is greater than 1. For example, one camera at 24 fps and another at 30 fps would trigger this.
Note: A small tolerance of up to ~1 fps is allowed to account for minor clock drift between devices. A difference of 2+ fps indicates a genuine misconfiguration or performance issue.
Troubleshooting Checklist:
- Confirm all cameras are set to the same frame rate in their settings before recording
- Watch out for cameras that auto-switch frame rate based on lighting (e.g. anti-flicker mode)
- Re-record with matching fps across all cameras
General diagnostic steps
- Using ffprobe to inspect a video file If you have
ffprobeinstalled (part of the FFmpeg package), run the following in a terminal to inspect a video file:ffprobe -v error -show_streams -show_format "path/to/your/video.mp4"Key fields to look for:
codec_name— video codec (should beh264orhevc)width/height— resolutionavg_frame_rate— frame rate as a fraction (e.g.60/1= 60 fps)nb_frames— total frame count