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 \