1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-08 06:00:36 +02:00

gnu: Add ffmpeg-4.3.

* gnu/packages/video.scm (ffmpeg-4.3): New variable.
This commit is contained in:
Maxim Cournoyer
2021-06-05 17:23:57 -04:00
parent 4d0030eec5
commit 30eccefa39

View File

@@ -1613,6 +1613,17 @@ convert and stream audio and video. It includes the libavcodec
audio/video codec library.")
(license license:gpl2+)))
(define-public ffmpeg-4.3
(package/inherit ffmpeg
(version "4.3.2")
(source (origin
(method url-fetch)
(uri (string-append "https://ffmpeg.org/releases/ffmpeg-"
version ".tar.xz"))
(sha256
(base32
"1nyd9jlcy0pqnwzi29a7sg50hq37vb0g3f9l16y3q8yh3m7ydr26"))))))
(define-public ffmpeg-3.4
(package
(inherit ffmpeg)