adofai-ffmpeg-builder/scripts/build-ffmpeg.sh

17 lines
345 B
Bash
Raw Normal View History

2023-05-02 19:35:56 +09:00
export ffmpegPath=$workDir/ffmpeg
git clone https://github.com/FFmpeg/FFmpeg $ffmpegPath
cd $ffmpegPath
make distclean
./configure --disable-gpl --disable-nonfree --disable-doc --disable-network \
--disable-ffprobe --disable-ffplay --enable-static --disable-shared \
--enable-libopenh264 \
--prefix=$PREFIX
make -j
cp ffmpeg $outDir