Etappe 2: Ripping-Pipeline — Erste Implementierung

- DockerfileWorker: abcde, flac, ffmpeg, handbrake-cli installiert
- ripping.py: Ripping-Module für DVD/Blu-ray mit HandBrake
- tasks.py: Disc-Typ-Erkennung + passendes Ripping-Modul
- docker-compose.yml: Output-Verzeichnis /output hinzugefügt
- output/ Verzeichnis erstellt

WIP: CD-Ripping mit abcde noch nicht implementiert
This commit is contained in:
Hitonabi
2026-07-21 16:47:50 +02:00
parent 594f07f7a3
commit 9e73d065f9
7 changed files with 227 additions and 48 deletions
+4
View File
@@ -4,6 +4,10 @@ WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends \
curl \
abcde \
flac \
ffmpeg \
handbrake-cli \
&& rm -rf /var/lib/apt/lists/*
RUN pip install --no-cache-dir \