gnu: ffmpeg: Update to 6.0.
* gnu/packages/video.scm (ffmpeg): Update to 6.0. (ffmpeg-5): New variable. * gnu/packages/gnuzilla.scm (icecat-minimal) [inputs]: Replace ffmpeg with ffmpeg-5. * gnu/packages/gnuzilla.scm (icedove-minimal): Likewise.
This commit is contained in:
parent
d624cd4c84
commit
bf23e8518f
2 changed files with 24 additions and 9 deletions
|
@ -706,9 +706,11 @@ variable defined below. It requires guile-json to be installed."
|
||||||
libxcomposite
|
libxcomposite
|
||||||
libxt
|
libxt
|
||||||
libffi
|
libffi
|
||||||
ffmpeg
|
;; Support for FFmpeg 6 was only added in version 112 (see:
|
||||||
|
;; https://bugzilla.mozilla.org/show_bug.cgi?id=1819374).
|
||||||
|
ffmpeg-5
|
||||||
libvpx
|
libvpx
|
||||||
icu4c-71 ; TODO: Change to 'icu4c' when its version is >= 71.
|
icu4c-71 ;TODO: Change to 'icu4c' when its version is >= 71.
|
||||||
pixman
|
pixman
|
||||||
pulseaudio
|
pulseaudio
|
||||||
mesa
|
mesa
|
||||||
|
@ -1492,7 +1494,8 @@ ca495991b7852b855"))
|
||||||
cairo
|
cairo
|
||||||
cups
|
cups
|
||||||
dbus-glib
|
dbus-glib
|
||||||
ffmpeg
|
;; Support for FFmpeg 6 was only added in version 112 (see:
|
||||||
|
;; https://bugzilla.mozilla.org/show_bug.cgi?id=1819374).
|
||||||
freetype
|
freetype
|
||||||
gdk-pixbuf
|
gdk-pixbuf
|
||||||
glib
|
glib
|
||||||
|
|
|
@ -1579,14 +1579,14 @@ operate properly.")
|
||||||
(define-public ffmpeg
|
(define-public ffmpeg
|
||||||
(package
|
(package
|
||||||
(name "ffmpeg")
|
(name "ffmpeg")
|
||||||
(version "5.1.2")
|
(version "6.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://ffmpeg.org/releases/ffmpeg-"
|
(uri (string-append "https://ffmpeg.org/releases/ffmpeg-"
|
||||||
version ".tar.xz"))
|
version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1p7kxr0f9f9d0pyyxq9ciaj9ch2drmcw5p9jk22j111ccrnp17k1"))))
|
"10kh2f4y4isfqj4xpcqqnzk611jh89ywcjyjnq9c2jcv5p18ggjp"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
(append
|
(append
|
||||||
|
@ -1770,9 +1770,21 @@ convert and stream audio and video. It includes the libavcodec
|
||||||
audio/video codec library.")
|
audio/video codec library.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
(define-public ffmpeg-4
|
(define-public ffmpeg-5
|
||||||
(package
|
(package
|
||||||
(inherit ffmpeg)
|
(inherit ffmpeg)
|
||||||
|
(version "5.1.2")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://ffmpeg.org/releases/ffmpeg-"
|
||||||
|
version ".tar.xz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1p7kxr0f9f9d0pyyxq9ciaj9ch2drmcw5p9jk22j111ccrnp17k1"))))))
|
||||||
|
|
||||||
|
(define-public ffmpeg-4
|
||||||
|
(package
|
||||||
|
(inherit ffmpeg-5)
|
||||||
(version "4.4.2")
|
(version "4.4.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
|
Reference in a new issue