Skip to main content

Turn any video into LLM-ready frames. Smart sampling, scene detection, OCR, and SDK-ready output for modern multimodal language models.

Project description

vid2llm

Extract frames from any video and feed them to multimodal language models.

PyPI Python CI codecov License

Multimodal language models consume images, not video. Getting the right frames out of a video - without writing decoder boilerplate or dealing with color space surprises - is the friction vid2llm removes. It provides a small, typed toolkit that picks the best available decode backend automatically, streams frames lazily, and saves them to disk in formats that providers can consume directly.

The package is early but functional. v0.1.0 covers frame extraction across three backends with a streaming Python API and a CLI. Smart sampling strategies and provider adapters come in later releases.

v0.1.0 - alpha. The frame extraction core, CLI, and three backends are stable and tested. Scene detection, OCR, and provider adapters are on the roadmap and not yet available.

Features

  • Three decode backends - OpenCV, PyAV, and the ffmpeg binary - with automatic selection by availability.
  • Flexible sampling - keep every Nth frame, cap the total count, restrict to a time window, or combine all three.
  • Streaming Python API - extract_frames yields frames lazily with no full-video memory load; extract_to_list collects them when convenient.
  • Disk serialization - save frames as JPEG, PNG, or WebP; BGR output from OpenCV is converted to RGB automatically before encoding.
  • Fully typed - ships py.typed, passes mypy --strict, tested on Linux and Windows across Python 3.11, 3.12, and 3.13.

Installation

Install the base package:

pip install vid2llm

A backend is required to decode video. Install at least one:

pip install vid2llm[cv]    # OpenCV - fastest seek on most formats
pip install vid2llm[pyav]  # PyAV - accurate timestamps
pip install vid2llm[all]   # both OpenCV and PyAV

The ffmpeg backend has no Python extra - install the ffmpeg binary system-wide (apt install ffmpeg, brew install ffmpeg, winget install Gyan.FFmpeg, etc.) and it is detected automatically.

If no backend is available, vid2llm raises NoBackendAvailableError with clear instructions on what to install.

Quick start: CLI

Inspect a video without decoding any frames:

vid2llm probe sample.mp4
File:        sample.mp4
Duration:    0:10.6 (10.6s)
Codec:       h264
FPS:         25.00
Frames:      266
Size:        0.7 MB
Backend:     opencv

Extract one frame every 30 to a directory:

vid2llm extract sample.mp4 --output-dir frames/ --every-n-frames 30
Extracted 5 frame(s) to frames in 0.12s via opencv. 5 file(s), 0.2 MB.

More options:

# Keep at most 10 frames from the entire video.
vid2llm extract sample.mp4 -o frames/ --max-frames 10

# Extract only the 2-second to 6-second window and save as PNG.
vid2llm extract sample.mp4 -o frames/ --start 2.0 --end 6.0 --format png

# Force a specific backend.
vid2llm extract sample.mp4 -o frames/ --backend pyav

Output files are named frame_000000.jpg through frame_NNNNNN.jpg, where the number is the source frame index zero-padded to six digits.

Quick start: Python API

Stream frames (memory-efficient for long videos):

from vid2llm import ExtractionConfig, extract_frames

config = ExtractionConfig(every_n_frames=30, max_frames=50)

for frame in extract_frames("video.mp4", config):
    # frame.image: numpy uint8 array, shape (H, W, 3)
    # frame.color_space: "bgr" or "rgb" depending on the backend
    # frame.index: source frame index (zero-based)
    # frame.timestamp_seconds: presentation timestamp
    print(frame.index, frame.timestamp_seconds, frame.image.shape)

Save frames to disk while streaming:

from vid2llm import ExtractionConfig, extract_frames

config = ExtractionConfig(every_n_frames=5, image_format="png")

for frame in extract_frames("video.mp4", config, output_dir="frames/"):
    # frames/frame_000000.png, frames/frame_000005.png, ...
    # BGR frames from OpenCV are converted to RGB before saving.
    pass

Collect all frames and inspect metadata:

from vid2llm import ExtractionConfig, ExtractionResult, extract_to_list

