24 lines
352 B
Markdown
24 lines
352 B
Markdown
# Karaokatalog
|
|
|
|
Tools to manage an Ultrastar DX song library. Features include:
|
|
|
|
1. Deduplication
|
|
|
|
## Setup
|
|
|
|
```bash
|
|
python3 -m venv venv
|
|
source venv/bin/activate
|
|
pip install -r requirements.txt
|
|
```
|
|
|
|
## Run
|
|
|
|
### Deduplication
|
|
|
|
If your song library is stored at `/path/to/library`, run:
|
|
|
|
```bash
|
|
python3 -m karaokatalog.deduplicate /path/to/library
|
|
```
|