From a826eb30b0ed97790e749b3e5d9ee8b4644d153a Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Wed, 6 May 2020 22:51:04 +0200 Subject: [PATCH] Add vs-placebo --- Dockerfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Dockerfile b/Dockerfile index 492e113..c2dffc1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,9 @@ RUN apt-get update \ clinfo \ ffmpeg \ git \ + libplacebo-dev \ libtool \ + meson \ mkvtoolnix \ pocl-opencl-icd \ python3-pip \ @@ -71,6 +73,16 @@ RUN cd /tmp/ \ && cd .. \ && rm -rf vapoursynth-descale +RUN cd /tmp \ + && git clone --depth=1 --recursive https://github.com/Lypheo/vs-placebo \ + && cd vs-placebo \ + && meson build \ + && cd build \ + && ninja \ + && cp libvs_placebo.so /usr/lib/x86_64-linux-gnu/vapoursynth/ \ + && cd /tmp/ \ + && rm -rf vs-placebo + RUN pip3 --no-cache-dir install \ matplotlib \ tqdm \