Metadata-Version: 2.4
Name: raricode
Version: 0.0.15
Summary: An ffmpeg transcoding helper.
Author: Bearmine
License-Expression: Apache-2.0
License-File: LICENSE
Requires-Dist: click>=8.4.1
Requires-Dist: shelltastic>=0.11.2
Requires-Dist: termtastic>=0.0.6
Requires-Python: >=3.12
Description-Content-Type: text/markdown

# Raricode

An ffmpeg transcoding helper.

## Requirements

[FFmpeg](https://www.ffmpeg.org/) must be installed and available on your path.

## Installation

### Development Installation

Run in repo root:

```sh
uv tool install --editable .
```

### Shell Completions

See https://click.palletsprojects.com/en/stable/shell-completion/.

```bash
# Add to .bashrc
eval "$(_RARICODE_COMPLETE=bash_source raricode)"
```

```fish
# Add to fish completions
_RARICODE_COMPLETE=fish_source raricode | source
```

```zsh
# Add to .zshrc
eval "$(_RARICODE_COMPLETE=zsh_source raricode)"
```

```powershell
# Add this to your PowerShell profile (the path of $PROFILE)
$env:_RARICODE_COMPLETE = 'powershell_source'
raricode | Out-String | Invoke-Expression
Remove-Item Env:_RARICODE_COMPLETE
```