config = ExtractionConfig(every_n_frames=30)
result: ExtractionResult = extract_to_list("video.mp4", config)

print(result.backend_used)           # "opencv"
print(result.frames_yielded)         # number of frames returned
print(result.metadata.fps)           # 25.0
print(result.metadata.frame_count)   # 266
print(result.metadata.codec)         # "h264"
print(result.metadata.width, result.metadata.height)

for frame in result.frames:
    arr = frame.image  # numpy uint8 array, shape (H, W, 3)

Probe metadata directly or force a backend:

from pathlib import Path
from vid2llm import list_available_backends, select_backend

print(list_available_backends())  # e.g. ["opencv", "pyav"]

backend = select_backend("pyav")  # or None to auto-select
meta = backend.probe(Path("video.mp4"))
print(meta.fps, meta.duration_seconds, meta.codec)

Backends

Backend Install extra Color space Notes
OpenCV vid2llm[cv] BGR Fastest seek on most formats
PyAV vid2llm[pyav] RGB Accurate timestamps
ffmpeg (none) RGB Universal fallback; needs ffmpeg binary on PATH

vid2llm tries backends in order: OpenCV, PyAV, ffmpeg. Pass backend="opencv" (Python) or --backend opencv (CLI) to force a specific one.

The frame.color_space field tells you which channel ordering the backend used ("bgr" or "rgb"). When saving to disk, the encoder converts BGR to RGB automatically so output files are always correct regardless of backend.

Configuration reference

ExtractionConfig is a frozen dataclass. All fields have defaults, so ExtractionConfig() is always valid and extracts every frame.

Field Type Default Description
every_n_frames int 1 Keep one frame per N decoded. Must be >= 1.
max_frames int | None None Hard cap on frames returned.
start_time_seconds float 0.0 Skip frames before this timestamp (seconds).
end_time_seconds float | None None Stop after this timestamp. None runs to end.
image_format "jpg" | "png" | "webp" "jpg" Output format when saving frames to disk.

Roadmap

The following capabilities are planned and not yet implemented:

  • Scene-aware sampling - detect scene changes to extract representative key frames.
  • Motion-based sampling - skip redundant frames based on inter-frame difference.
  • OCR extraction - read text from frames and attach it to Frame objects.
  • Object detection - annotate frames with detected bounding boxes and labels.
  • Provider SDK adapters - format frames for direct use in multimodal API calls.
  • Token and cost estimation - estimate provider token counts before sending a request.

These are intentions, not commitments with delivery dates.

Contributing

See CONTRIBUTING.md for the full development workflow. The short version: install with uv, run ruff, mypy --strict, and pytest before every PR. Coverage must stay at or above 80 percent.

License

Apache License 2.0. See LICENSE and NOTICE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vid2llm-0.1.1.tar.gz (31.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

vid2llm-0.1.1-py3-none-any.whl (31.5 kB view details)

Uploaded Python 3

File details

Details for the file vid2llm-0.1.1.tar.gz.

File metadata

  • Download URL: vid2llm-0.1.1.tar.gz
  • Upload date:
  • Size: 31.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for vid2llm-0.1.1.tar.gz
Algorithm Hash digest
SHA256 2e5c911fd4c4bc27c560fdd163e91a9f202f2fe89171436b0be65b19b511488f
MD5 08645e1a9f259ef9cbfed7fedf9df602
BLAKE2b-256 7f65fd06ac2897923267273935715227eb38b99fa5ced98427f018cfe75d851e

See more details on using hashes here.

Provenance

The following attestation bundles were made for vid2llm-0.1.1.tar.gz:

Publisher: release.yml on leozitogs/vid2llm

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vid2llm-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: vid2llm-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 31.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for vid2llm-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b2667c77110db56623e7e79b875407da8e0e8acdf548901462a0273e6b503ca7
MD5 61a88065f21c670b212c35f2c5fd0ae7
BLAKE2b-256 8e775638ad3410b9f8d086861d1ca8b07c2e7ab54eb03724b741a2e7848e4ba2

See more details on using hashes here.

Provenance

The following attestation bundles were made for vid2llm-0.1.1-py3-none-any.whl:

Publisher: release.yml on leozitogs/vid2llm

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page