2019-12-30 08:10:26 +00:00
|
|
|
rm -rf /tmp/ffmpeg
|
|
|
|
mkdir /tmp/ffmpeg
|
|
|
|
./configure --prefix=/tmp/ffmpeg --extra-cflags="-mmacosx-version-min=10.13" --install-name-dir=@loader_path/../Frameworks --enable-pic --enable-shared --disable-static --disable-all --enable-avcodec --enable-decoder=h264 --enable-decoder=hevc --enable-hwaccel=h264_videotoolbox --enable-hwaccel=hevc_videotoolbox
|
2018-08-04 08:11:19 +00:00
|
|
|
make clean
|
2019-01-08 05:39:59 +00:00
|
|
|
make -j4
|
2019-12-30 08:10:26 +00:00
|
|
|
codesign -s "$SIGNING_IDENTITY" libavcodec/libavcodec.dylib
|
|
|
|
codesign -s "$SIGNING_IDENTITY" libavutil/libavutil.dylib
|
2019-01-08 05:39:59 +00:00
|
|
|
codesign -vv libavcodec/libavcodec.dylib
|
2019-12-30 08:10:26 +00:00
|
|
|
codesign -vv libavutil/libavutil.dylib
|
|
|
|
make install
|