-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild-ffmpeg
More file actions
executable file
·811 lines (700 loc) · 25.8 KB
/
Copy pathbuild-ffmpeg
File metadata and controls
executable file
·811 lines (700 loc) · 25.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
#!/bin/bash
# HOMEPAGE: https://github.com/markus-perl/ffmpeg-build-script
# LICENSE: https://github.com/markus-perl/ffmpeg-build-script/blob/master/LICENSE
PROGNAME=$(basename "$0")
# FFMPEG_VERSION=7.1
SCRIPT_VERSION=1.54
CWD=$(pwd)
PACKAGES="$CWD/packages"
WORKSPACE="$CWD/workspace"
CFLAGS="-I$WORKSPACE/include -Wno-int-conversion"
LDFLAGS="-L$WORKSPACE/lib"
LDEXEFLAGS=""
EXTRALIBS="-ldl -lpthread -lm -lz"
MACOS_SILICON=false
CONFIGURE_OPTIONS=()
NONFREE_AND_GPL=false
DISABLE_LV2=false
LATEST=false
MANPAGES=1
CURRENT_PACKAGE_VERSION=0
GNU_MIRROR="http://mirror.keystealth.org/gnu" #""https://ftp.gnu.org/gnu"
command_exists() {
if ! [[ -x $(command -v "$1") ]]; then
return 1
fi
return 0
}
# Check for Apple Silicon
if [[ ("$(uname -m)" == "arm64") && ("$OSTYPE" == "darwin"*) ]]; then
# If arm64 AND darwin (macOS)
export ARCH=arm64
export MACOSX_DEPLOYMENT_TARGET=11.0
export CXX=$(which clang++)
MACOS_SILICON=true
echo "Apple Silicon detected."
# get macos version
MACOS_VERSION=$(sw_vers -productVersion)
echo "macOS Version: $MACOS_VERSION"
#check if clang++ is installed and print version. Otherwise exit with an error message
if command_exists "clang++"; then
echo "clang++ is installed. Version: $(clang++ --version | head -n 1)"
else
echo "clang++ is not installed. Please install Xcode."
exit 1
fi
fi
# Speed up the process
# Env Var NUMJOBS overrides automatic detection
if [[ -n "$NUMJOBS" ]]; then
MJOBS="$NUMJOBS"
elif [[ -f /proc/cpuinfo ]]; then
MJOBS=$(grep -c processor /proc/cpuinfo)
elif [[ "$OSTYPE" == "darwin"* ]]; then
MJOBS=$(sysctl -n machdep.cpu.thread_count)
CONFIGURE_OPTIONS=("--enable-videotoolbox")
MACOS_LIBTOOL="$(which libtool)" # gnu libtool is installed in this script and need to avoid name conflict
else
MJOBS=4
fi
make_dir() {
remove_dir "$1"
if ! mkdir "$1"; then
printf "\n Failed to create dir %s" "$1"
exit 1
fi
}
remove_dir() {
if [ -d "$1" ]; then
rm -rf "$1"
fi
}
download() {
# download url [filename[dirname]]
DOWNLOAD_PATH="$PACKAGES"
DOWNLOAD_FILE="${2:-"${1##*/}"}"
if [[ "$DOWNLOAD_FILE" =~ tar. ]]; then
TARGETDIR="${DOWNLOAD_FILE%.*}"
TARGETDIR="${3:-"${TARGETDIR%.*}"}"
else
TARGETDIR="${3:-"${DOWNLOAD_FILE%.*}"}"
fi
if [ ! -f "$DOWNLOAD_PATH/$DOWNLOAD_FILE" ]; then
echo "Downloading $1 as $DOWNLOAD_FILE"
curl -L --silent --fail -o "$DOWNLOAD_PATH/$DOWNLOAD_FILE" "$1"
EXITCODE=$?
if [ $EXITCODE -ne 0 ]; then
echo ""
echo "Failed to download $1. Exitcode $EXITCODE. Retrying in 60 seconds"
sleep 60
curl -v -L --fail -o "$DOWNLOAD_PATH/$DOWNLOAD_FILE" "$1"
fi
EXITCODE=$?
if [ $EXITCODE -ne 0 ]; then
echo ""
echo "Failed to download $1. Exitcode $EXITCODE. Retrying in 60 seconds"
sleep 60
curl -v -L --fail -o "$DOWNLOAD_PATH/$DOWNLOAD_FILE" "$1"
fi
EXITCODE=$?
if [ $EXITCODE -ne 0 ]; then
echo ""
echo "Failed to download $1. Exitcode $EXITCODE. Retrying in 60 seconds"
sleep 60
curl -v -L --fail -o "$DOWNLOAD_PATH/$DOWNLOAD_FILE" "$1"
fi
EXITCODE=$?
if [ $EXITCODE -ne 0 ]; then
echo ""
echo "Failed to download $1. Exitcode $EXITCODE"
rm -f "$DOWNLOAD_PATH/$DOWNLOAD_FILE"
exit 1
fi
echo "... Done"
else
echo "$DOWNLOAD_FILE has already downloaded."
fi
make_dir "$DOWNLOAD_PATH/$TARGETDIR"
if [[ "$DOWNLOAD_FILE" == *"patch"* ]]; then
return
fi
if [ -n "$3" ]; then
if ! tar -xvf "$DOWNLOAD_PATH/$DOWNLOAD_FILE" -C "$DOWNLOAD_PATH/$TARGETDIR" 2>/dev/null >/dev/null; then
echo "Failed to extract $DOWNLOAD_FILE (removing corrupt download)"
rm -f "$DOWNLOAD_PATH/$DOWNLOAD_FILE"
exit 1
fi
else
if ! tar -xvf "$DOWNLOAD_PATH/$DOWNLOAD_FILE" -C "$DOWNLOAD_PATH/$TARGETDIR" --strip-components 1 2>/dev/null >/dev/null; then
echo "Failed to extract $DOWNLOAD_FILE (removing corrupt download)"
rm -f "$DOWNLOAD_PATH/$DOWNLOAD_FILE"
exit 1
fi
fi
echo "Extracted $DOWNLOAD_FILE"
cd "$DOWNLOAD_PATH/$TARGETDIR" || (
echo "Error has occurred."
exit 1
)
}
print_flags () {
echo "Flags: CFLAGS \"$CFLAGS\", CXXFLAGS \"$CXXFLAGS\", LDFLAGS \"$LDFLAGS\", LDEXEFLAGS \"$LDEXEFLAGS\""
}
execute() {
if [[ "$1" == *configure* ]]; then
print_flags
fi
echo "$ $*"
OUTPUT=$("$@" 2>&1)
# shellcheck disable=SC2181
if [ $? -ne 0 ]; then
echo "$OUTPUT"
echo ""
echo "Failed to Execute $*" >&2
exit 1
fi
}
build() {
echo ""
echo "building $1 - version $2"
echo "======================="
CURRENT_PACKAGE_VERSION=$2
if [ -f "$WORKSPACE/$1.done" ]; then
if grep -Fx "$2" "$WORKSPACE/$1.done" >/dev/null; then
echo "$1 version $2 already built. Remove $WORKSPACE/$1.done lockfile to rebuild it."
return 1
elif $LATEST; then
echo "$1 is outdated and will be rebuilt with latest version $2"
return 0
else
echo "$1 is outdated, but will not be rebuilt. Pass in --latest to rebuild it or remove $WORKSPACE/$1.done lockfile."
return 1
fi
fi
return 0
}
library_exists() {
if ! [[ -x $(pkg-config --exists --print-errors "$1" 2>&1 >/dev/null) ]]; then
return 1
fi
return 0
}
build_done() {
echo "$2" >"$WORKSPACE/$1.done"
}
verify_binary_type() {
if ! command_exists "file"; then
return
fi
BINARY_TYPE=$(file "$WORKSPACE/bin/ffmpeg" | sed -n 's/^.*\:\ \(.*$\)/\1/p')
echo ""
case $BINARY_TYPE in
"Mach-O 64-bit executable arm64")
echo "Successfully built Apple Silicon for ${OSTYPE}: ${BINARY_TYPE}"
;;
*)
echo "Successfully built binary for ${OSTYPE}: ${BINARY_TYPE}"
;;
esac
}
cleanup() {
remove_dir "$PACKAGES"
remove_dir "$WORKSPACE"
echo "Cleanup done."
echo ""
}
usage() {
echo "Usage: $PROGNAME [OPTIONS]"
echo "Options:"
echo " -h, --help Display usage information"
echo " --version Display version information"
echo " -b, --build Starts the build process"
echo " --enable-gpl Enable GPL codecs (x264, x265) - https://ffmpeg.org/legal.html"
echo " --enable-gpl-and-non-free Enable GPL and non-free codecs - https://ffmpeg.org/legal.html"
echo " --disable-lv2 Disable LV2 libraries"
echo " -c, --cleanup Remove all working dirs"
echo " --latest Build latest version of dependencies if newer available"
echo " --small Prioritize small size over speed and usability; don't build manpages"
echo " --full-static Build a full static FFmpeg binary (eg. glibc, pthreads etc...) **only Linux**"
echo " Note: Because of the NSS (Name Service Switch), glibc does not recommend static links."
echo ""
}
echo "ffmpeg-build-script v$SCRIPT_VERSION"
echo "========================="
echo ""
while (($# > 0)); do
case $1 in
-h | --help)
usage
exit 0
;;
--version)
echo "$SCRIPT_VERSION"
exit 0
;;
-*)
if [[ "$1" == "--build" || "$1" =~ '-b' ]]; then
bflag='-b'
fi
if [[ "$1" == "--enable-gpl" ]]; then
CONFIGURE_OPTIONS+=("--enable-gpl")
NONFREE_AND_GPL=true
fi
if [[ "$1" == "--enable-gpl-and-non-free" ]]; then
CONFIGURE_OPTIONS+=("--enable-nonfree")
CONFIGURE_OPTIONS+=("--enable-gpl")
NONFREE_AND_GPL=true
fi
if [[ "$1" == "--disable-lv2" ]]; then
DISABLE_LV2=true
fi
if [[ "$1" == "--cleanup" || "$1" =~ '-c' && ! "$1" =~ '--' ]]; then
cflag='-c'
cleanup
fi
if [[ "$1" == "--full-static" ]]; then
if [[ "$OSTYPE" == "darwin"* ]]; then
echo "Error: A full static binary can only be build on Linux."
exit 1
fi
LDEXEFLAGS="-static -fPIC"
CFLAGS+=" -fPIC"
CXXFLAGS+=" -fPIC"
fi
if [[ "$1" == "--latest" ]]; then
LATEST=true
fi
if [[ "$1" == "--small" ]]; then
CONFIGURE_OPTIONS+=("--enable-small" "--disable-doc")
MANPAGES=0
fi
shift
;;
*)
usage
exit 1
;;
esac
done
if [ -z "$bflag" ]; then
if [ -z "$cflag" ]; then
usage
exit 1
fi
exit 0
fi
echo "Using $MJOBS make jobs simultaneously."
if $NONFREE_AND_GPL; then
echo "With GPL and non-free codecs"
fi
if [ -n "$LDEXEFLAGS" ]; then
echo "Start the build in full static mode."
fi
mkdir -p "$PACKAGES"
mkdir -p "$WORKSPACE"
export PATH="${WORKSPACE}/bin:$PATH"
PKG_CONFIG_PATH="$WORKSPACE/lib/pkgconfig:/usr/local/lib/x86_64-linux-gnu/pkgconfig:/usr/local/lib/pkgconfig"
PKG_CONFIG_PATH+=":/usr/local/share/pkgconfig:/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/lib/pkgconfig:/usr/share/pkgconfig:/usr/lib64/pkgconfig"
export PKG_CONFIG_PATH
if ! command_exists "make"; then
echo "make not installed."
exit 1
fi
if ! command_exists "g++"; then
echo "g++ not installed."
exit 1
fi
if ! command_exists "curl"; then
echo "curl not installed."
exit 1
fi
if ! command_exists "cargo"; then
echo "cargo not installed. rav1e encoder will not be available."
fi
if ! command_exists "python3"; then
echo "python3 command not found. Lv2 filter and dav1d decoder will not be available."
fi
##
## build tools
##
if build "giflib" "5.2.1"; then
download "https://downloads.sourceforge.net/project/giflib/giflib-$CURRENT_PACKAGE_VERSION.tar.gz"
if [[ "$OSTYPE" == "darwin"* ]]; then
download "https://sourceforge.net/p/giflib/bugs/_discuss/thread/4e811ad29b/c323/attachment/Makefile.patch"
execute patch -p0 --forward "${PACKAGES}/giflib-$CURRENT_PACKAGE_VERSION/Makefile" "${PACKAGES}/Makefile.patch" || true
fi
cd "${PACKAGES}"/giflib-$CURRENT_PACKAGE_VERSION || exit
#multicore build disabled for this library
execute make
execute make PREFIX="${WORKSPACE}" install
build_done "giflib" $CURRENT_PACKAGE_VERSION
fi
if build "pkg-config" "0.29.2"; then
download "https://pkgconfig.freedesktop.org/releases/pkg-config-$CURRENT_PACKAGE_VERSION.tar.gz"
if [[ "$OSTYPE" == "darwin"* ]]; then
export XXFLAGS +=" -Wno-int-conversion" # pkg-config 0.29.2 has a warning that is treated as an error
export CFLAGS +=" -Wno-error=int-conversion"
fi
execute ./configure --silent --prefix="${WORKSPACE}" --with-pc-path="${WORKSPACE}"/lib/pkgconfig --with-internal-glib
execute make -j $MJOBS
execute make install
build_done "pkg-config" $CURRENT_PACKAGE_VERSION
fi
if build "yasm" "1.3.0"; then
download "https://github.com/yasm/yasm/releases/download/v$CURRENT_PACKAGE_VERSION/yasm-$CURRENT_PACKAGE_VERSION.tar.gz"
execute ./configure --prefix="${WORKSPACE}"
execute make -j $MJOBS
execute make install
build_done "yasm" $CURRENT_PACKAGE_VERSION
fi
if build "nasm" "2.16.01"; then
download "https://www.nasm.us/pub/nasm/releasebuilds/$CURRENT_PACKAGE_VERSION/nasm-$CURRENT_PACKAGE_VERSION.tar.xz"
execute ./configure --prefix="${WORKSPACE}" --disable-shared --enable-static
execute make -j $MJOBS
execute make install
build_done "nasm" $CURRENT_PACKAGE_VERSION
fi
if build "zlib" "1.3.1"; then
download "https://github.com/madler/zlib/releases/download/v$CURRENT_PACKAGE_VERSION/zlib-$CURRENT_PACKAGE_VERSION.tar.gz"
execute ./configure --static --prefix="${WORKSPACE}"
execute make -j $MJOBS
execute make install
build_done "zlib" $CURRENT_PACKAGE_VERSION
fi
if build "m4" "1.4.19"; then
download "${GNU_MIRROR}/m4/m4-$CURRENT_PACKAGE_VERSION.tar.gz"
execute ./configure --prefix="${WORKSPACE}"
execute make -j $MJOBS
execute make install
build_done "m4" $CURRENT_PACKAGE_VERSION
fi
if build "autoconf" "2.72"; then
download "${GNU_MIRROR}/autoconf/autoconf-$CURRENT_PACKAGE_VERSION.tar.gz"
execute ./configure --prefix="${WORKSPACE}"
execute make -j $MJOBS
execute make install
build_done "autoconf" $CURRENT_PACKAGE_VERSION
fi
if build "automake" "1.17"; then
download "${GNU_MIRROR}/automake/automake-$CURRENT_PACKAGE_VERSION.tar.gz"
execute ./configure --prefix="${WORKSPACE}"
execute make -j $MJOBS
execute make install
build_done "automake" $CURRENT_PACKAGE_VERSION
fi
if build "libtool" "2.4.7"; then
download "${GNU_MIRROR}/libtool/libtool-$CURRENT_PACKAGE_VERSION.tar.gz"
execute ./configure --prefix="${WORKSPACE}" --enable-static --disable-shared
execute make -j $MJOBS
execute make install
build_done "libtool" $CURRENT_PACKAGE_VERSION
fi
if $NONFREE_AND_GPL; then
if build "gettext" "0.22.5"; then
download "${GNU_MIRROR}/gettext/gettext-$CURRENT_PACKAGE_VERSION.tar.gz"
execute ./configure --prefix="${WORKSPACE}" --enable-static --disable-shared
execute make -j $MJOBS
execute make install
build_done "gettext" $CURRENT_PACKAGE_VERSION
fi
if build "openssl" "3.0.15"; then
download "https://www.openssl.org/source/openssl-$CURRENT_PACKAGE_VERSION.tar.gz"
if $MACOS_SILICON; then
sed -n 's/\(##### GNU Hurd\)/"darwin64-arm64-cc" => { \n inherit_from => [ "darwin-common", asm("aarch64_asm") ],\n CFLAGS => add("-Wall"),\n cflags => add("-arch arm64 "),\n lib_cppflags => add("-DL_ENDIAN"),\n bn_ops => "SIXTY_FOUR_BIT_LONG", \n perlasm_scheme => "macosx", \n}, \n\1/g' Configurations/10-main.conf
execute ./Configure --prefix="${WORKSPACE}" no-shared no-asm darwin64-arm64-cc
else
execute ./config --prefix="${WORKSPACE}" --libdir="${WORKSPACE}"/lib --openssldir="${WORKSPACE}" --with-zlib-include="${WORKSPACE}"/include/ --with-zlib-lib="${WORKSPACE}"/lib no-shared zlib
fi
execute make -j $MJOBS
execute make install_sw
build_done "openssl" $CURRENT_PACKAGE_VERSION
fi
CONFIGURE_OPTIONS+=("--enable-openssl")
else
if build "gmp" "6.2.1"; then
download "${GNU_MIRROR}/gmp/gmp-$CURRENT_PACKAGE_VERSION.tar.xz"
execute ./configure --prefix="${WORKSPACE}" --disable-shared --enable-static
execute make -j $MJOBS
execute make install
build_done "gmp" $CURRENT_PACKAGE_VERSION
fi
if build "nettle" "3.10"; then
download "${GNU_MIRROR}/nettle/nettle-$CURRENT_PACKAGE_VERSION.tar.gz"
execute ./configure --prefix="${WORKSPACE}" --disable-shared --enable-static --disable-openssl --disable-documentation --libdir="${WORKSPACE}"/lib CPPFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
execute make -j $MJOBS
execute make install
build_done "nettle" $CURRENT_PACKAGE_VERSION
fi
if [[ ! $ARCH == 'arm64' ]]; then
if build "gnutls" "3.8.4"; then
download "https://www.gnupg.org/ftp/gcrypt/gnutls/v3.8/gnutls-$CURRENT_PACKAGE_VERSION.tar.xz"
execute ./configure --prefix="${WORKSPACE}" --disable-shared --enable-static --disable-doc --disable-tools --disable-cxx --disable-tests --disable-gtk-doc-html --disable-libdane --disable-nls --enable-local-libopts --disable-guile --with-included-libtasn1 --with-included-unistring --without-p11-kit CPPFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
execute make -j $MJOBS
execute make install
build_done "gnutls" $CURRENT_PACKAGE_VERSION
fi
# CONFIGURE_OPTIONS+=("--enable-gmp" "--enable-gnutls")
fi
fi
if build "cmake" "3.31.0"; then
CXXFLAGS_BACKUP=$CXXFLAGS
export CXXFLAGS+=" -std=c++11"
download "https://github.com/Kitware/CMake/releases/download/v$CURRENT_PACKAGE_VERSION/cmake-$CURRENT_PACKAGE_VERSION.tar.gz"
execute ./configure --prefix="${WORKSPACE}" --parallel="${MJOBS}" -- -DCMAKE_USE_OPENSSL=OFF
execute make -j $MJOBS
execute make install
build_done "cmake" $CURRENT_PACKAGE_VERSION
export CXXFLAGS=$CXXFLAGS_BACKUP
fi
##
## video library
##
if command_exists "python3"; then
# dav1d needs meson and ninja along with nasm to be built
if command_exists "pip3"; then
#set variable meson and ninja installed to false
MESON_INSTALLED=false
#check if macOs and brew is available
if [[ "$OSTYPE" == "darwin"* ]]; then
if command_exists "brew"; then
brew install python-setuptools meson ninja
MESON_INSTALLED=true
fi
else
#check if meson and ninja are installed MESON_INSTALLED AND system is not MacOS
if ! $MESON_INSTALLED; then
# meson and ninja can be installed via pip3
execute pip3 install pip setuptools --quiet --upgrade --no-cache-dir --disable-pip-version-check
for r in meson ninja; do
if ! command_exists ${r}; then
execute pip3 install ${r} --quiet --upgrade --no-cache-dir --disable-pip-version-check
fi
export PATH=$PATH:~/Library/Python/3.9/bin
done
fi
fi
fi
fi
if command_exists "cargo"; then
if [[ ! "$SKIPRAV1E" == "yes" ]]; then
if build "rav1e" "0.7.1"; then
echo "if you get the message 'cannot be built because it requires rustc x.xx or newer, try to run 'rustup update'"
execute cargo install cargo-c
download "https://github.com/xiph/rav1e/archive/refs/tags/v$CURRENT_PACKAGE_VERSION.tar.gz"
export RUSTFLAGS="-C target-cpu=native"
execute cargo cinstall --prefix="${WORKSPACE}" --libdir=lib --library-type=staticlib --crt-static --release
build_done "rav1e" $CURRENT_PACKAGE_VERSION
fi
CONFIGURE_OPTIONS+=("--enable-librav1e")
fi
fi
if $NONFREE_AND_GPL; then
if build "x264" "be4f0200"; then
download "https://code.videolan.org/videolan/x264/-/archive/$CURRENT_PACKAGE_VERSION/x264-$CURRENT_PACKAGE_VERSION.tar.gz" "x264-$CURRENT_PACKAGE_VERSION.tar.gz"
cd "${PACKAGES}"/x264-$CURRENT_PACKAGE_VERSION || exit
# Disable lavf (FFmpeg input) to avoid circular dependency and API compatibility issues
if [[ "$OSTYPE" == "linux-gnu" ]]; then
execute ./configure --prefix="${WORKSPACE}" --libdir="${WORKSPACE}/lib" --enable-static --enable-pic --disable-lavf --disable-swscale --disable-ffms CXXFLAGS="-fPIC ${CXXFLAGS}"
else
execute ./configure --prefix="${WORKSPACE}" --libdir="${WORKSPACE}/lib" --enable-static --enable-pic --disable-lavf --disable-swscale --disable-ffms
fi
execute make -j $MJOBS
execute make install
execute make install-lib-static
build_done "x264" $CURRENT_PACKAGE_VERSION
fi
CONFIGURE_OPTIONS+=("--enable-libx264")
fi
if $NONFREE_AND_GPL; then
if build "x265" "4.0"; then
download "https://bitbucket.org/multicoreware/x265_git/downloads/x265_$CURRENT_PACKAGE_VERSION.tar.gz" "x265-$CURRENT_PACKAGE_VERSION.tar.gz" # This is actually 3.4 if looking at x265Version.txt
cd build/linux || exit
rm -rf 8bit 10bit 12bit 2>/dev/null
mkdir -p 8bit 10bit 12bit
cd 12bit || exit
execute cmake ../../../source -DCMAKE_INSTALL_PREFIX="${WORKSPACE}" -DCMAKE_INSTALL_LIBDIR=lib -DENABLE_SHARED=OFF -DBUILD_SHARED_LIBS=OFF -DHIGH_BIT_DEPTH=ON -DENABLE_HDR10_PLUS=ON -DEXPORT_C_API=OFF -DENABLE_CLI=OFF -DMAIN12=ON
execute make -j $MJOBS
cd ../10bit || exit
execute cmake ../../../source -DCMAKE_INSTALL_PREFIX="${WORKSPACE}" -DCMAKE_INSTALL_LIBDIR=lib -DENABLE_SHARED=OFF -DBUILD_SHARED_LIBS=OFF -DHIGH_BIT_DEPTH=ON -DENABLE_HDR10_PLUS=ON -DEXPORT_C_API=OFF -DENABLE_CLI=OFF
execute make -j $MJOBS
cd ../8bit || exit
ln -sf ../10bit/libx265.a libx265_main10.a
ln -sf ../12bit/libx265.a libx265_main12.a
execute cmake ../../../source -DCMAKE_INSTALL_PREFIX="${WORKSPACE}" -DCMAKE_INSTALL_LIBDIR=lib -DENABLE_SHARED=OFF -DBUILD_SHARED_LIBS=OFF -DEXTRA_LIB="x265_main10.a;x265_main12.a;-ldl" -DEXTRA_LINK_FLAGS=-L. -DLINKED_10BIT=ON -DLINKED_12BIT=ON
execute make -j $MJOBS
mv libx265.a libx265_main.a
if [[ "$OSTYPE" == "darwin"* ]]; then
execute "${MACOS_LIBTOOL}" -static -o libx265.a libx265_main.a libx265_main10.a libx265_main12.a 2>/dev/null
else
execute ar -M <<EOF
CREATE libx265.a
ADDLIB libx265_main.a
ADDLIB libx265_main10.a
ADDLIB libx265_main12.a
SAVE
END
EOF
fi
execute make install
if [ -n "$LDEXEFLAGS" ]; then
sed -i.backup 's/-lgcc_s/-lgcc_eh/g' "${WORKSPACE}/lib/pkgconfig/x265.pc" # The -i.backup is intended and required on MacOS: https://stackoverflow.com/questions/5694228/sed-in-place-flag-that-works-both-on-mac-bsd-and-linux
fi
build_done "x265" $CURRENT_PACKAGE_VERSION
fi
CONFIGURE_OPTIONS+=("--enable-libx265")
fi
##
## text rendering library (for drawtext filter)
##
if build "FreeType2" "2.13.3"; then
download "https://downloads.sourceforge.net/freetype/freetype-$CURRENT_PACKAGE_VERSION.tar.xz"
execute ./configure --prefix="${WORKSPACE}" --libdir="${WORKSPACE}/lib" --disable-shared --enable-static
execute make -j "$MJOBS"
execute make install
build_done "FreeType2" "$CURRENT_PACKAGE_VERSION"
fi
CONFIGURE_OPTIONS+=("--enable-libfreetype")
if build "expat" "2.6.4"; then
download "https://github.com/libexpat/libexpat/releases/download/R_2_6_4/expat-$CURRENT_PACKAGE_VERSION.tar.xz"
execute ./configure --prefix="${WORKSPACE}" --libdir="${WORKSPACE}/lib" --disable-shared --enable-static
execute make -j "$MJOBS"
execute make install
build_done "expat" "$CURRENT_PACKAGE_VERSION"
fi
if build "fontconfig" "2.15.0"; then
download "https://www.freedesktop.org/software/fontconfig/release/fontconfig-$CURRENT_PACKAGE_VERSION.tar.xz"
execute ./configure --prefix="${WORKSPACE}" --libdir="${WORKSPACE}/lib" --disable-shared --enable-static --disable-docs --disable-cache-build --disable-nls
execute make -j "$MJOBS"
execute make install
build_done "fontconfig" "$CURRENT_PACKAGE_VERSION"
fi
CONFIGURE_OPTIONS+=("--enable-libfontconfig")
if build "harfbuzz" "10.1.0"; then
download "https://github.com/harfbuzz/harfbuzz/releases/download/$CURRENT_PACKAGE_VERSION/harfbuzz-$CURRENT_PACKAGE_VERSION.tar.xz"
execute meson setup build --prefix="${WORKSPACE}" --libdir=lib --buildtype=release --default-library=static -Dfreetype=enabled -Dglib=disabled -Dgobject=disabled -Dcairo=disabled -Dicu=disabled -Dtests=disabled -Ddocs=disabled
execute ninja -C build
execute ninja -C build install
build_done "harfbuzz" "$CURRENT_PACKAGE_VERSION"
fi
CONFIGURE_OPTIONS+=("--enable-libharfbuzz")
##
## HWaccel library
##
if [[ "$OSTYPE" == "linux-gnu" ]]; then
if command_exists "nvcc"; then
if build "nv-codec" "11.1.5.3"; then
download "https://github.com/FFmpeg/nv-codec-headers/releases/download/n$CURRENT_PACKAGE_VERSION/nv-codec-headers-$CURRENT_PACKAGE_VERSION.tar.gz"
execute make PREFIX="${WORKSPACE}"
execute make PREFIX="${WORKSPACE}" install
build_done "nv-codec" $CURRENT_PACKAGE_VERSION
fi
CFLAGS+=" -I/usr/local/cuda/include"
LDFLAGS+=" -L/usr/local/cuda/lib64"
CONFIGURE_OPTIONS+=("--enable-cuda-nvcc" "--enable-cuvid" "--enable-nvdec" "--enable-nvenc" "--enable-cuda-llvm" "--enable-ffnvcodec")
if [ -z "$LDEXEFLAGS" ]; then
CONFIGURE_OPTIONS+=("--enable-libnpp") # Only libnpp cannot be statically linked.
fi
if [ -z "$CUDA_COMPUTE_CAPABILITY" ]; then
# Set default value if no compute capability was found
# Note that multi-architecture builds are not supported in ffmpeg
# see https://patchwork.ffmpeg.org/comment/62905/
export CUDA_COMPUTE_CAPABILITY=52
fi
CONFIGURE_OPTIONS+=("--nvccflags=-gencode arch=compute_$CUDA_COMPUTE_CAPABILITY,code=sm_$CUDA_COMPUTE_CAPABILITY -O2")
else
CONFIGURE_OPTIONS+=("--disable-ffnvcodec")
fi
# Vaapi doesn't work well with static links FFmpeg.
# Disabled for static builds to ensure portability
if [ -z "$LDEXEFLAGS" ]; then
# If the libva development SDK is installed, enable vaapi.
if library_exists "libva"; then
if build "vaapi" "1"; then
build_done "vaapi" "1"
fi
CONFIGURE_OPTIONS+=("--enable-vaapi")
fi
else
# Explicitly disable vaapi for static builds
CONFIGURE_OPTIONS+=("--disable-vaapi")
fi
fi
##
## FFmpeg
##
EXTRA_VERSION=""
if [[ "$OSTYPE" == "darwin"* ]]; then
EXTRA_VERSION="${FFMPEG_VERSION}"
fi
if [ -d "$CWD/.git" ]; then
echo -e "\nTemporarily moving .git dir to .git.bak to workaround ffmpeg build bug" #causing ffmpeg version number to be wrong
mv "$CWD/.git" "$CWD/.git.bak"
# if build fails below, .git will remain in the wrong place...
fi
build "ffmpeg" "$FFMPEG_VERSION"
download "https://github.com/FFmpeg/FFmpeg/archive/refs/heads/release/$FFMPEG_VERSION.tar.gz" "FFmpeg-release-$FFMPEG_VERSION.tar.gz"
# shellcheck disable=SC2086
execute ./configure "${CONFIGURE_OPTIONS[@]}" \
--disable-debug \
--disable-shared \
--enable-pthreads \
--enable-static \
--enable-version3 \
--extra-cflags="${CFLAGS}" \
--extra-ldexeflags="${LDEXEFLAGS}" \
--extra-ldflags="${LDFLAGS}" \
--extra-libs="${EXTRALIBS}" \
--pkgconfigdir="$WORKSPACE/lib/pkgconfig" \
--pkg-config-flags="--static" \
--prefix="${WORKSPACE}" \
--extra-version="${EXTRA_VERSION}"
execute make -j $MJOBS
execute make install
if [ -d "$CWD/.git.bak" ]; then
mv "$CWD/.git.bak" "$CWD/.git"
fi
INSTALL_FOLDER="/usr" # not recommended, overwrites system ffmpeg package
if [[ "$OSTYPE" == "darwin"* ]]; then
INSTALL_FOLDER="/usr/local"
else
if [ -d "$HOME/.local" ]; then # systemd-standard user path
INSTALL_FOLDER="$HOME/.local"
elif [ -d "/usr/local" ]; then
INSTALL_FOLDER="/usr/local"
fi
fi
verify_binary_type
echo ""
echo "Building done. The following binaries can be found here:"
echo "- ffmpeg: $WORKSPACE/bin/ffmpeg"
echo "- ffprobe: $WORKSPACE/bin/ffprobe"
echo "- ffplay: $WORKSPACE/bin/ffplay"
echo ""
INSTALL_NOW=0
if [[ "$AUTOINSTALL" == "yes" ]]; then
INSTALL_NOW=1
elif [[ ! "$SKIPINSTALL" == "yes" ]]; then
read -r -p "Install these binaries to your $INSTALL_FOLDER folder? Existing binaries will be replaced. [Y/n] " response
case $response in
"" | [yY][eE][sS] | [yY])
INSTALL_NOW=1
;;
esac
fi
if [ "$INSTALL_NOW" = 1 ]; then
if command_exists "sudo" && [[ $INSTALL_FOLDER == /usr* ]]; then
SUDO=sudo
fi
$SUDO cp "$WORKSPACE/bin/ffmpeg" "$INSTALL_FOLDER/bin/ffmpeg"
$SUDO cp "$WORKSPACE/bin/ffprobe" "$INSTALL_FOLDER/bin/ffprobe"
$SUDO cp "$WORKSPACE/bin/ffplay" "$INSTALL_FOLDER/bin/ffplay"
if [ $MANPAGES = 1 ]; then
$SUDO mkdir -p "$INSTALL_FOLDER/share/man/man1"
$SUDO cp "$WORKSPACE/share/man/man1"/ff* "$INSTALL_FOLDER/share/man/man1"
if command_exists "mandb"; then
$SUDO mandb -q
fi
fi
echo "Done. FFmpeg is now installed to your system."
fi
exit 0