This commit is contained in:
2024-10-06 04:41:00 +00:00
committed by GitHub
parent 51baa74036
commit f75f2dfa43
4 changed files with 4 additions and 4 deletions

View File

@@ -33,7 +33,7 @@ RUN cd ~ && git clone --depth 1 'https://code.videolan.org/videolan/x264.git' &&
&& ./configure --disable-cli --enable-strip --enable-pic --enable-shared --disable-static --prefix=/usr \
&& make -j$(grep -c ^processor /proc/cpuinfo) && make install \
&& cd ~ && rm -rf x264
RUN cd ~ && git clone --depth 1 'https://github.com/FFmpeg/FFmpeg' && cd ffmpeg \
RUN cd ~ && git clone --depth 1 'https://github.com/FFmpeg/FFmpeg' ffmpeg && cd ffmpeg \
&& ./configure --enable-shared --disable-static --enable-gpl --enable-version3 --enable-libx264 --prefix=/usr \
&& make -j$(grep -c ^processor /proc/cpuinfo) && make install \
&& cd ~ && rm -rf ffmpeg