Implement video transcoding, add dashboard UI, and cleanup repository

This commit is contained in:
wander 2026-01-01 00:39:28 -05:00
parent 94f077944b
commit 2f8ec83cd8
7 changed files with 1060 additions and 115 deletions

View file

@ -1,6 +1,8 @@
FROM python:3.11-slim
WORKDIR /app
COPY ta_symlink.py .
COPY . .
RUN apt-get update && apt-get install -y ffmpeg && rm -rf /var/lib/apt/lists/*
RUN pip install --no-cache-dir requests flask
RUN mkdir -p /app/data
EXPOSE 5000
CMD ["python", "ta_symlink.py"]