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
- Host: GitHub
- URL: https://github.com/cloudsteak/music-info
- Owner: cloudsteak
- License: mit
- Created: 2024-05-13T11:05:23.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-14T09:58:08.000Z (about 2 years ago)
- Last Synced: 2024-05-14T12:28:59.239Z (about 2 years ago)
- Language: Python
- Size: 7.81 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```