Metadata-Version: 2.1
Name: cuecut
Version: 1.0.3
Summary: Cut a CD image file by its cue file
Home-page: https://github.com/jsjyhzy/cuecut
Author: Hu Zheyang
Author-email: i@huzheyang.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Multimedia :: Sound/Audio
Requires-Python: >=3
Description-Content-Type: text/markdown
Requires-Dist: CueParser (==1.0.0)
Requires-Dist: chardet (>=3.0.0)

# CueCut

Cut a CD image file by its cue file.

## Installation

```bash
pip install cuecut
```

## Usage

### 1. Prerequisite

There should exists an executable `ffmpeg` in `PATH`,
and the minimal Python/FFmpeg version that has been tested is 3.6.6/4.1 .

### 2. Folder Struct

```
.
├──xxx.cue
└──yyy.zzz
```

Where `yyy.zzz` is the name defined in `xxx.cue`

### 3. Cut it

```bash
cuecut /path/to/xxx.cue -c CodecYouLike
```

