fix: enable libx265
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-06-11 15:59:52 +01:00
parent 5048c4104a
commit 470af79a24

View File

@ -12,13 +12,14 @@ RUN apt update && \
apt install -y \ apt install -y \
build-essential \ build-essential \
libx264-dev \ libx264-dev \
libx265-dev \
libwebp-dev \ libwebp-dev \
libvpx-dev \ libvpx-dev \
nasm \ nasm \
libclang-dev \ libclang-dev \
protobuf-compiler && \ protobuf-compiler && \
rm -rf /var/lib/apt/lists/* rm -rf /var/lib/apt/lists/*
RUN git clone --single-branch --branch master https://git.v0l.io/ffmpeg/FFmpeg.git && \ RUN git clone --single-branch --branch release/7.1 https://git.v0l.io/ffmpeg/FFmpeg.git && \
cd FFmpeg && \ cd FFmpeg && \
./configure \ ./configure \
--prefix=${FFMPEG_DIR} \ --prefix=${FFMPEG_DIR} \
@ -27,6 +28,7 @@ RUN git clone --single-branch --branch master https://git.v0l.io/ffmpeg/FFmpeg.g
--disable-network \ --disable-network \
--enable-gpl \ --enable-gpl \
--enable-libx264 \ --enable-libx264 \
--enable-libx265 \
--enable-libwebp \ --enable-libwebp \
--enable-libvpx \ --enable-libvpx \
--disable-static \ --disable-static \