Implement OTF ecoding for videos

This commit is contained in:
Logan Cusano
2025-08-02 01:10:14 -04:00
parent 2a5ca2c5a5
commit a391333c52
2 changed files with 95 additions and 15 deletions

View File

@@ -4,6 +4,11 @@ FROM python:3.13-slim
# Set the working directory in the container
WORKDIR /code
# Install FFMPEG
RUN apt-get update && \
apt-get install -y ffmpeg --no-install-recommends && \
rm -rf /var/lib/apt/lists/*
# Copy the requirements file into the container
COPY ./requirements.txt /code/requirements.txt