An open API service indexing awesome lists of open source software.

https://github.com/cloudsteak/music-info

Get music info
https://github.com/cloudsteak/music-info

Last synced: about 1 year ago
JSON representation

Get music info

Awesome Lists containing this project

README

          

# Music info

## Prepare

Install Conda: https://docs.anaconda.com/free/miniconda

```bash
conda create --prefix ./.venv python=3.11.5 -y
conda activate ./.venv
pip install -r requirements.txt
```

## Usage

```python
python main.py -p -g -c
```

```python
usage: main.py [-h] -p PATH [-g DEFAULT_GENRE] [-c COMMENT]

Update MP3 tags (Release date, Genre, Comment)

options:
-h, --help show this help message and exit
-p PATH, --path PATH Directory path containing MP3 files
-g DEFAULT_GENRE, --default_genre DEFAULT_GENRE
Default genre to apply to all MP3 files where we cannot find genre information
-c COMMENT, --comment COMMENT
Comment to apply to all MP3 files
```