File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed
Filter options
Expand file tree Collapse file tree 2 files changed +13
-1
lines changed
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ because I don't have the resources or time to maintain other systems.
25
25
## Supported Codecs
26
26
* ` x264 ` : H.264 Video Codec (MPEG-4 AVC)
27
27
* ` x265 ` : H.265 Video Codec (HEVC)
28
+ * ` libsvtav1 ` , SVT-AV1 Encoder and Decoder
28
29
* ` aom ` : AV1 Video Codec (Experimental and very slow!)
29
30
* ` fdk_aac ` : Fraunhofer FDK AAC Codec
30
31
* ` xvidcore ` : MPEG-4 video coding standard
Original file line number Diff line number Diff line change @@ -368,6 +368,17 @@ if build "cmake"; then
368
368
fi
369
369
370
370
371
+ if build " svtav1" ; then
372
+ download " https://github.com/AOMediaCodec/SVT-AV1/archive/v0.8.6.zip"
373
+ cd Build
374
+ execute cmake -DCMAKE_INSTALL_PREFIX=" ${WORKSPACE} " -DENABLE_SHARED=off -DBUILD_SHARED_LIBS=OFF .. -G" Unix Makefiles" -DCMAKE_BUILD_TYPE=Release
375
+ execute make -j $MJOBS
376
+ execute make install
377
+ build_done " svtav1"
378
+ fi
379
+ CONFIGURE_OPTIONS+=(" --enable-libsvtav1" )
380
+
381
+
371
382
# #
372
383
# # video library
373
384
# #
627
638
# #
628
639
629
640
build " ffmpeg"
630
- download " https://ffmpeg.org/releases /ffmpeg-4.3.1. tar.bz2 "
641
+ download " https://git. ffmpeg.org/gitweb /ffmpeg.git/snapshot/553eb0773763798a6b9656b621cb125e1f6edbcc. tar.gz "
631
642
# shellcheck disable=SC2086
632
643
./configure " ${CONFIGURE_OPTIONS[@]} " \
633
644
--disable-debug \
You can’t perform that action at this time.
0 commit comments