This is a Flask-powered website that allows you to embed podcast metadata like Title, Track number, etc. into an MP3 or WAV file using a simple interface. Have a look at it here or run it yourself with the instructions below.
Full list of supported tags:
- TIT2 (Title)
- TPE1 (Author)
- TALB (Album)
- TYER (Year)
- TCON (Genre)
- TRCK (Track number)
- APIC (Cover art)
- CTOC & CHAP (Chapters)
-
Clone the repository and
cdinto it.git clone https://github.com/MrGauz/podcast-metadata.git cd podcast-metadata -
Create a virtual environment and install dependencies.
python3 -m venv venv source venv/bin/activate pip install -r requirements.txt -
Run the application.
python3 app.py --debug
⚠️ Never run--debugin production.
-
Install docker and docker-compose.
-
Clone the repository and
cdinto it.git clone https://github.com/MrGauz/podcast-metadata.git cd podcast-metadata touch db.sqlite -
Start the container.
docker-compose up -d
-
Create a new nginx configuration in
/etc/nginx/sites-available/metadata.bilyk.me. -
Enable the new configuration.
ln -s /etc/nginx/sites-available/metadata.bilyk.me /etc/nginx/sites-enabled/ systemctl reload nginx
-
Create an SSL certificate and a new apache config using certbot.
certbot
-
Pull the latest changes.
git pull
-
Restart the container.
docker compose down docker compose up -d --build docker system prune --all --volumes --force