yt-dlp headless capture (15dk segmentleme), ses peak + chat velocity sinyal tespiti, OpenAI Whisper STT (kelime zaman damgalı), BullMQ/Redis/Postgres altyapısı ve kanal durumu + transkript kütüphanesi gösteren Next.js panel. LLM virality skorlama, render/crop/altyazı ve multi-platform dağıtım bu fazın kapsamı dışında. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
14 lines
387 B
Docker
14 lines
387 B
Docker
FROM python:3.12-slim
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
ffmpeg libsndfile1 \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /app
|
|
COPY apps/worker/requirements.txt ./apps/worker/requirements.txt
|
|
RUN pip install --no-cache-dir -r apps/worker/requirements.txt
|
|
COPY apps/worker ./apps/worker
|
|
|
|
WORKDIR /app/apps/worker
|
|
CMD ["python", "-m", "worker.main"]
|