diff options
author | Andy Tai <atai@atai.org> | 2024-01-06 17:42:54 -0800 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:44:29 +0200 |
commit | 4d17abc514f5b290879b151511caf7182b0518c1 (patch) | |
tree | 991d18d277a3f9281513f6e43fb0e2cb3a1c8a25 | |
parent | f41033ec2638e31228ceeb784cc4b210ffb1bfa3 (diff) | |
download | guix-4d17abc514f5b290879b151511caf7182b0518c1.tar.gz guix-4d17abc514f5b290879b151511caf7182b0518c1.zip |
gnu: ffmpeg: add svt-av1 support
* gnu/packages/video.scm (ffmpeg): Add support for svt-av1
[inputs]: Add svt-av1
[arguments] (configure-flags): Add "--enable-libsvtav1"
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Change-Id: Idb0166e943a4c69a56b68964fd6f3439b16f1903
-rw-r--r-- | gnu/packages/video.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 8b0937f9c6..12d92702a6 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -1715,6 +1715,7 @@ operate properly.") soxr speex srt + svt-av1 twolame vidstab x265 @@ -1803,6 +1804,7 @@ operate properly.") "--enable-libsoxr" "--enable-libspeex" "--enable-libsrt" + "--enable-libsvtav1" "--enable-libtheora" "--enable-libtwolame" "--enable-libvidstab" |