Minimal video generation and processing library.
Project description
videopython
Minimal, LLM-friendly Python library for programmatic video editing, processing, and AI video workflows.
Full documentation: videopython.com
Disclaimer: This project started as a hand-written hobby project, but most of the code is now produced by LLM agents. Humans still drive direction, approve changes, and own design decisions.
Installation
# Install FFmpeg first (macOS: brew install ffmpeg | Debian: apt-get install ffmpeg)
pip install videopython # core video/audio editing
pip install "videopython[ai]" # + ALL local AI features (GPU recommended)
pip install "videopython[ai,mcp]" # + MCP server for agent-driven editing
Python >=3.11, <3.14. AI features run locally — no cloud API keys required, but model weights are downloaded on first use. LLM-driven editing and scene captioning use a local Ollama server (ollama pull gemma3:27b).
Quick Start
JSON editing plans
A VideoEdit is a multi-segment plan, defined as a dict (or JSON), validated and executed against the source files:
from videopython.editing import VideoEdit
edit = VideoEdit.from_dict({
"segments": [{
"source": "raw.mp4",
"start": 10.0,
"end": 20.0,
"operations": [
{"op": "resize", "width": 1080, "height": 1920},
{"op": "color_adjust", "saturation": 1.15, "contrast": 1.05},
{"op": "fade", "mode": "in", "duration": 0.5},
],
}],
})
edit.validate() # dry-run via metadata, no frames loaded
edit.run_to_file("output.mp4") # streams ffmpeg decode → effects → encode
run_to_file() streams ffmpeg decode → per-frame effects → encode, so memory stays bounded even for hour-long sources. If you need the frames back in memory, load the rendered file: Video.from_path(str(edit.run_to_file("output.mp4"))).
Automatic editing (local LLM)
Give AutoEditor your clips and a brief; a local Ollama vision model selects and orders the shots, and you get back a runnable VideoEdit:
from videopython.ai import AutoEditor, OllamaVisionLLM
editor = AutoEditor(planner=OllamaVisionLLM(model="gemma3:27b")) # ollama pull gemma3:27b
edit = editor.edit(
["clip_a.mp4", "clip_b.mp4", "clip_c.mp4"],
brief="A punchy 15-second teaser; lead with the most dynamic shot.",
)
edit.run_to_file("teaser.mp4")
The model picks scenes by id from a catalog built from scene detection + captions, so its temporal imprecision never reaches the render. See the Automatic Editing Guide.
AI generation
from videopython.ai import TextToImage, ImageToVideo, TextToSpeech
image = TextToImage().generate_image("A cinematic mountain sunrise")
video = ImageToVideo().generate_video(image=image)
audio = TextToSpeech().generate_audio("Welcome to videopython.")
video.add_audio(audio).save("ai_video.mp4")
LLM & AI Agent Integration
Putting an LLM in the loop works three ways:
- Bring your own LLM — videopython gives your model the JSON Schema and a structured refine loop; your model authors the plans (details below).
AutoEditor— a local Ollama vision model is the planner (see Automatic editing above).- MCP server —
videopython-mcpexposes the pipeline as Model Context Protocol tools, so an agent like Claude drives editing with its own model. Install[ai,mcp], runvideopython-mcp, and point your MCP client at it. See the MCP Server Guide.
For mode 1: every operation is a Pydantic model whose fields ARE the JSON wire format. VideoEdit.json_schema() returns a JSON Schema with a discriminated union over every LLM-exposed Operation (server-only ops like image_overlay are excluded by default) — pass it straight to Anthropic tool use, OpenAI function calling, or any structured-output API. Pass strict=True for a provider strict-mode grammar that prevents simple bound violations at decode time.
The plan parses permissively (shape only) and owns numeric bounds at validation, so a refine loop converges fast: edit.check(meta) collects every structured PlanError in one pass, edit.repair(meta) auto-clamps the mechanical violations (window/timestamp overruns, negatives) with a reported changelog, and edit.normalize_dimensions(meta, target) makes heterogeneous segments concat-compatible by construction. edit.validate() still raises a typed PlanValidationError (a ValueError with structured .errors) for the single-error path.
See the LLM Integration Guide for end-to-end examples, the collect/repair/normalize refine loop, and operation discovery patterns.
Features
videopython.base—Video,VideoMetadata,FrameIterator,Transcription, and shared result types (BoundingBox,FaceTrack,SceneBoundary, ...). No AI dependencies.videopython.audio—Audiowith overlay, concat, normalize, time-stretch, silence detection, segment classification.videopython.editing—Operation/Effectfoundation,VideoEditplan runner with JSON Schema + streaming execution. Transforms (resize, crop, fps, speed, freeze, silence removal; cutting is the segment's own start/end) and effects (blur, zoom, color grading, vignette, Ken Burns, fade, overlays, animated subtitles).videopython.ai(install with[ai]) — generation (TextToVideo,ImageToVideo,TextToImage,TextToSpeech,TextToMusic), understanding (AudioToText,AudioClassifier,SceneVLM,FaceTracker,ObjectDetector,SemanticSceneDetector), theFaceTrackingCroptransform, theObjectDetectionOverlayeffect (per-frame bounding boxes + labels), and the full-pipelineVideoAnalyzer. Scene captioning and dub translation run on a local Ollama model.videopython.ai.auto_edit—AutoEditor+OllamaVisionLLM: plan and render an edit from sources + a one-line brief, with a local LLM selecting scenes by id from an auto-built catalog.videopython.ai.dubbing—VideoDubberfor voice-cloned revoicing with timing sync.videopython.mcp(install with[mcp]) —videopython-mcp, an MCP stdio server exposing the auto-edit pipeline (analyze → catalog → validate/repair/run) so an agent drives editing.
Examples
Development
See DEVELOPMENT.md for local setup, testing, and contribution workflow.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file videopython-0.50.1.tar.gz.
File metadata
- Download URL: videopython-0.50.1.tar.gz
- Upload date:
- Size: 1.1 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a3d84c00df063596423575e0b592cb858240cc8331f4b5d73b13c38a58d7c5d
|
|
| MD5 |
388f08a1720225504240fb378c6c9212
|
|
| BLAKE2b-256 |
7a86633458d272a4b87145d6fd0613932a587e28b8baa08b51b3e6e2dff3fcb5
|
Provenance
The following attestation bundles were made for videopython-0.50.1.tar.gz:
Publisher:
publish.yml on BartWojtowicz/videopython
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
videopython-0.50.1.tar.gz -
Subject digest:
4a3d84c00df063596423575e0b592cb858240cc8331f4b5d73b13c38a58d7c5d - Sigstore transparency entry: 1901254478
- Sigstore integration time:
-
Permalink:
BartWojtowicz/videopython@bfe9f467f0458890547418d23e45db9281a0dd2c -
Branch / Tag:
refs/heads/main - Owner: https://github.com/BartWojtowicz
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfe9f467f0458890547418d23e45db9281a0dd2c -
Trigger Event:
push
-
Statement type:
File details
Details for the file videopython-0.50.1-py3-none-any.whl.
File metadata
- Download URL: videopython-0.50.1-py3-none-any.whl
- Upload date:
- Size: 1.2 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a27a21938279fe14dda2d8c85d3851d76a60ca0d1617c0e6edcbc7bc161ead69
|
|
| MD5 |
9fb6816083da99669b3709f34f76f0fb
|
|
| BLAKE2b-256 |
3219b76860e5dd5283a5ec7df0e2b0f476a5a07be43fe53867499e7d572a5868
|
Provenance
The following attestation bundles were made for videopython-0.50.1-py3-none-any.whl:
Publisher:
publish.yml on BartWojtowicz/videopython
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
videopython-0.50.1-py3-none-any.whl -
Subject digest:
a27a21938279fe14dda2d8c85d3851d76a60ca0d1617c0e6edcbc7bc161ead69 - Sigstore transparency entry: 1901254573
- Sigstore integration time:
-
Permalink:
BartWojtowicz/videopython@bfe9f467f0458890547418d23e45db9281a0dd2c -
Branch / Tag:
refs/heads/main - Owner: https://github.com/BartWojtowicz
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfe9f467f0458890547418d23e45db9281a0dd2c -
Trigger Event:
push
-
Statement type: