Simplificación de ficheros

This commit is contained in:
Root
2025-05-31 17:48:56 +02:00
parent 83b0597a66
commit 6f111e68a8
54 changed files with 105 additions and 966 deletions

11
splitter/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM python:3.9-slim
WORKDIR /app
# Instalar dependencias
RUN apt-get update && apt-get install -y ffmpeg
RUN pip install pika pydub
COPY app.py .
CMD ["python", "app.py"]