Added interpolation arg, updated docs, provided Dockerfile + instructions

This commit is contained in:
2024-07-03 00:15:18 -04:00
parent 2b6437c1db
commit ad29252a41
3 changed files with 45 additions and 9 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM python:3.12-slim-bookworm
WORKDIR /app
COPY video_to_gif.py /app/video_to_gif.py
RUN apt update && \
apt upgrade && \
apt install ffmpeg -y
ENTRYPOINT ["python", "video_to_gif.py"]