Skip to content

Commit

Permalink
docker: remove h265 from ffmpeg static build, for now
Browse files Browse the repository at this point in the history
Signed-off-by: deadprogram <[email protected]>
  • Loading branch information
deadprogram committed Oct 2, 2024
1 parent 6d857e2 commit 2749999
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.opencv-static
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN apt-get update && apt-get -y install \
libmp3lame-dev libtool libvorbis-dev \
meson ninja-build pkg-config \
texinfo wget yasm \
zlib1g-dev libx264-dev libx265-dev libnuma-dev libvpx-dev \
zlib1g-dev libx264-dev libvpx-dev \
libopus-dev libdav1d-dev \
git build-essential cmake pkg-config unzip \
curl ca-certificates libcurl4-openssl-dev libssl-dev \
Expand All @@ -31,7 +31,7 @@ RUN wget -O ffmpeg-5.0.tar.bz2 "https://www.ffmpeg.org/releases/ffmpeg-5.0.3.tar

RUN cd ffmpeg-5.0.3 && \
./configure --pkg-config-flags="--static" \
--enable-static --disable-shared --enable-gpl --enable-libx264 --enable-libx265 --enable-libvpx --enable-zlib \
--enable-static --disable-shared --enable-gpl --enable-libx264 --enable-libvpx --enable-zlib \
--disable-sdl2 --disable-vaapi --disable-vdpau --disable-v4l2-m2m --disable-doc && \
make -j $(nproc --all) && make install && ldconfig

Expand Down

0 comments on commit 2749999

Please sign in to comment.