Enable libvpx
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
kieran 2024-05-13 12:21:22 +01:00
parent da2448fae9
commit 423fbfdb77
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941

View File

@ -9,6 +9,7 @@ RUN apt update && \
build-essential \
libx264-dev \
libwebp-dev \
libvpx-dev \
nasm \
libclang-dev && \
rm -rf /var/lib/apt/lists/*
@ -23,6 +24,7 @@ RUN git clone --depth=1 https://git.ffmpeg.org/ffmpeg.git && \
--enable-version3 \
--enable-libx264 \
--enable-libwebp \
--enable-libvpx \
--disable-static \
--enable-shared && \
make -j8 && make install