Lower and normalize volume of theme songs pulled by Themerr or jellyfin plugin themesongs
To install this project
docker run -d \
--name themerr-normalize \
-e PUID=1000 \
-e PGID=1000 \
-e SLEEP_DURATION=43200 \
-e MEDIA_PATH=/media \
-v {MEDIA_PATH}:/media \
--restart unless-stopped \
themerr-normalize
or use the docker-compose.yml
services:
themerr-normalize:
image: ghcr.io/dishit79/themerr-normalize:latest
container_name: themerr-normalize
environment:
- SLEEP_DURATION=43200
- MEDIA_PATH=/media
volumes:
- ${MEDIA_PATH}:/media
user: ${PUID}:${PGID}
restart: unless-stopped