Skip to content

Commit 97f373c

Browse files
committed
ffmpeg update to latest version
1 parent 1751e31 commit 97f373c

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The FFmpeg build script provides an easy way to build a static FFmpeg on **OSX**
1515

1616
## Disclaimer
1717
Use 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
1919
because I don't have the resources and the time to maintain other systems.
2020

2121

@@ -42,7 +42,7 @@ Requirements OSX
4242

4343
Requirements 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
```

build-ffmpeg

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# https://github.com/markus-perl/ffmpeg-build-script
44

5-
VERSION=1.7
5+
VERSION=1.8
66
CWD=$(pwd)
77
PACKAGES="$CWD/packages"
88
WORKSPACE="$CWD/workspace"
@@ -242,8 +242,8 @@ if build "xvidcore"; then
242242
fi
243243

244244
if 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
318318
fi
319319

320320
if 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
368368
fi
369369

370370
build "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} \

0 commit comments

Comments
 (0)