Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 1d2cb76

Browse filesBrowse files
committed
libsvtav1
1 parent 26878d4 commit 1d2cb76
Copy full SHA for 1d2cb76

File tree

Expand file treeCollapse file tree

2 files changed

+13
-1
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+13
-1
lines changed

‎README.md

Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ because I don't have the resources or time to maintain other systems.
2525
## Supported Codecs
2626
* `x264`: H.264 Video Codec (MPEG-4 AVC)
2727
* `x265`: H.265 Video Codec (HEVC)
28+
* `libsvtav1`, SVT-AV1 Encoder and Decoder
2829
* `aom`: AV1 Video Codec (Experimental and very slow!)
2930
* `fdk_aac`: Fraunhofer FDK AAC Codec
3031
* `xvidcore`: MPEG-4 video coding standard

‎build-ffmpeg

Copy file name to clipboardExpand all lines: build-ffmpeg
+12-1Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,6 +368,17 @@ if build "cmake"; then
368368
fi
369369

370370

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+
371382
##
372383
## video library
373384
##
@@ -627,7 +638,7 @@ fi
627638
##
628639

629640
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"
631642
# shellcheck disable=SC2086
632643
./configure "${CONFIGURE_OPTIONS[@]}" \
633644
--disable-debug \

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.