Metadata-Version: 2.4
Name: reeln
Version: 0.0.36
Summary: Platform-agnostic CLI toolkit for livestreamers
Project-URL: Homepage, https://streamn.dad
Project-URL: Documentation, https://reeln-cli.readthedocs.io
Project-URL: Repository, https://github.com/StreamnDad/reeln-cli
Project-URL: Changelog, https://github.com/StreamnDad/reeln-cli/blob/main/CHANGELOG.md
Project-URL: Issues, https://github.com/StreamnDad/reeln-cli/issues
License-Expression: AGPL-3.0-only
License-File: LICENSE
Requires-Python: >=3.11
Requires-Dist: filelock>=3.0
Requires-Dist: reeln-native<1.0,>=0.2.3
Requires-Dist: typer>=0.12.3
Provides-Extra: dev
Requires-Dist: mypy; extra == 'dev'
Requires-Dist: pytest; extra == 'dev'
Requires-Dist: pytest-cov; extra == 'dev'
Requires-Dist: pytest-xdist; extra == 'dev'
Requires-Dist: questionary>=2.0.1; extra == 'dev'
Requires-Dist: ruff; extra == 'dev'
Provides-Extra: docs
Requires-Dist: furo>=2024.1; extra == 'docs'
Requires-Dist: myst-parser>=3.0; extra == 'docs'
Requires-Dist: sphinx-copybutton>=0.5; extra == 'docs'
Requires-Dist: sphinx>=7.0; extra == 'docs'
Provides-Extra: interactive
Requires-Dist: questionary>=2.0.1; extra == 'interactive'
Description-Content-Type: text/markdown

<p align="center">
  <img src="https://raw.githubusercontent.com/StreamnDad/reeln-cli/main/assets/logo.jpg" alt="reeln" width="200">
</p>

# reeln

[![CI](https://github.com/StreamnDad/reeln-cli/actions/workflows/ci.yml/badge.svg)](https://github.com/StreamnDad/reeln-cli/actions/workflows/ci.yml)
[![Docs](https://readthedocs.org/projects/reeln-cli/badge/?version=latest)](https://reeln-cli.readthedocs.io/)
[![PyPI](https://img.shields.io/pypi/v/reeln)](https://pypi.org/project/reeln/)

**Platform-agnostic CLI toolkit for livestreamers.**

reeln handles video manipulation, segment/highlight management, and media lifecycle — generic by default, sport-specific through configuration. Built by [Streamn Dad](https://streamn.dad).

## Requirements

- **Python 3.11+**
- **ffmpeg 5.0+** with libx264, aac, and libass

> **Important:** reeln requires ffmpeg installed on your system. It is used for
> all video processing — merging, rendering, overlays, and encoding. Install it
> before using reeln, then run `reeln doctor` to verify.
>
> ```bash
> # macOS
> brew install ffmpeg
>
> # Ubuntu / Debian
> sudo apt install ffmpeg
>
> # Windows
> winget install ffmpeg
> ```

## Install

```bash
# With pip
pip install reeln

# With uv (recommended)
uv tool install reeln
```

Verify everything is working:

```bash
reeln --version
reeln doctor          # checks ffmpeg, codecs, config, permissions, plugins
```

## Features

- **Game lifecycle management** — init, segment processing, highlights, events, finish
- **Short-form rendering** — crop, scale, speed, LUT, overlays — landscape to vertical/square
- **FFmpeg-powered merging** — concat segments into highlight reels with smart re-encoding
- **Sport-agnostic segments** — hockey periods, basketball quarters, soccer halves, and more
- **Render profiles** — save and reuse rendering settings, chain them with iterations
- **Smart zoom** — AI-powered tracking that follows the action (via plugin)
- **Player overlays** — roster-aware goal overlays with jersey number lookup
- **Plugin architecture** — lifecycle hooks for YouTube, Instagram, cloud uploads, and more
- **Flexible configuration** — JSON config, XDG paths, env var overrides, named profiles
- **Cross-platform** — macOS, Linux, Windows

## Quick start

```bash
# Initialize a hockey game
reeln game init roseville mahtomedi --sport hockey

# Process segments as the game progresses
reeln game segment 1
reeln game segment 2
reeln game segment 3

# Merge into a full-game highlight reel
reeln game highlights

# Render a vertical short for social media
reeln render short clip.mkv --crop crop --speed 0.5

# Finish the game
reeln game finish
```

See the [examples](examples/) for detailed walkthroughs of every workflow.

## Supported sports

| Sport | Segment name | Count | Example directories |
|---|---|---|---|
| hockey | period | 3 | `period-1/`, `period-2/`, `period-3/` |
| basketball | quarter | 4 | `quarter-1/` through `quarter-4/` |
| soccer | half | 2 | `half-1/`, `half-2/` |
| football | half | 2 | `half-1/`, `half-2/` |
| baseball | inning | 9 | `inning-1/` through `inning-9/` |
| lacrosse | quarter | 4 | `quarter-1/` through `quarter-4/` |
| generic | segment | 1 | `segment-1/` |

## CLI reference

### System

| Command | Description |
|---|---|
| `reeln --version` | Show version and ffmpeg info |
| `reeln doctor` | Health check: ffmpeg, codecs, config, permissions, plugins |

### Game lifecycle

| Command | Description |
|---|---|
| `reeln game init` | Set up game directory with sport-specific segments |
| `reeln game segment <N>` | Collect replays and merge segment highlights |
| `reeln game highlights` | Merge all segments into full-game highlight reel |
| `reeln game compile` | Compile event clips by type, segment, or player |
| `reeln game finish` | Finalize game and show summary |
| `reeln game prune` | Remove generated artifacts |
| `reeln game event list` | List registered events |
| `reeln game event tag` | Tag an event with type, player, metadata |

### Rendering

| Command | Description |
|---|---|
| `reeln render short` | Render 9:16 or 1:1 short from clip |
| `reeln render preview` | Fast low-res preview render |
| `reeln render apply` | Apply a render profile (full-frame, no crop) |
| `reeln render reel` | Assemble rendered shorts into a reel |

### Configuration

| Command | Description |
|---|---|
| `reeln config show` | Display resolved configuration |
| `reeln config doctor` | Validate config and warn on issues |
| `reeln config event-types` | Manage event types |

### Plugins

| Command | Description |
|---|---|
| `reeln plugins search` | Search the plugin registry |
| `reeln plugins info <name>` | Show plugin details and config schema |
| `reeln plugins install <name>` | Install a plugin from the registry |
| `reeln plugins update [name]` | Update a plugin or all installed |
| `reeln plugins list` | List installed plugins |
| `reeln plugins enable <name>` | Enable a plugin |
| `reeln plugins disable <name>` | Disable a plugin |

## Configuration

reeln uses a layered JSON config system:

1. **Bundled defaults** — shipped with the package
2. **User config** — `config.json` in your XDG config directory
3. **Game overrides** — `game.json` in the game directory
4. **Environment variables** — `REELN_<SECTION>_<KEY>`

```bash
reeln config show
```

## Documentation

- [Full documentation](https://reeln-cli.readthedocs.io) — install, guides, CLI reference
- [Examples](examples/) — step-by-step walkthroughs for common workflows

## License

[GNU Affero General Public License v3.0](LICENSE) (AGPL-3.0)

## Links

- [streamn.dad](https://streamn.dad) — project home
- [Documentation](https://reeln-cli.readthedocs.io) — full docs
- [@streamn_dad](https://www.instagram.com/streamn_dad/) — highlights on Instagram
- [YouTube](https://www.youtube.com/@streamn-dad) — livestreams and highlights
