add capnp and ffmpeg (#4)

This commit is contained in:
Adeeb Shihadeh
2026-02-22 19:06:33 -08:00
committed by GitHub
parent e66179c262
commit cd913d0f9f
12 changed files with 420 additions and 14 deletions

19
ffmpeg/pyproject.toml Normal file
View File

@@ -0,0 +1,19 @@
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ffmpeg"
version = "7.1.0"
description = "FFmpeg media tools and libraries (minimal build for openpilot)"
requires-python = ">=3.8"
[project.scripts]
ffmpeg = "ffmpeg:_run_ffmpeg"
ffprobe = "ffmpeg:_run_ffprobe"
[tool.setuptools.packages.find]
include = ["ffmpeg*"]
[tool.setuptools.package-data]
ffmpeg = ["install/**/*"]