Metadata-Version: 2.4
Name: bladeworks
Version: 0.1.1
Summary: Render portable Final Cut Pro XML projects to video.
Project-URL: Homepage, https://github.com/bladeworks-ai/bladeworks
Project-URL: Repository, https://github.com/bladeworks-ai/bladeworks
Project-URL: Issues, https://github.com/bladeworks-ai/bladeworks/issues
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Multimedia :: Video
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: torch>=2
Requires-Dist: av>=15
Requires-Dist: numpy
Requires-Dist: tqdm
Requires-Dist: Pillow>=10
Requires-Dist: fonttools>=4.50
Requires-Dist: fastapi>=0.110
Requires-Dist: uvicorn>=0.29
Requires-Dist: aiortc>=1.14
Provides-Extra: test
Requires-Dist: pytest>=8; extra == "test"
Requires-Dist: httpx>=0.27; extra == "test"

# Bladeworks

Bladeworks renders portable Final Cut Pro XML projects (`.fcpxml` files and
`.fcpxmld` bundles) to video.

## Install

```bash
python -m pip install bladeworks
```

Bladeworks requires `ffprobe` on `PATH` to inspect source media. Run the
prerequisite check after installation:

```bash
bladeworks doctor
```

## Render

```bash
bladeworks render path/to/project.fcpxmld --output output.mp4
```

See all commands and options:

```bash
bladeworks --help
```

## Test a checkout

```bash
python -m pip install -r requirements.txt
python -m pip install -e . --no-deps
python -m pytest -q
```
