-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvs-edit
More file actions
30 lines (18 loc) · 735 Bytes
/
vs-edit
File metadata and controls
30 lines (18 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# https://bitbucket.org/mystery_keeper/vapoursynth-editor
# https://github.com/YomikoR/VapourSynth-Editor.git
# vs-edit
# do this directly after mkvtoolnix build
# pre
apt-get install build-essential qtbase5-dev qt5-default
ENV QT5BINPATH=/
RUN git clone git clone https://bitbucket.org/mystery_keeper/vapoursynth-editor.git && \
qmake -norecursive pro.pro CONFIG+=release && \
make -j$(nproc) && \
make install
# for final image
# vsmpeg
RUN git clone https://github.com/PantherNuru/VSMPEG.git && cd VSMPEG && \
apt-get install python3-pip -y && pip -r install requirements.txt -y && \
mkdir /vs-edit && mv /VSMPEG/smpeg.vpy /vs-edit/ && \
rm -rf /VSMPEG
COPY from=base /PATH-TO-VSEDIT /DEST-PATH/