From 96fbd3fab7bb1179d907c51b46bf7e16558cfe3a Mon Sep 17 00:00:00 2001 From: Andy H Date: Wed, 1 Jan 2025 21:17:14 -0500 Subject: [PATCH] Update backend.Dockerfile: Forcing PyAV 13.1.0 PyAV removed support for side_data in v14, due to ffmpeg deprecation so we need to target v13.1.0 until an alternative solution becomes viable. --- backend.Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/backend.Dockerfile b/backend.Dockerfile index 54a32967b..a865b188f 100644 --- a/backend.Dockerfile +++ b/backend.Dockerfile @@ -30,6 +30,7 @@ COPY README.md . RUN pip install --upgrade pip setuptools RUN pip install -e ".[interactive-demo]" +RUN pip uninstall -y av && pip install av==13.1.0 # https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite/issues/69#issuecomment-1826764707 RUN rm /opt/conda/bin/ffmpeg && ln -s /bin/ffmpeg /opt/conda/bin/ffmpeg