Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from bundle
Build or revise a reusable FFmpeg timeline for short-form video editing. Use when the user wants an agent-editable API for trimming clips, cropping, fitting to
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
pyproject.toml
1[build-system]2requires = ["setuptools>=68"]3build-backend = "setuptools.build_meta"45[project]6name = "video-timeline-editor"7version = "0.1.0"8description = "Editable FFmpeg timelines for short-form video projects"9requires-python = ">=3.11"10dependencies = []1112[project.scripts]13video-timeline = "video_timeline_editor.presentation.cli:main"1415[tool.setuptools]16package-dir = {"" = "scripts"}1718[tool.setuptools.packages.find]19where = ["scripts"]20include = ["video_timeline_editor*"]21