Add faster implementation of descale

master
Simon Bruder 2020-02-13 21:00:39 +00:00
parent 4632b6fbfc
commit ca8ec63e7d
No known key found for this signature in database
GPG Key ID: 6F03E0000CC5B62F
1 changed files with 10 additions and 0 deletions

View File

@ -44,6 +44,16 @@ RUN cd /tmp \
&& cd .. \
&& rm -rf VapourSynth-DCTFilter
# Double speed for getnative
RUN cd /tmp/ \
&& git clone --depth=1 https://github.com/BluBb-mADe/vapoursynth-descale \
&& cd vapoursynth-descale \
&& g++ -std=c++17 -shared -fPIC -O2 descale.cpp -o libdescale.so \
&& cp descale.py /usr/lib/python3/dist-packages/ \
&& cp libdescale.so /usr/lib/x86_64-linux-gnu/vapoursynth/ \
&& cd .. \
&& rm -rf vapoursynth-descale
RUN pip3 --no-cache-dir install \
matplotlib \
tqdm \