Metadata-Version: 2.4
Name: zncut
Version: 0.1.1
Summary: the fastest command line tool for removing ads from pre-downloaded youtube videos with frame-accurate cuts
License-Expression: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# zncut

the fastest command line tool for removing ads from pre-downloaded youtube videos with frame-accurate cuts

## Dependencies

- Python 3.7+
- ffmpeg + ffprobe (`brew install ffmpeg` on macOS)

## Usage

```bash
python3 zncut.py --input path/to/video.mp4 --id VIDEO_ID --output path/to/output.mp4
```

## Arguments

| Argument    | Description                   | Required                               |
| ----------- | ----------------------------- | -------------------------------------- |
| `--input`   | Path to the video file        | Yes                                    |
| `--id`      | YouTube video ID              | Yes                                    |
| `--output`  | Output file path              | No (defaults to `<input>_zncut.<ext>`) |

## Example

```bash
python3 zncut.py --input path/to/video.mp4 --id dQw4w9WgXcQ --output out.mp4
```

## Publishing to PyPI

First time only: `pipx install build twine`

```bash
pyproject-build && twine upload dist/*
```
