Compare commits

...

3 commits

Author SHA1 Message Date
Simon Bruder eb58f3cbce
Add DCTFilter 2020-01-11 15:15:00 +00:00
Simon Bruder c76f4209aa
Add git 2020-01-11 13:46:28 +00:00
Simon Bruder c4597521cc
Add more scripts 2020-01-11 13:46:23 +00:00

View file

@ -5,15 +5,44 @@ RUN echo 'deb http://ftp-stud.hs-esslingen.de/pub/Mirrors/debian-multimedia/ tes
&& apt-get -y --allow-unauthenticated install deb-multimedia-keyring \
&& apt-get update \
&& apt-get -y install \
autoconf \
beignet-opencl-icd \
ffmpeg \
git \
libtool \
python3-pip \
vapoursynth \
vapoursynth-* \
wget \
x264 \
x265 \
&& rm -rf /var/lib/apt/lists/*
&& rm -rf /var/lib/apt/lists
RUN cd /tmp \
&& wget http://www.fftw.org/fftw-3.3.8.tar.gz \
&& tar xvf fftw-3.3.8.tar.gz \
&& cd fftw-3.3.8 \
&& ./configure \
--enable-shared \
--enable-threads \
--enable-openmp \
--enable-sse2 \
--enable-avx2 \
--enable-float \
&& make -j 4 install \
&& cd .. \
&& rm -rf fftw-3.3.8
RUN cd /tmp \
&& git clone --depth=1 https://github.com/HomeOfVapourSynthEvolution/VapourSynth-DCTFilter \
&& cd VapourSynth-DCTFilter \
&& ./autogen.sh \
&& ./configure --libdir=/usr/lib/x86_64-linux-gnu/vapoursynth \
&& make install \
&& cd .. \
&& rm -rf VapourSynth-DCTFilter
RUN apt-get -y install
RUN pip3 --no-cache-dir install \
matplotlib \
@ -21,8 +50,11 @@ RUN pip3 --no-cache-dir install \
&& yuuno jupyter install
RUN wget -P /usr/local/lib/python3.*/dist-packages/ \
https://gist.github.com/4re/342624c9e1a144a696c6/raw/08df48752c70c66df4127f2791bbedbc1958da77/nnedi3_rpow2.py \
https://gist.github.com/YamashitaRen/020c497524e794779d9c/raw/2a20385e50804f8b24f2a2479e2c0f3c335d4853/edi_rpow2.py \
https://github.com/HomeOfVapourSynthEvolution/havsfunc/raw/master/havsfunc.py \
https://github.com/HomeOfVapourSynthEvolution/mvsfunc/raw/master/mvsfunc.py \
https://github.com/HomeOfVapourSynthEvolution/vsTAAmbk/raw/master/vsTAAmbk.py \
https://github.com/Infiziert90/getnative/raw/master/getnative.py \
https://github.com/Irrational-Encoding-Wizardry/fvsfunc/raw/master/fvsfunc.py \
https://github.com/Irrational-Encoding-Wizardry/kagefunc/raw/master/kagefunc.py \