[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/04: gnu: FFmpeg: Add support for Secure Reliable Transport (SRT).
From: |
guix-commits |
Subject: |
02/04: gnu: FFmpeg: Add support for Secure Reliable Transport (SRT). |
Date: |
Tue, 13 Oct 2020 16:51:38 -0400 (EDT) |
lfam pushed a commit to branch master
in repository guix.
commit 64661754fd8a32b9298d24e815cdbe568a8ffe77
Author: Leo Famulari <leo@famulari.name>
AuthorDate: Sat Oct 10 00:52:24 2020 -0400
gnu: FFmpeg: Add support for Secure Reliable Transport (SRT).
* gnu/packages/video.scm (vlc)[inputs] Add srt-1.4.1.
[arguments]: Pass "--enable-libsrt" to #:configure-flags.
---
gnu/packages/video.scm | 3 +++
1 file changed, 3 insertions(+)
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 7f0b203..8d80409 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -1455,6 +1455,8 @@ operate properly.")
("sdl" ,sdl2)
("soxr" ,soxr)
("speex" ,speex)
+ ;; FFmpeg is not yet compatible with SRT > 1.4.1.
+ ("srt" ,srt-1.4.1)
("twolame" ,twolame)
("vidstab" ,vidstab)
("x265" ,x265)
@@ -1539,6 +1541,7 @@ operate properly.")
'())
"--enable-libsoxr"
"--enable-libspeex"
+ "--enable-libsrt"
"--enable-libtheora"
"--enable-libtwolame"
"--enable-libvidstab"