We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b7946d commit d04e2f2Copy full SHA for d04e2f2
1 file changed
video-transcoding/Dockerfile
@@ -66,10 +66,9 @@ RUN set -ex \
66
&& cd /usr/src/ffmpeg \
67
&& rm -rf nasm-2.13.01 \
68
69
- # libx264 latest
70
- && wget http://download.videolan.org/pub/x264/snapshots/last_x264.tar.bz2 \
71
- && tar xjvf last_x264.tar.bz2 \
72
- && cd x264-snapshot* \
+ # libx264 stable
+ && git clone -b stable http://git.videolan.org/git/x264.git x264 \
+ && cd x264 \
73
&& PATH="/usr/src/ffmpeg/bin:$PATH" ./configure --prefix="/usr/src/ffmpeg/build" --bindir="/usr/src/ffmpeg/bin" --enable-static --disable-opencl \
74
&& PATH="/usr/src/ffmpeg/bin:$PATH" make -j"$(nproc)" \
75
&& make install \
0 commit comments