From eeaa32a13b596fb85334ab1b942a8d4fa190e8f4 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Thu, 13 Feb 2020 21:37:46 +0000 Subject: [PATCH] Add ContinuityFixer --- Dockerfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/Dockerfile b/Dockerfile index fd03934..fcc5911 100644 --- a/Dockerfile +++ b/Dockerfile @@ -44,6 +44,19 @@ RUN cd /tmp \ && cd .. \ && rm -rf VapourSynth-DCTFilter + +RUN cd /tmp \ + && git clone --depth=1 https://github.com/MonoS/VS-ContinuityFixer \ + && cd VS-ContinuityFixer \ + && sed -i \ + -e 's/VapourSynth\.h/vapoursynth\/VapourSynth.h/' \ + -e 's/VSHelper\.h/vapoursynth\/VSHelper.h/' \ + continuity.cpp \ + && g++ -shared -fPIC -O2 -msse2 -mfpmath=sse continuity.cpp -o continuity.so \ + && cp continuity.so /usr/lib/x86_64-linux-gnu/vapoursynth/ \ + && cd .. \ + && rm -rf VS-ContinuityFixer + # Double speed for getnative RUN cd /tmp/ \ && git clone --depth=1 https://github.com/BluBb-mADe/vapoursynth-descale \