File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ The FFmpeg build script provides an easy way to build a static FFmpeg on **OSX**
1515
1616## Disclaimer
1717Use this script at your own risk. I maintain this script in my spare time.
18- Please do not file bug reports for systems other than Debian 9 and macOS 10.13
18+ Please do not file bug reports for systems other than Debian 10 and macOS 10.15.x
1919because I don't have the resources and the time to maintain other systems.
2020
2121
@@ -42,7 +42,7 @@ Requirements OSX
4242
4343Requirements Linux
4444------------
45- * Debian >= Wheezy , Ubuntu => Trusty, other Distros might work too
45+ * Debian >= Buster , Ubuntu => Trusty, other Distros might work too
4646* build-essentials installed:
4747
4848```
Original file line number Diff line number Diff line change 22
33# https://github.com/markus-perl/ffmpeg-build-script
44
5- VERSION=1.7
5+ VERSION=1.8
66CWD=$( pwd)
77PACKAGES=" $CWD /packages"
88WORKSPACE=" $CWD /workspace"
@@ -242,8 +242,8 @@ if build "xvidcore"; then
242242fi
243243
244244if build " x264" ; then
245- download " http ://ftp .videolan.org/pub /x264/snapshots/ x264-snapshot-20191008-2245 -stable.tar.bz2" " last_x264.tar.bz2"
246- cd $PACKAGES /x264-snapshot- * || exit
245+ download " https ://code .videolan.org/videolan /x264/-/archive/stable/ x264-stable.tar.bz2" " last_x264.tar.bz2"
246+ cd $PACKAGES /x264-stable || exit
247247
248248 if [[ " $OSTYPE " == " linux-gnu" ]]; then
249249 execute ./configure --prefix=${WORKSPACE} --enable-static --enable-pic CXXFLAGS=" -fPIC"
@@ -318,7 +318,7 @@ if build "vid_stab"; then
318318fi
319319
320320if build " x265" ; then
321- download " https://bitbucket.org/multicoreware/x265/downloads/x265_3.2.tar.gz" " x265-3.2.tar.gz"
321+ download " https://bitbucket.org/multicoreware/x265/downloads/x265_3.2.1. tar.gz" " x265-3.2.1 .tar.gz"
322322 cd $PACKAGES /x265_* || exit
323323 cd source || exit
324324 execute cmake -DCMAKE_INSTALL_PREFIX:PATH=${WORKSPACE} -DENABLE_SHARED:bool=off .
@@ -368,8 +368,8 @@ if build "openssl"; then
368368fi
369369
370370build " ffmpeg"
371- download " https://git.ffmpeg.org/gitweb/ffmpeg.git/snapshot/6023b9fbfef02b71f6acfb1b09e5a12fe9d276e2 .tar.gz" " ffmpeg-snapshot.tar.bz2"
372- cd $PACKAGES /ffmpeg-6023b9f / || exit
371+ download " https://git.ffmpeg.org/gitweb/ffmpeg.git/snapshot/47773f7979d77c1fcd08b57e85af1ad08d9248c8 .tar.gz" " ffmpeg-snapshot.tar.bz2"
372+ cd $PACKAGES /ffmpeg-47773f7 / || exit
373373./configure $ADDITIONAL_CONFIGURE_OPTIONS \
374374 --pkgconfigdir=" $WORKSPACE /lib/pkgconfig" \
375375 --prefix=${WORKSPACE} \
You can’t perform that action at this time.
0 commit comments