1
0
mirror of https://github.com/2ec0b4/kaamelott-soundboard.git synced 2025-12-10 08:25:34 +00:00

(master) Crée une configuration Docker pour l'harmonisation du volume des fichiers sons

This commit is contained in:
Antoine
2020-06-17 16:14:51 +02:00
parent 97b7b2a0a7
commit 02ed48e584
5 changed files with 25 additions and 63 deletions

View File

@@ -0,0 +1,13 @@
FROM jrottenberg/ffmpeg:4.2-ubuntu
RUN apt-get -yqq update && \
apt-get install -yq --no-install-recommends python3-pip && \
apt-get autoremove -y && \
apt-get clean -y
RUN pip3 install ffmpeg-normalize
COPY normalize.sh /normalize.sh
RUN chmod +x /normalize.sh
ENTRYPOINT ["/normalize.sh"]