ffmpeg_extract_frames
Extract individual frames from video files as images at specified intervals or counts for analysis, editing, or content creation.
Instructions
Extract frames from a video as images.
Args:
file_path: Path to the input video file
interval: Extract one frame every N seconds (e.g., 1.0 for one frame per second)
count: Total number of frames to extract (evenly distributed). Mutually exclusive with interval.
format: Output image format (jpg, png, bmp)
Returns:
Path to the directory containing extracted frames
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes | ||
| interval | No | ||
| count | No | ||
| format | No | jpg |