Metadata-Version: 2.4
Name: auto_di_tag
Version: 0.2.3
Summary: Automatically create rename and tag your dance playlist
Author-email: Klassenserver7b <klassenserver7bwin10@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/klassenserver7b/AutoDITag
Project-URL: Issues, https://github.com/klassenserver7b/AutoDITag/issues
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: Topic :: Multimedia :: Sound/Audio
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: mutagen>=1.45
Requires-Dist: argparse>=1.4
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Requires-Dist: black; extra == "dev"
Requires-Dist: flake8; extra == "dev"
Dynamic: license-file

# AutoDITag

A Tool to automatically rename and tag mp3 files

Meant to be used to create playlist files and corresponding tagged mp3 files, that can be used in [DanceInterpreter](https://github.com/Klassenserver7b/Danceinterpreter)

## Installation and Usage

Requires Python 3.6+, mutagen and argparse

### Pip
```sh
pip install auto-di-tag
auto-di-tag -f PATH_TO_DESCRIPTOR_FILE -d PATH_TO_MUSICFOLDER -n PLAYLISTNAME
```

### Manual
```sh
git clone https://github.com/klassenserver7b/AutoDITag.git
cd AutoDITag
pip install -r requirements.txt
python3 auto_di_tag.py -f PATH_TO_DESCRIPTOR_FILE -d PATH_TO_MUSICFOLDER -n PLAYLISTNAME
```

### How to create a descriptorfile
[see Examples](examples/README.md)

## License
This Project is Licensed under the [GNU GENERAL PUBLIC LICENSE Version 3](LICENSE).
Therefore there is NO WARRANTY for anything regarding this code

## Help Menu

```
usage: AutoDITag [-h] -f FILE -d DIR -n NAME

Automatically rename and tag your dance playlist

options:
  -h, --help            show this help message and exit
  -f FILE, --file FILE  Your txt file containing the playlist
  -d DIR, --dir DIR     The directory of the mp3 files to process
  -n NAME, --name NAME  The name of the Playlist. eg: Schulball 08.05.2024

see https://github.com/klassenserver7b/AutoDITag
```
