gnu: re2: Update to 2019-09-01.
[jackhill/guix/guix.git] / gnu / packages / video.scm
CommitLineData
39efcc9b 1;;; GNU Guix --- Functional package management for GNU
71ee51a0 2;;; Copyright © 2013, 2014, 2015, 2016 Andreas Enge <andreas@enge.fr>
945d985a 3;;; Copyright © 2014, 2015, 2016 David Thompson <davet@gnu.org>
76277052 4;;; Copyright © 2014, 2015, 2016, 2018 Mark H Weaver <mhw@netris.org>
cda163cd 5;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
87fd7a35 6;;; Copyright © 2015, 2016, 2017, 2018, 2019 Efraim Flashner <efraim@flashner.co.il>
12f92e38 7;;; Copyright © 2015 Andy Patterson <ajpatter@uwaterloo.ca>
d7764d42 8;;; Copyright © 2015, 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
28cbf65c 9;;; Copyright © 2015, 2016, 2017, 2018, 2019 Alex Vong <alexvong1995@gmail.com>
2b841707 10;;; Copyright © 2016, 2017 Alex Griffin <a@ajgrf.com>
3c8ba11a 11;;; Copyright © 2016 Kei Kebreau <kkebreau@posteo.net>
ed6ba9cc 12;;; Copyright © 2016 Dmitry Nikolaev <cameltheman@gmail.com>
4df07622 13;;; Copyright © 2016 Andy Patterson <ajpatter@uwaterloo.ca>
47956fa0 14;;; Copyright © 2016, 2017 ng0 <ng0@n0.is>
0dd8da0b 15;;; Copyright © 2016, 2018, 2019 Eric Bavier <bavier@member.fsf.org>
590abe01 16;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
72fa6667 17;;; Copyright © 2017 Feng Shu <tumashu@163.com>
dba326de 18;;; Copyright © 2017, 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
794223bc 19;;; Copyright © 2017 Chris Marusich <cmmarusich@gmail.com>
b5b20bda 20;;; Copyright © 2017 Thomas Danckaert <post@thomasdanckaert.be>
e0c40707 21;;; Copyright © 2017 Ethan R. Jones <doubleplusgood23@gmail.com>
eb88e2c1 22;;; Copyright © 2017, 2018 Clément Lassieur <clement@lassieur.org>
2973ebf5 23;;; Copyright © 2017 Gregor Giesen <giesen@zaehlwerk.net>
394207c1 24;;; Copyright © 2017, 2018, 2019 Rutger Helling <rhelling@mykolab.com>
e21f3473 25;;; Copyright © 2018 Roel Janssen <roel@gnu.org>
037d5913 26;;; Copyright © 2018, 2019 Marius Bakke <mbakke@fastmail.com>
4715f92e 27;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
a6f9f18c 28;;; Copyright © 2018, 2019 Leo Famulari <leo@famulari.name>
dcfa0acd 29;;; Copyright © 2018 Brendan Tildesley <mail@brendan.scot>
0c85d2c6 30;;; Copyright © 2018 Arun Isaac <arunisaac@systemreboot.net>
18e56ad7 31;;; Copyright © 2018 Björn Höfling <bjoern.hoefling@bjoernhoefling.de>
e7cdd311
MM
32;;; Copyright © 2018 Mark Meyer <mark@ofosos.org>
33;;; Copyright © 2018 Gábor Boskovit <boskovits@gmail.com>
548642db 34;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@gmail.com>
04b6e9c5 35;;; Copyright © 2019 Timo Eisenmann <eisenmann@fn.de>
a7afa454 36;;; Copyright © 2019 Arne Babenhauserheide <arne_bab@web.de>
39efcc9b
AE
37;;;
38;;; This file is part of GNU Guix.
39;;;
40;;; GNU Guix is free software; you can redistribute it and/or modify it
41;;; under the terms of the GNU General Public License as published by
42;;; the Free Software Foundation; either version 3 of the License, or (at
43;;; your option) any later version.
44;;;
45;;; GNU Guix is distributed in the hope that it will be useful, but
46;;; WITHOUT ANY WARRANTY; without even the implied warranty of
47;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
48;;; GNU General Public License for more details.
49;;;
50;;; You should have received a copy of the GNU General Public License
51;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
52
53(define-module (gnu packages video)
fe138965 54 #:use-module (ice-9 match)
08858812 55 #:use-module (srfi srfi-1)
2b94c14c 56 #:use-module (srfi srfi-26)
ae0bdd81 57 #:use-module ((guix licenses) #:prefix license:)
e930c2a3 58 #:use-module (guix utils)
39efcc9b
AE
59 #:use-module (guix packages)
60 #:use-module (guix download)
38829eac 61 #:use-module (guix git-download)
d8841cc5 62 #:use-module (guix svn-download)
44726031 63 #:use-module (guix build-system cmake)
39efcc9b 64 #:use-module (guix build-system gnu)
0e74bb5b 65 #:use-module (guix build-system glib-or-gtk)
635f981b 66 #:use-module (guix build-system meson)
6f45e45d 67 #:use-module (guix build-system perl)
615215a5 68 #:use-module (guix build-system python)
1c1178cd 69 #:use-module (guix build-system waf)
f27f264e 70 #:use-module (guix build-system trivial)
3b02429c 71 #:use-module (gnu packages)
39efcc9b 72 #:use-module (gnu packages algebra)
4fbcfc14 73 #:use-module (gnu packages assembly)
72bfebf5 74 #:use-module (gnu packages audio)
f1044010 75 #:use-module (gnu packages autotools)
d5a748e8 76 #:use-module (gnu packages avahi)
76277052 77 #:use-module (gnu packages backup)
38829eac 78 #:use-module (gnu packages base)
8dd6fc51 79 #:use-module (gnu packages bison)
2973ebf5 80 #:use-module (gnu packages boost)
d5a748e8 81 #:use-module (gnu packages cdrom)
2973ebf5 82 #:use-module (gnu packages check)
fe047e13 83 #:use-module (gnu packages cmake)
39efcc9b 84 #:use-module (gnu packages compression)
e0c40707 85 #:use-module (gnu packages cpp)
f464016d 86 #:use-module (gnu packages curl)
3a44c7bb 87 #:use-module (gnu packages dejagnu)
78d112c2 88 #:use-module (gnu packages dns)
2973ebf5 89 #:use-module (gnu packages docbook)
e37bdc0f 90 #:use-module (gnu packages documentation)
f22e0e26 91 #:use-module (gnu packages elf)
2973ebf5 92 #:use-module (gnu packages file)
8dd6fc51 93 #:use-module (gnu packages flex)
2afb7939 94 #:use-module (gnu packages fonts)
39efcc9b 95 #:use-module (gnu packages fontutils)
c161c22a 96 #:use-module (gnu packages freedesktop)
44726031
AE
97 #:use-module (gnu packages fribidi)
98 #:use-module (gnu packages gettext)
38829eac 99 #:use-module (gnu packages ghostscript)
d5a748e8
AE
100 #:use-module (gnu packages gl)
101 #:use-module (gnu packages glib)
2cd85cf9 102 #:use-module (gnu packages guile)
fe047e13 103 #:use-module (gnu packages gnome)
c3069cd1 104 #:use-module (gnu packages gnunet)
d5a748e8 105 #:use-module (gnu packages gnupg)
fe047e13 106 #:use-module (gnu packages gstreamer)
44726031 107 #:use-module (gnu packages gtk)
e55354b8 108 #:use-module (gnu packages image)
b5b20bda 109 #:use-module (gnu packages imagemagick)
f48feaa2 110 #:use-module (gnu packages iso-codes)
76277052 111 #:use-module (gnu packages libidn)
c812f460 112 #:use-module (gnu packages libreoffice)
d5a748e8
AE
113 #:use-module (gnu packages linux)
114 #:use-module (gnu packages lua)
fe047e13 115 #:use-module (gnu packages m4)
3a44c7bb 116 #:use-module (gnu packages man)
f3395a7b 117 #:use-module (gnu packages markup)
d5a748e8 118 #:use-module (gnu packages mp3)
4d94b93c 119 #:use-module (gnu packages ncurses)
579a9cde 120 #:use-module (gnu packages networking)
6f6c8b65 121 #:use-module (gnu packages ocr)
39efcc9b
AE
122 #:use-module (gnu packages perl)
123 #:use-module (gnu packages pkg-config)
a7d94b54 124 #:use-module (gnu packages popt)
f3395a7b 125 #:use-module (gnu packages pretty-print)
fc2982f7 126 #:use-module (gnu packages protobuf)
d5a748e8 127 #:use-module (gnu packages pulseaudio)
39efcc9b 128 #:use-module (gnu packages python)
f48feaa2 129 #:use-module (gnu packages python-crypto)
589e3f4e 130 #:use-module (gnu packages python-web)
44d10b1f 131 #:use-module (gnu packages python-xyz)
d5a748e8 132 #:use-module (gnu packages qt)
76277052 133 #:use-module (gnu packages rdesktop)
2973ebf5 134 #:use-module (gnu packages ruby)
76277052 135 #:use-module (gnu packages samba)
d5a748e8 136 #:use-module (gnu packages sdl)
2973ebf5
GG
137 #:use-module (gnu packages serialization)
138 #:use-module (gnu packages shells)
cd0322a3 139 #:use-module (gnu packages sqlite)
d5a748e8 140 #:use-module (gnu packages ssh)
579a9cde 141 #:use-module (gnu packages swig)
6b2c6be0 142 #:use-module (gnu packages texinfo)
c426e61e 143 #:use-module (gnu packages textutils)
a7fd7b68 144 #:use-module (gnu packages tls)
1a291593 145 #:use-module (gnu packages time)
76277052 146 #:use-module (gnu packages upnp)
d5a748e8 147 #:use-module (gnu packages version-control)
870541d6 148 #:use-module (gnu packages vulkan)
bb470bd3 149 #:use-module (gnu packages web)
fe047e13 150 #:use-module (gnu packages webkit)
794223bc 151 #:use-module (gnu packages wxwidgets)
ee3b55ea 152 #:use-module (gnu packages xdisorg)
54ff0b7d 153 #:use-module (gnu packages xiph)
d5a748e8 154 #:use-module (gnu packages xml)
4fbcfc14 155 #:use-module (gnu packages xorg))
39efcc9b 156
6b2c6be0
SB
157(define-public aalib
158 (package
159 (name "aalib")
160 (version "1.4rc5")
161 (source (origin
162 (method url-fetch)
de67e922
LF
163 (uri (string-append "mirror://sourceforge/aa-project/aa-lib/"
164 version "/" name "-" version ".tar.gz"))
6b2c6be0
SB
165 (sha256
166 (base32
167 "1vkh19gb76agvh4h87ysbrgy82hrw88lnsvhynjf4vng629dmpgv"))))
168 (build-system gnu-build-system)
169 (native-inputs
170 `(("makeinfo" ,texinfo)))
171 (inputs
172 `(("ncurses" ,ncurses)))
173 (arguments
c437922a 174 `(#:phases
6b2c6be0 175 (modify-phases %standard-phases
3a4de6b2 176 (replace 'configure
014cbde6 177 (lambda* (#:key build inputs outputs #:allow-other-keys)
6b2c6be0
SB
178 ;; This old `configure' script doesn't support
179 ;; variables passed as arguments.
180 (let ((out (assoc-ref outputs "out"))
181 (ncurses (assoc-ref inputs "ncurses")))
182 (setenv "CONFIG_SHELL" (which "bash"))
3595e83d
MW
183 (invoke "./configure"
184 (string-append "--prefix=" out)
185 (string-append "--build=" build)
186 ;; The ancient config.guess is unable to
187 ;; guess the host triplet on mips64el.
188 ,@(if (string=? "mips64el-linux"
189 (%current-system))
190 '("--host=mips64el-unknown-linux-gnu")
191 '())
192 ;; The same is also true with aarch64.
193 ,@(if (string=? "aarch64-linux"
194 (%current-system))
195 '("--host=aarch64-unknown-linux-gnu")
196 '())
197 (string-append "--with-ncurses="
198 ncurses))))))))
6b2c6be0
SB
199 (home-page "http://aa-project.sourceforge.net/aalib/")
200 (synopsis "ASCII-art library")
201 (description
202 "AA-lib is a low level gfx library which does not require graphics device.
203In fact, there is no graphical output possible. AA-lib replaces those
204old-fashioned output methods with powerful ascii-art renderer.")
205 (license license:lgpl2.0+)))
206
cda163cd
TUBK
207(define-public liba52
208 (package
209 (name "liba52")
210 (version "0.7.4")
211 (source (origin
212 (method url-fetch)
8c056935
TUBK
213 (uri (string-append
214 ;; A mirror://sourceforge URI doesn't work, presumably
215 ;; because the SourceForge project is misconfigured.
216 "http://liba52.sourceforge.net/files/a52dec-" version
217 ".tar.gz"))
cda163cd
TUBK
218 (sha256
219 (base32
23da88f6 220 "0czccp4fcpf2ykp16xcrzdfmnircz1ynhls334q374xknd5747d2"))
fc1adab1
AK
221 (patches (search-patches "liba52-enable-pic.patch"
222 "liba52-set-soname.patch"
223 "liba52-use-mtune-not-mcpu.patch"
224 "liba52-link-with-libm.patch"))))
cda163cd 225 (build-system gnu-build-system)
23da88f6
MW
226 ;; XXX We need to run ./bootstrap because of the build system fixes above.
227 (native-inputs
228 `(("autoconf" ,autoconf)
229 ("automake" ,automake)
230 ("libtool" ,libtool)))
412a2422 231 (arguments `(#:configure-flags '("--enable-shared")
23da88f6
MW
232 #:phases
233 (modify-phases %standard-phases
234 ;; XXX We need to run ./bootstrap because of the build
235 ;; system fixes above.
189be331 236 (replace 'bootstrap
78666a68 237 (lambda _ (invoke "sh" "bootstrap"))))))
cda163cd
TUBK
238 (home-page "http://liba52.sourceforge.net/")
239 (synopsis "ATSC A/52 stream decoder")
240 (description "liba52 is a library for decoding ATSC A/52 streams. The
241A/52 standard is used in a variety of applications, including digital
242television and DVD. It is also known as AC-3.")
ae0bdd81 243 (license license:gpl2+)))
cda163cd 244
a7afa454
AB
245(define-public libaom
246 ;; The 1.0.0-errata1 release installs a broken pkg-config .pc file. This
247 ;; is fixed in libaom commit 0ddc150, but we use an even later commit.
248 (let ((commit "22b150bf040608028a56d8bf39e72f771383d836")
249 (revision "0"))
250 (package
251 (name "libaom")
252 (version (git-version "1.0.0-errata1" revision commit))
253 (source (origin
254 (method git-fetch)
255 (uri (git-reference
256 (url "https://aomedia.googlesource.com/aom/")
257 (commit commit)))
258 (file-name (git-file-name name version))
259 (sha256
260 (base32
261 "1pdd5h3n42607n6qmggz4yv8izhjr2kl6knb3kh7gh4v0vy47h1r"))))
262 (build-system cmake-build-system)
263 (native-inputs
264 `(("perl" ,perl)
265 ("pkg-config" ,pkg-config)
266 ("python" ,python))) ; to detect the version
267 (arguments
268 `(#:tests? #f ;no check target
269 #:configure-flags
270 ;; build dynamic library
271 (list "-DBUILD_SHARED_LIBS=YES"
272 "-DENABLE_PIC=TRUE"
273 "-DAOM_TARGET_CPU=generic"
274 (string-append "-DCMAKE_INSTALL_PREFIX="
275 (assoc-ref %outputs "out")))))
276 (home-page "https://aomedia.googlesource.com/aom/")
277 (synopsis "AV1 video codec")
278 (description "Libaom is the reference implementation of AV1. It includes
279a shared library and encoder and decoder command-line executables.")
280 (license license:bsd-2))))
281
e0884109
MW
282(define-public libmpeg2
283 (package
284 (name "libmpeg2")
285 (version "0.5.1")
286 (source (origin
287 (method url-fetch)
288 ;; A mirror://sourceforge URI doesn't work, presumably
289 ;; because the SourceForge project is misconfigured.
290 (uri (string-append "http://libmpeg2.sourceforge.net/files/"
291 name "-" version ".tar.gz"))
292 (sha256
293 (base32
294 "1m3i322n2fwgrvbs1yck7g5md1dbg22bhq5xdqmjpz5m7j4jxqny"))))
295 (inputs
296 `(("libx11" ,libx11)
297 ("libxext" ,libxext)
298 ("libxv" ,libxv)
299 ("libsm" ,libsm)
300 ("libice" ,libice)
301 ("sdl" ,sdl)))
302 (build-system gnu-build-system)
303 (home-page "http://libmpeg2.sourceforge.net/")
304 (synopsis "MPEG1 and MPEG2 video decoder library")
305 (description
306 "libmpeg2 is a library which can decode MPEG1 and MPEG2 video streams.")
307 (license license:gpl2+)))
308
82712597
MW
309(define-public libx264
310 (package
311 (name "libx264")
fac39b99 312 (version "20180810-2245")
82712597
MW
313 (source (origin
314 (method url-fetch)
4ff71cac 315 (uri (string-append "https://download.videolan.org/pub/x264/snapshots/"
bb2a9558 316 "x264-snapshot-" version "-stable.tar.bz2"))
82712597
MW
317 (sha256
318 (base32
fac39b99 319 "0f25f39imas9pcqm7lnaa0shhjmf42hdx7jxzcnvxc7qsb7lh1bv"))))
82712597
MW
320 (build-system gnu-build-system)
321 (native-inputs
322 `(("pkg-config" ,pkg-config)
a0343008 323 ("nasm" ,nasm)))
82712597
MW
324 ;; TODO: Add gpac input
325 (arguments
326 `(#:tests? #f ;no check target
327 #:configure-flags '("--enable-shared"
328 ;; Don't build the command-line program. If we
329 ;; want it later, we should do so in a different
330 ;; package to avoid a circular dependency (the x264
331 ;; program depends on ffmpeg and ffmpeg depends on
332 ;; libx264).
cb50d0c2
MW
333 "--disable-cli"
334
335 ;; On MIPS, we must pass "--disable-asm" or else
336 ;; configure fails after printing: "You specified a
337 ;; pre-MSA CPU in your CFLAGS. If you really want
338 ;; to run on such a CPU, configure with
339 ;; --disable-asm."
340 ,@(if (string-prefix? "mips"
341 (or (%current-target-system)
342 (%current-system)))
343 '("--disable-asm")
344 '()))))
4ff71cac 345 (home-page "https://www.videolan.org/developers/x264.html")
82712597
MW
346 (synopsis "H.264 video coding library")
347 (description "libx264 is an advanced encoding library for creating
348H.264 (MPEG-4 AVC) video streams.")
349 (license (list license:gpl2+ ;most files
350 license:isc ;common/x86/x86inc.asm
351 license:lgpl2.1+ ;extras/getopt.c
352 license:bsd-3 ;extras/inttypes.h
353 (license:non-copyleft ;extras/cl*.h
354 "file://extras/cl.h"
355 "See extras/cl.h in the distribution.")))))
356
2973ebf5
GG
357(define-public mkvtoolnix
358 (package
359 (name "mkvtoolnix")
296b3de6 360 (version "37.0.0")
2973ebf5
GG
361 (source
362 (origin
363 (method url-fetch)
364 (uri (string-append "https://mkvtoolnix.download/sources/"
908d8bed 365 "mkvtoolnix-" version ".tar.xz"))
2973ebf5 366 (sha256
296b3de6 367 (base32 "0r4d9318ymb9a0mkc0shi9p4kjy3m70s49v4f8dmjhvj63silhix"))
2973ebf5 368 (modules '((guix build utils)))
6cbee49d
MW
369 (snippet '(begin
370 ;; Delete bundled libraries.
371 (for-each delete-file-recursively
f3395a7b
EF
372 '("lib/fmt"
373 "lib/libebml"
6cbee49d
MW
374 "lib/libmatroska"
375 "lib/nlohmann-json"
376 "lib/pugixml"
377 "lib/utf8-cpp"))
378 #t))))
2973ebf5 379 (build-system gnu-build-system)
99d5e5df 380 (outputs '("out" "gui")) ; "mkvtoolnix-gui" brings the closure size from ~300 MB to 1.5+ GB.
2973ebf5
GG
381 (inputs
382 `(("boost" ,boost)
383 ("bzip2" ,bzip2)
f3395a7b 384 ("cmark" ,cmark)
2973ebf5 385 ("libebml" ,libebml)
2973ebf5 386 ("file" ,file)
f3395a7b
EF
387 ("flac" ,flac)
388 ("fmt" ,fmt)
2973ebf5
GG
389 ("libmatroska" ,libmatroska)
390 ("libogg" ,libogg)
391 ("libvorbis" ,libvorbis)
392 ("lzo" ,lzo)
393 ("pugixml" ,pugixml)
662ff659
EF
394 ("qtbase" ,qtbase)
395 ("qtmultimedia" ,qtmultimedia)
2973ebf5
GG
396 ("utfcpp" ,utfcpp)
397 ("zlib" ,zlib)))
398 (native-inputs
399 `(("docbook-xsl" ,docbook-xsl)
400 ("gettext" ,gettext-minimal)
401 ("googletest" ,googletest)
402 ("libxslt" ,libxslt)
403 ("nlohmann-json-cpp" ,nlohmann-json-cpp)
404 ("perl" ,perl)
405 ("pkg-config" ,pkg-config)
406 ("po4a" ,po4a)
662ff659 407 ("qttools" ,qttools)
2973ebf5
GG
408 ("ruby" ,ruby)))
409 (arguments
410 `(#:configure-flags
411 (list (string-append "--with-boost="
412 (assoc-ref %build-inputs "boost"))
413 (string-append "--with-docbook-xsl-root="
414 (assoc-ref %build-inputs "docbook-xsl")
415 "/xml/xsl/docbook-xsl-"
416 ,(package-version docbook-xsl))
e7ed996c
EF
417 "--enable-update-check=no"
418 "--enable-precompiled-headers=no")
2973ebf5
GG
419 #:phases
420 (modify-phases %standard-phases
07272bd8
TGR
421 (add-after 'unpack 'patch-relative-file-names
422 (lambda* (#:key outputs #:allow-other-keys)
423 (let ((out (assoc-ref outputs "out")))
424 (substitute* "src/mkvtoolnix-gui/util/settings.cpp"
425 (("mkvmerge" match)
426 (string-append out "/bin/" match)))
427 #t)))
2973ebf5 428 (add-before 'configure 'add-googletest
e7ed996c 429 (lambda* (#:key inputs #:allow-other-keys)
2973ebf5 430 (symlink
e7ed996c
EF
431 (string-append (assoc-ref inputs "googletest")
432 "/include/gtest") "lib/gtest")
2973ebf5
GG
433 #t))
434 (replace 'build
435 (lambda _
436 (let ((-j (list "-j" (number->string (parallel-job-count)))))
6c4d1413 437 (apply invoke "rake" -j))))
2973ebf5
GG
438 (replace 'check
439 (lambda _
6c4d1413 440 (invoke "rake" "tests/unit")))
2973ebf5
GG
441 (replace 'install
442 (lambda _
99d5e5df
PN
443 (invoke "rake" "install")))
444 (add-after 'install 'post-install
445 (lambda* (#:key outputs #:allow-other-keys)
446 ;; Move the Qt interface to "gui".
b55db494
PN
447 (let* ((out (assoc-ref outputs "out"))
448 (gui (assoc-ref outputs "gui"))
449 (strip-store-dir (lambda (path)
450 (substring path (string-prefix-length out path)))))
99d5e5df
PN
451 (for-each
452 (lambda (file)
453 (mkdir-p (string-append gui (dirname file)))
454 (rename-file (string-append out file)
455 (string-append gui file)))
b55db494
PN
456 (append '("/bin/mkvtoolnix-gui"
457 "/share/applications/org.bunkus.mkvtoolnix-gui.desktop"
458 "/share/metainfo/org.bunkus.mkvtoolnix-gui.appdata.xml"
459 "/share/mime/packages/org.bunkus.mkvtoolnix-gui.xml")
460 (map strip-store-dir (find-files out "\\.ogg$"))
461 (map strip-store-dir (find-files out "mkvtoolnix-gui\\.png$"))
462 (map strip-store-dir (find-files out "mkvtoolnix-gui\\.1"))))
463 (for-each
464 (lambda (file)
465 (delete-file-recursively (string-append out file)))
466 '("/share/applications"
467 "/share/metainfo"
468 "/share/mime"
469 "/share/mkvtoolnix")))
99d5e5df 470 #t)))))
2973ebf5
GG
471 (home-page "https://mkvtoolnix.download")
472 (synopsis "Tools to create, alter and inspect Matroska files")
473 (description
474 "MKVToolNix provides tools for getting information about Matroska files
df14dc48
TGR
475(@command{mkvinfo}), extracting tracks/data from Matroska files
476(@command{mkvextract}), and creating Matroska files from other media files
477(@command{mkvmerge}).")
2973ebf5
GG
478 (license license:gpl2)))
479
7bc7ffc2
EF
480(define-public x265
481 (package
482 (name "x265")
5b689de5 483 (version "3.1.2")
020d4d2c 484 (outputs '("out" "static"))
7bc7ffc2
EF
485 (source
486 (origin
487 (method url-fetch)
621ce95c
MB
488 (uri (list (string-append "https://bitbucket.org/multicoreware/x265"
489 "/downloads/x265_" version ".tar.gz")
490 (string-append "https://download.videolan.org/videolan/x265/"
491 "x265_" version ".tar.gz")))
7bc7ffc2
EF
492 (sha256
493 (base32
5b689de5 494 "1ajr59gjj47gnczfb2qhmzclj746pdiq9a1d81b0mq22k8f5yy3g"))
23c25982 495 (patches (search-patches "x265-arm-flags.patch"))
7bc7ffc2 496 (modules '((guix build utils)))
6cbee49d
MW
497 (snippet '(begin
498 (delete-file-recursively "source/compat/getopt")
499 #t))))
7bc7ffc2
EF
500 (build-system cmake-build-system)
501 (arguments
502 `(#:tests? #f ; tests are skipped if cpu-optimized code isn't built
bd606fb2
EF
503 #:configure-flags
504 ;; Ensure position independent code for everyone.
505 (list "-DENABLE_PIC=TRUE"
8e59c5fe
EF
506 ,@(if (string-prefix? "armhf" (or (%current-system)
507 (%current-target-system)))
508 '("-DENABLE_ASSEMBLY=OFF")
509 '())
bd606fb2
EF
510 (string-append "-DCMAKE_INSTALL_PREFIX="
511 (assoc-ref %outputs "out")))
7bc7ffc2
EF
512 #:phases
513 (modify-phases %standard-phases
bd606fb2 514 (add-after 'unpack 'prepare-build
7bc7ffc2
EF
515 (lambda _
516 (delete-file-recursively "build")
517 (chdir "source")
8e59c5fe
EF
518 ;; recognize armv8 in 32-bit mode as ARM
519 (substitute* "CMakeLists.txt"
520 (("armv6l") "armv8l"))
bd606fb2
EF
521 #t))
522 (add-before 'configure 'build-12-bit
523 (lambda* (#:key (configure-flags '()) #:allow-other-keys)
524 (mkdir "../build-12bit")
525 (with-directory-excursion "../build-12bit"
526 (apply invoke
527 "cmake" "../source"
528 "-DHIGH_BIT_DEPTH=ON"
529 "-DEXPORT_C_API=OFF"
530 "-DENABLE_CLI=OFF"
531 "-DMAIN12=ON"
532 configure-flags)
533 (substitute* (cons "cmake_install.cmake"
534 (append
535 (find-files "CMakeFiles/x265-shared.dir" ".")
536 (find-files "CMakeFiles/x265-static.dir" ".")))
537 (("libx265") "libx265_main12"))
538 (invoke "make"))))
539 (add-before 'configure 'build-10-bit
540 (lambda* (#:key (configure-flags '()) #:allow-other-keys)
541 (mkdir "../build-10bit")
542 (with-directory-excursion "../build-10bit"
543 (apply invoke
544 "cmake" "../source"
545 "-DHIGH_BIT_DEPTH=ON"
546 "-DEXPORT_C_API=OFF"
547 "-DENABLE_CLI=OFF"
548 configure-flags)
549 (substitute* (cons "cmake_install.cmake"
550 (append
551 (find-files "CMakeFiles/x265-shared.dir" ".")
552 (find-files "CMakeFiles/x265-static.dir" ".")))
553 (("libx265") "libx265_main10"))
554 (invoke "make"))))
555 (add-after 'install 'install-more-libs
556 (lambda _
557 (with-directory-excursion "../build-12bit"
558 (invoke "make" "install"))
559 (with-directory-excursion "../build-10bit"
020d4d2c
EF
560 (invoke "make" "install"))))
561 (add-before 'strip 'move-static-libs
562 (lambda* (#:key outputs #:allow-other-keys)
563 (let ((out (assoc-ref outputs "out"))
564 (static (assoc-ref outputs "static")))
565 (mkdir-p (string-append static "/lib"))
566 (with-directory-excursion
567 (string-append out "/lib")
568 (for-each
569 (lambda (file)
570 (rename-file file
571 (string-append static "/lib/" file)))
572 (find-files "." "\\.a$"))))
573 #t)))))
7bc7ffc2
EF
574 (home-page "http://x265.org/")
575 (synopsis "Library for encoding h.265/HEVC video streams")
576 (description "x265 is a H.265 / HEVC video encoder application library,
577designed to encode video or images into an H.265 / HEVC encoded bitstream.")
578 (license license:gpl2+)))
579
c426e61e
TUBK
580(define-public libass
581 (package
582 (name "libass")
449ad88b 583 (version "0.14.0")
c426e61e
TUBK
584 (source (origin
585 (method url-fetch)
586 (uri (string-append
587 "https://github.com/libass/libass/releases/download/"
588 version "/libass-" version ".tar.xz"))
589 (sha256
590 (base32
449ad88b 591 "18iqznl4mabhj9ywfsz4kwvbsplcv1jjxq50nxssvbj8my1267w8"))))
c426e61e
TUBK
592 (build-system gnu-build-system)
593 (native-inputs
594 `(("pkg-config" ,pkg-config)
449ad88b 595 ("nasm" ,nasm)))
c426e61e
TUBK
596 (propagated-inputs
597 `(("freetype" ,freetype)
598 ("fribidi" ,fribidi)
599 ("fontconfig" ,fontconfig)
600 ("harfbuzz" ,harfbuzz)
601 ("enca" ,enca)))
602 (home-page "https://github.com/libass/libass")
603 (synopsis "Subtitle rendering library for the ASS/SSA format")
604 (description "libass is a subtitle rendering library for the
605ASS/SSA (Advanced Substation Alpha/SubStation Alpha) subtitle format.")
ae0bdd81 606 (license license:isc)))
c426e61e 607
4d94b93c
TUBK
608(define-public libcaca
609 (package
610 (name "libcaca")
611 (version "0.99.beta19")
612 (source (origin
613 (method url-fetch)
614 (uri (string-append "http://caca.zoy.org/files/libcaca/libcaca-"
615 version ".tar.gz"))
616 (sha256
617 (base32
618 "1x3j6yfyxl52adgnabycr0n38j9hx2j74la0hz0n8cnh9ry4d2qj"))))
619 (build-system gnu-build-system)
620 (native-inputs `(("pkg-config" ,pkg-config)))
621 (inputs
622 `(("freeglut" ,freeglut)
623 ("ftgl" ,ftgl)
43d51239 624 ("imlib2" ,imlib2)
4d94b93c
TUBK
625 ("libx11" ,libx11)
626 ("mesa" ,mesa)
627 ("ncurses" ,ncurses)
628 ("zlib" ,zlib)))
629 (home-page "http://caca.zoy.org/wiki/libcaca")
630 (synopsis "Colour ASCII-art library")
631 (description "libcaca is a graphics library that outputs text instead of
632pixels, so that it can work on older video cards or text terminals. It
633supports Unicode, 2048 colors, dithering of color images, and advanced text
634canvas operations.")
ae0bdd81 635 (license (license:fsf-free "file://COPYING")))) ;WTFPL version 2
4d94b93c 636
3bfb78dc
TUBK
637(define-public libdca
638 (package
639 (name "libdca")
649b334b 640 (version "0.0.6")
3bfb78dc
TUBK
641 (source (origin
642 (method url-fetch)
643 (uri (string-append
b8a31908 644 "https://download.videolan.org/pub/videolan/libdca/"
3bfb78dc
TUBK
645 version "/libdca-" version ".tar.bz2"))
646 (sha256
647 (base32
649b334b 648 "0h0zvcn97i9kyljdpifzi8in9xnw31fx3b3ggj96p8h0l2d8mycq"))))
3bfb78dc 649 (build-system gnu-build-system)
b8a31908 650 (home-page "https://www.videolan.org/developers/libdca.html")
3bfb78dc
TUBK
651 (synopsis "DTS Coherent Acoustics decoder")
652 (description "libdca is a library for decoding DTS Coherent Acoustics
653streams.")
ae0bdd81 654 (license license:gpl2+)))
3bfb78dc 655
99d4c455
TUBK
656(define-public libdv
657 (package
658 (name "libdv")
659 (version "1.0.0")
660 (source (origin
661 (method url-fetch)
662 (uri (string-append
de67e922
LF
663 "mirror://sourceforge/" name "/" name "/"
664 version "/" name "-" version ".tar.gz"))
99d4c455
TUBK
665 (sha256
666 (base32
667 "1fl96f2xh2slkv1i1ix7kqk576a0ak1d33cylm0mbhm96d0761d3"))))
668 (build-system gnu-build-system)
669 (native-inputs `(("pkg-config" ,pkg-config)))
670 (inputs `(("libxv" ,libxv)))
671 (home-page "http://libdv.sourceforge.net/")
672 (synopsis "DV video (IEC 61834 and SMPTE 314M) codec")
673 (description "The Quasar DV codec (libdv) is a software codec for DV
674video, the encoding format used by most digital camcorders, typically those
675that support the IEEE 1394 (a.k.a. FireWire or i.Link) interface. Libdv was
676developed according to the official standards for DV video: IEC 61834 and
677SMPTE 314M.")
ae0bdd81 678 (license license:lgpl2.1+)))
99d4c455 679
15f1d02a
GG
680(define-public libmatroska
681 (package
682 (name "libmatroska")
ad8e5a53 683 (version "1.5.2")
15f1d02a
GG
684 (source
685 (origin
686 (method url-fetch)
687 (uri (string-append "https://dl.matroska.org/downloads/"
309f3408 688 "libmatroska/libmatroska-" version ".tar.xz"))
15f1d02a 689 (sha256
ad8e5a53 690 (base32 "0qn9lfs0877wbv581yxw2gywxywxpvwslc5q07q4f7bqpyzxxiha"))))
23e24ff6 691 (build-system cmake-build-system)
15f1d02a
GG
692 (inputs
693 `(("libebml" ,libebml)))
23e24ff6
TGR
694 (arguments
695 `(#:configure-flags
696 (list "-DBUILD_SHARED_LIBS=YES")
697 #:tests? #f)) ; no test suite
15f1d02a 698 (home-page "https://www.matroska.org")
cb778117 699 (synopsis "C++ library to parse Matroska files (.mkv and .mka)")
15f1d02a
GG
700 (description
701 "Matroska aims to become the standard of multimedia container formats.
cb778117 702It is based on @dfn{EBML} (Extensible Binary Meta Language), a binary derivative
15f1d02a
GG
703of XML. EBML enables the Matroska Development Team to gain significant
704advantages in terms of future format extensibility, without breaking file
705support in old parsers.
706libebml is a C++ library to read and write EBML files.")
707 (license license:lgpl2.1)))
708
ee3b55ea
TUBK
709(define-public libva
710 (package
711 (name "libva")
81e74dc8 712 (version "2.5.0")
ee3b55ea
TUBK
713 (source
714 (origin
715 (method url-fetch)
7035d2dd
MB
716 (uri (list
717 ;; Newer releases are only available on GitHub.
718 (string-append "https://github.com/01org/libva/releases/download/"
719 version "/libva-" version ".tar.bz2")
720 ;; Keep the old URL around for compatibility.
721 (string-append "https://www.freedesktop.org/software/vaapi/releases/"
722 "libva/libva-" version "/libva-" version ".tar.bz2")))
ee3b55ea 723 (sha256
81e74dc8 724 (base32 "0y38mw1ggxm15zq06r4qpwhd5wx4bppw1rsxpr6sq1m5d79rra1s"))))
ee3b55ea
TUBK
725 (build-system gnu-build-system)
726 (native-inputs
727 `(("pkg-config" ,pkg-config)))
728 (inputs
729 `(("libdrm" ,libdrm)
730 ("libx11" ,libx11)
731 ("libxext" ,libxext)
732 ("libxfixes" ,libxfixes)
3ee7b4cc
EF
733 ("mesa" ,mesa)
734 ("wayland" ,wayland)))
372cf039
TUBK
735 (arguments
736 `(#:phases
737 (modify-phases %standard-phases
738 (add-before
739 'build 'fix-dlopen-paths
740 (lambda* (#:key outputs #:allow-other-keys)
741 (let ((out (assoc-ref outputs "out")))
742 (substitute* "va/drm/va_drm_auth_x11.c"
743 (("\"libva-x11\\.so\\.%d\"")
d5c88f16
MW
744 (string-append "\"" out "/lib/libva-x11.so.%d\"")))
745 #t))))
372cf039
TUBK
746 ;; Most drivers are in mesa's $prefix/lib/dri, so use that. (Can be
747 ;; overridden at run-time via LIBVA_DRIVERS_PATH.)
748 #:configure-flags
749 (list (string-append "--with-drivers-path="
750 (assoc-ref %build-inputs "mesa") "/lib/dri"))
751 ;; However, we can't write to mesa's store directory, so override the
752 ;; following make variable to install the dummy driver to libva's
753 ;; $prefix/lib/dri directory.
754 #:make-flags
755 (list (string-append "dummy_drv_video_ladir="
756 (assoc-ref %outputs "out") "/lib/dri"))))
5c1c2254 757 (home-page "https://www.freedesktop.org/wiki/Software/vaapi/")
ee3b55ea
TUBK
758 (synopsis "Video acceleration library")
759 (description "The main motivation for VA-API (Video Acceleration API) is
760to enable hardware accelerated video decode/encode at various
761entry-points (VLD, IDCT, Motion Compensation etc.) for prevailing coding
762standards (MPEG-2, MPEG-4 ASP/H.263, MPEG-4 AVC/H.264, and VC-1/VMW3).")
ae0bdd81 763 (license license:expat)))
ee3b55ea 764
3563220e
TGR
765(define-public libva-utils
766 (package
767 (name "libva-utils")
768 (version "2.5.0")
769 (source
770 (origin
771 (method url-fetch)
772 (uri (string-append "https://github.com/intel/libva-utils/releases/download/"
773 version "/libva-utils-" version ".tar.bz2"))
774 (sha256
775 (base32 "05rasyqnsg522zqxak1q8rrm1hys7wwbi41kd0szjq0d27awjf4j"))))
776 (build-system gnu-build-system)
777 (arguments
778 `(#:configure-flags
779 (list "--enable-wayland"
780 "--enable-x11")))
781 (native-inputs
782 `(("pkg-config" ,pkg-config)))
783 (inputs
784 `(("libdrm" ,libdrm)
785 ("libva" ,libva)
786 ("libx11" ,libx11)
787 ("mesa" ,mesa)
788 ("wayland" ,wayland)))
789 (home-page "https://01.org/linuxmedia/vaapi")
790 (synopsis "Collection of testing utilities for VA-API")
791 (description
792 "This is a collection of utilities to query and test the @acronym{VA-API,
793Video Acceleration API} implemented by the libva library.
794
795These tools require a supported graphics chip, driver, and VA-API back end to
796operate properly.")
797 (license license:expat)))
798
39efcc9b
AE
799(define-public ffmpeg
800 (package
801 (name "ffmpeg")
86445c8e 802 (version "4.2")
39efcc9b
AE
803 (source (origin
804 (method url-fetch)
a1121a7f
EF
805 (uri (string-append "https://ffmpeg.org/releases/ffmpeg-"
806 version ".tar.xz"))
39efcc9b
AE
807 (sha256
808 (base32
86445c8e 809 "1mgcxm7sqkajx35px05szsmn9mawwm03cfpmk3br7bcp3a1i0gq2"))))
39efcc9b
AE
810 (build-system gnu-build-system)
811 (inputs
86445c8e
RH
812 `(("dav1d" ,dav1d)
813 ("fontconfig" ,fontconfig)
39efcc9b 814 ("freetype" ,freetype)
8fd43200 815 ("frei0r-plugins" ,frei0r-plugins)
c8dab7f4 816 ("gnutls" ,gnutls)
e816b348 817 ("opus" ,opus)
71241192 818 ("ladspa" ,ladspa)
d4f12db8 819 ("lame" ,lame)
84eb265e 820 ("libaom" ,libaom)
c426e61e 821 ("libass" ,libass)
5d3609e4 822 ("libbluray" ,libbluray)
4d94b93c 823 ("libcaca" ,libcaca)
cc6c0170 824 ("libcdio-paranoia" ,libcdio-paranoia)
1f61cc10 825 ("libdrm" ,libdrm)
39efcc9b 826 ("libtheora" ,libtheora)
bb3df15e 827 ("libva" ,libva)
f88f0d20 828 ("libvdpau" ,libvdpau)
39efcc9b 829 ("libvorbis" ,libvorbis)
dc55b8b2 830 ("libvpx" ,libvpx)
f88f0d20 831 ("libx11" ,libx11)
549381d6 832 ("libx264" ,libx264)
f88f0d20 833 ("mesa" ,mesa)
71241192 834 ("openal" ,openal)
71241192 835 ("pulseaudio" ,pulseaudio)
85bc5434 836 ("sdl" ,sdl2)
72bfebf5 837 ("soxr" ,soxr)
c4c4cc05 838 ("speex" ,speex)
72bfebf5 839 ("twolame" ,twolame)
6d777ff9 840 ("vidstab" ,vidstab)
d505801a 841 ("x265" ,x265)
67932f86 842 ("xvid" ,xvid)
b3546174 843 ("zlib" ,zlib)))
c4c4cc05
JD
844 (native-inputs
845 `(("bc" ,bc)
39efcc9b
AE
846 ("perl" ,perl)
847 ("pkg-config" ,pkg-config)
824d9dc3 848 ("texinfo" ,texinfo)
39efcc9b
AE
849 ("python" ,python-2) ; scripts use interpreter python2
850 ("speex" ,speex)
c4c4cc05 851 ("yasm" ,yasm)))
39efcc9b 852 (arguments
31f9322e 853 `(#:test-target "fate"
12f92e38
AP
854 #:configure-flags
855 ;; possible additional inputs:
856 ;; --enable-avisynth enable reading of AviSynth script
857 ;; files [no]
12f92e38
AP
858 ;; --enable-libaacplus enable AAC+ encoding via libaacplus [no]
859 ;; --enable-libcelt enable CELT decoding via libcelt [no]
860 ;; --enable-libdc1394 enable IIDC-1394 grabbing using libdc1394
861 ;; and libraw1394 [no]
862 ;; --enable-libfaac enable AAC encoding via libfaac [no]
863 ;; --enable-libfdk-aac enable AAC de/encoding via libfdk-aac [no]
864 ;; --enable-libflite enable flite (voice synthesis) support via
865 ;; libflite [no]
866 ;; --enable-libgme enable Game Music Emu via libgme [no]
867 ;; --enable-libgsm enable GSM de/encoding via libgsm [no]
868 ;; --enable-libiec61883 enable iec61883 via libiec61883 [no]
869 ;; --enable-libilbc enable iLBC de/encoding via libilbc [no]
870 ;; --enable-libmodplug enable ModPlug via libmodplug [no]
871 ;; --enable-libnut enable NUT (de)muxing via libnut,
872 ;; native (de)muxer exists [no]
873 ;; --enable-libopencore-amrnb enable AMR-NB de/encoding via
874 ;; libopencore-amrnb [no]
875 ;; --enable-libopencore-amrwb enable AMR-WB decoding via
876 ;; libopencore-amrwb [no]
877 ;; --enable-libopencv enable video filtering via libopencv [no]
878 ;; --enable-libopenjpeg enable JPEG 2000 de/encoding via
879 ;; OpenJPEG [no]
880 ;; --enable-librtmp enable RTMP[E] support via librtmp [no]
881 ;; --enable-libschroedinger enable Dirac de/encoding via
882 ;; libschroedinger [no]
883 ;; --enable-libshine enable fixed-point MP3 encoding via
884 ;; libshine [no]
885 ;; --enable-libssh enable SFTP protocol via libssh [no]
886 ;; (libssh2 does not work)
887 ;; --enable-libstagefright-h264 enable H.264 decoding via
888 ;; libstagefright [no]
889 ;; --enable-libutvideo enable Ut Video encoding and decoding via
890 ;; libutvideo [no]
891 ;; --enable-libv4l2 enable libv4l2/v4l-utils [no]
12f92e38
AP
892 ;; --enable-libvo-aacenc enable AAC encoding via libvo-aacenc [no]
893 ;; --enable-libvo-amrwbenc enable AMR-WB encoding via
894 ;; libvo-amrwbenc [no]
895 ;; --enable-libwavpack enable wavpack encoding via libwavpack [no]
896 ;; --enable-libxavs enable AVS encoding via xavs [no]
897 ;; --enable-libzmq enable message passing via libzmq [no]
898 ;; --enable-libzvbi enable teletext support via libzvbi [no]
899 ;; --enable-opencl enable OpenCL code
12f92e38
AP
900 '("--enable-avresample"
901 "--enable-gpl" ; enable optional gpl licensed parts
902 "--enable-shared"
8fd43200 903 "--enable-frei0r"
12f92e38 904 "--enable-fontconfig"
c8dab7f4 905 "--enable-gnutls"
12f92e38 906 "--enable-ladspa"
84eb265e 907 "--enable-libaom"
12f92e38
AP
908 "--enable-libass"
909 "--enable-libbluray"
910 "--enable-libcaca"
911 "--enable-libcdio"
86445c8e 912 "--enable-libdav1d"
12f92e38
AP
913 "--enable-libfreetype"
914 "--enable-libmp3lame"
915 "--enable-libopus"
916 "--enable-libpulse"
12f92e38
AP
917 "--enable-libsoxr"
918 "--enable-libspeex"
919 "--enable-libtheora"
920 "--enable-libtwolame"
6d777ff9 921 "--enable-libvidstab"
12f92e38
AP
922 "--enable-libvorbis"
923 "--enable-libvpx"
924 "--enable-libxvid"
925 "--enable-libx264"
d505801a 926 "--enable-libx265"
12f92e38 927 "--enable-openal"
f88f0d20 928 "--enable-opengl"
1f61cc10 929 "--enable-libdrm"
12f92e38
AP
930
931 "--enable-runtime-cpudetect"
932
1e2a36e1
EF
933 ;; The HTML pages take 7.2 MiB
934 "--disable-htmlpages"
935
936 ;; The static libraries are 23 MiB
937 "--disable-static"
938
12f92e38
AP
939 ;; Runtime cpu detection is not implemented on
940 ;; MIPS, so we disable some features.
941 "--disable-mips32r2"
c5e1fcd0 942 "--disable-mipsdsp"
12f92e38
AP
943 "--disable-mipsdspr2"
944 "--disable-mipsfpu")
31f9322e 945 #:phases
f2feb0ce
LC
946 (modify-phases %standard-phases
947 (replace
39efcc9b
AE
948 'configure
949 ;; configure does not work followed by "SHELL=..." and
950 ;; "CONFIG_SHELL=..."; set environment variables instead
951 (lambda* (#:key outputs configure-flags #:allow-other-keys)
952 (let ((out (assoc-ref outputs "out")))
953 (substitute* "configure"
47734a56 954 (("#! /bin/sh") (string-append "#!" (which "sh"))))
39efcc9b
AE
955 (setenv "SHELL" (which "bash"))
956 (setenv "CONFIG_SHELL" (which "bash"))
3918ed73
MW
957 (apply invoke
958 "./configure"
959 (string-append "--prefix=" out)
960 ;; Add $libdir to the RUNPATH of all the binaries.
961 (string-append "--extra-ldflags=-Wl,-rpath="
962 out "/lib")
963 configure-flags))))
457e528e
LC
964 (add-before
965 'check 'set-ld-library-path
966 (lambda _
967 ;; Allow $(top_builddir)/ffmpeg to find its dependencies when
968 ;; running tests.
969 (let* ((dso (find-files "." "\\.so$"))
970 (path (string-join (map dirname dso) ":")))
971 (format #t "setting LD_LIBRARY_PATH to ~s~%" path)
972 (setenv "LD_LIBRARY_PATH" path)
27350ef8 973 #t))))))
702bfbf1 974 (home-page "https://www.ffmpeg.org/")
39efcc9b
AE
975 (synopsis "Audio and video framework")
976 (description "FFmpeg is a complete, cross-platform solution to record,
977convert and stream audio and video. It includes the libavcodec
978audio/video codec library.")
ae0bdd81 979 (license license:gpl2+)))
d5a748e8 980
06079c19
RH
981(define-public ffmpeg-3.4
982 (package
983 (inherit ffmpeg)
fa542ee4 984 (version "3.4.6")
06079c19
RH
985 (source (origin
986 (method url-fetch)
987 (uri (string-append "https://ffmpeg.org/releases/ffmpeg-"
988 version ".tar.xz"))
989 (sha256
990 (base32
fa542ee4 991 "0gmqbhg5jjcfanrxrl657zn12lzz73sfs8xwryfy7n9rn6f2fwim"))))
84eb265e
AB
992 (arguments
993 (substitute-keyword-arguments (package-arguments ffmpeg)
994 ((#:configure-flags flags)
86445c8e
RH
995 `(delete "--enable-libdav1d" (delete "--enable-libaom"
996 ,flags)))))
997 (inputs (alist-delete "dav1d" (alist-delete "libaom"
998 (package-inputs ffmpeg))))))
06079c19 999
1faf0a04
NG
1000(define-public ffmpeg-for-stepmania
1001 (hidden-package
1002 (package
1003 (inherit ffmpeg)
1004 (version "2.1.3")
1005 (source
1006 (origin
1007 (method git-fetch)
1008 (uri (git-reference
1009 (url "https://github.com/stepmania/ffmpeg.git")
1010 (commit "eda6effcabcf9c238e4635eb058d72371336e09b")))
1011 (sha256
1012 (base32 "1by8rmbva8mfrivdbbkr2gx4kga89zqygkd4cfjl76nr8mdcdamb"))
1013 (file-name (git-file-name "ffmpeg" version))))
1014 (arguments
1015 (substitute-keyword-arguments (package-arguments ffmpeg)
1016 ((#:configure-flags flags)
1017 '(list "--disable-programs"
1018 "--disable-doc"
1019 "--disable-debug"
1020 "--disable-avdevice"
1021 "--disable-swresample"
1022 "--disable-postproc"
1023 "--disable-avfilter"
1024 "--disable-shared"
1025 "--enable-static"))))
1026 (inputs '()))))
1027
4febfdd0
BT
1028(define-public ffmpegthumbnailer
1029 (package
1030 (name "ffmpegthumbnailer")
1031 (version "2.2.0")
1032 (source (origin
722e6ffe
RW
1033 (method git-fetch)
1034 (uri (git-reference
1035 (url "https://github.com/dirkvdb/ffmpegthumbnailer.git")
1036 (commit version)))
1037 (file-name (git-file-name name version))
4febfdd0
BT
1038 (sha256
1039 (base32
722e6ffe 1040 "0kl8aa547icy9b05njps02a8sw4yn4f8fzs228kig247sn09s4cp"))))
4febfdd0
BT
1041 (build-system cmake-build-system)
1042 (native-inputs
1043 `(("pkg-config" ,pkg-config)))
1044 (inputs
1045 `(("ffmpeg" ,ffmpeg)
1046 ("libjpeg-turbo" ,libjpeg-turbo)
1047 ("libpng" ,libpng)
1048 ("gvfs" ,gvfs)))
1049 (arguments
1050 `(#:configure-flags (list "-DENABLE_GIO=ON" "-DENABLE_THUMBNAILER=ON")))
1051 (home-page "https://github.com/dirkvdb/ffmpegthumbnailer")
1052 (synopsis "Create thumbnails from video files")
1053 (description "FFmpegthumbnailer is a lightweight video thumbnailer that
1054can be used by file managers to create thumbnails for your video files. The
1055thumbnailer uses ffmpeg to decode frames from the video files, so supported
1056videoformats depend on the configuration flags of ffmpeg.")
1057 (license license:gpl2+)))
1058
d5a748e8
AE
1059(define-public vlc
1060 (package
1061 (name "vlc")
178f1d1f 1062 (version "3.0.8")
d5a748e8
AE
1063 (source (origin
1064 (method url-fetch)
1065 (uri (string-append
a134cc8e 1066 "https://download.videolan.org/pub/videolan/vlc/"
324c049f
LF
1067 (car (string-split version #\-))
1068 "/vlc-" version ".tar.xz"))
d5a748e8
AE
1069 (sha256
1070 (base32
178f1d1f 1071 "1xmxjpyzdhabchwncz6lvx3kzvl7fz9c42bkv3nbj68albs9w570"))))
d5a748e8
AE
1072 (build-system gnu-build-system)
1073 (native-inputs
76277052
MW
1074 `(("flex" ,flex)
1075 ("bison" ,bison)
1076 ("gettext" ,gettext-minimal)
1077 ("git" ,git) ; needed for a test
d5a748e8
AE
1078 ("pkg-config" ,pkg-config)))
1079 ;; FIXME: Add optional inputs once available.
1080 (inputs
1081 `(("alsa-lib" ,alsa-lib)
1082 ("avahi" ,avahi)
1083 ("dbus" ,dbus)
76277052 1084 ("eudev" ,eudev)
d5a748e8 1085 ("flac" ,flac)
76277052 1086 ("ffmpeg" ,ffmpeg)
d5a748e8
AE
1087 ("fontconfig" ,fontconfig)
1088 ("freetype" ,freetype)
76277052 1089 ("fribidi" ,fribidi)
d5a748e8 1090 ("gnutls" ,gnutls)
8824da4c 1091 ("liba52" ,liba52)
76277052
MW
1092 ("libarchive" ,libarchive)
1093 ("libass" ,libass)
1094 ("libavc1394" ,libavc1394)
1095 ("libbluray" ,libbluray)
1096 ("libcaca" ,libcaca)
d5a748e8 1097 ("libcddb" ,libcddb)
76277052 1098 ("libdca" ,libdca)
72b6a894 1099 ("libdvbpsi" ,libdvbpsi)
76277052
MW
1100 ("libdvdnav" ,libdvdnav)
1101 ("libdvdread" ,libdvdread)
1102 ("libebml" ,libebml)
d5a748e8 1103 ("libgcrypt" ,libgcrypt)
76277052 1104 ("libidn" ,libidn)
d5a748e8
AE
1105 ("libkate" ,libkate)
1106 ("libmad" ,libmad)
76277052 1107 ("libmatroska" ,libmatroska)
78d112c2 1108 ("libmicrodns" ,libmicrodns)
76277052
MW
1109 ("libmodplug" ,libmodplug)
1110 ("libmpeg2" ,libmpeg2)
d5a748e8
AE
1111 ("libogg" ,libogg)
1112 ("libpng" ,libpng)
76277052
MW
1113 ("libraw1394" ,libraw1394)
1114 ("librsvg" ,librsvg)
d5a748e8 1115 ("libsamplerate" ,libsamplerate)
76277052 1116 ("libsecret" ,libsecret)
d5a748e8 1117 ("libssh2" ,libssh2)
76277052
MW
1118 ("libupnp" ,libupnp)
1119 ("libva" ,libva)
1120 ("libvdpau" ,libvdpau)
d5a748e8 1121 ("libvorbis" ,libvorbis)
26986544 1122 ("libvpx" ,libvpx)
d5a748e8 1123 ("libtheora" ,libtheora)
76277052 1124 ("libx264" ,libx264)
d5a748e8 1125 ("libxext" ,libxext)
c161c22a 1126 ("libxi" ,libxi)
d5a748e8
AE
1127 ("libxinerama" ,libxinerama)
1128 ("libxml2" ,libxml2)
1129 ("libxpm" ,libxpm)
2aaa5729 1130 ("livemedia-utils" ,livemedia-utils)
76277052 1131 ("lua" ,lua-5.2)
d5a748e8
AE
1132 ("mesa" ,mesa)
1133 ("opus" ,opus)
1134 ("perl" ,perl)
1135 ("pulseaudio" ,pulseaudio)
fc2982f7 1136 ("protobuf" ,protobuf)
d5a748e8 1137 ("python" ,python-wrapper)
552c3e95 1138 ("qtbase" ,qtbase)
76277052 1139 ("qtsvg" ,qtsvg)
552c3e95 1140 ("qtx11extras" ,qtx11extras)
76277052 1141 ("samba" ,samba)
d5a748e8
AE
1142 ("sdl" ,sdl)
1143 ("sdl-image" ,sdl-image)
1144 ("speex" ,speex)
76277052
MW
1145 ("speexdsp" ,speexdsp)
1146 ("taglib" ,taglib)
1147 ("twolame" ,twolame)
1148 ("unzip" ,unzip)
1149 ("wayland" ,wayland)
1150 ("wayland-protocols" ,wayland-protocols)
8f5f6c92 1151 ("x265" ,x265)
d5a748e8
AE
1152 ("xcb-util-keysyms" ,xcb-util-keysyms)))
1153 (arguments
1154 `(#:configure-flags
eb1f2420 1155 `("CXXFLAGS=-std=gnu++11"
76277052 1156 "BUILDCC=gcc"
d5a748e8
AE
1157 ,(string-append "LDFLAGS=-Wl,-rpath -Wl,"
1158 (assoc-ref %build-inputs "ffmpeg")
cd76fbde
LC
1159 "/lib")) ;needed for the tests
1160
1161 #:phases
1162 (modify-phases %standard-phases
2d2e97bd 1163 (add-after 'unpack 'patch-source
2aaa5729
CL
1164 (lambda* (#:key inputs #:allow-other-keys)
1165 (let ((livemedia-utils (assoc-ref inputs "livemedia-utils")))
2d2e97bd 1166 (substitute* "configure"
2aaa5729
CL
1167 (("LIVE555_PREFIX=\\$\\{LIVE555_PREFIX-\"/usr\"\\}")
1168 (string-append "LIVE555_PREFIX=" livemedia-utils)))
2d2e97bd
MB
1169 ;; Some of the tests require using the display to test out VLC,
1170 ;; which fails in our sandboxed build system
1171 (substitute* "test/run_vlc.sh"
1172 (("./vlc --ignore-config") "echo"))
76277052
MW
1173
1174 ;; modules/text_renderer/freetype/text_layout.c uses a
1175 ;; now-deprecated interface 'fribidi_get_par_embedding_levels'
1176 ;; from fribidi.h, so for now we enable the use of deprecated
1177 ;; fribidi interfaces from this file.
1178 ;; FIXME: Try removing this for vlc >= 3.0.3.
1179 (substitute* "modules/text_renderer/freetype/text_layout.c"
1180 (("# define FRIBIDI_NO_DEPRECATED 1") ""))
1181
10384f88
LF
1182 ;; Fix build with libssh2 > 1.8.0:
1183 ;; <https://trac.videolan.org/vlc/ticket/22060>
1184 ;; <https://git.videolan.org/?p=vlc.git;a=commit;h=11449b5cd8b415768e010d9b7c1d6ba3cea21f82>
1185 (substitute* "modules/access/sftp.c"
1186 (("010801") "010900"))
2aaa5729 1187 #t)))
76277052 1188 (add-after 'strip 'regenerate-plugin-cache
cd76fbde
LC
1189 (lambda* (#:key outputs #:allow-other-keys)
1190 ;; The 'install-exec-hook' rule in the top-level Makefile.am
1191 ;; generates 'lib/vlc/plugins/plugins.dat', a plugin cache, using
1192 ;; 'vlc-cache-gen'. This file includes the mtime of the plugins
1193 ;; it references. Thus, we first reset the timestamps of all
1194 ;; these files, and then regenerate the cache such that the
1195 ;; mtimes it includes are always zero instead of being dependent
1196 ;; on the build time.
1197 (let* ((out (assoc-ref outputs "out"))
1198 (pkglibdir (string-append out "/lib/vlc"))
1199 (plugindir (string-append pkglibdir "/plugins"))
1200 (cachegen (string-append pkglibdir "/vlc-cache-gen")))
1201 ;; TODO: Factorize 'reset-timestamps'.
1202 (for-each (lambda (file)
1203 (let ((s (lstat file)))
1204 (unless (eq? (stat:type s) 'symlink)
76277052 1205 (utime file 1 1))))
cd76fbde 1206 (find-files plugindir))
76277052
MW
1207 (invoke cachegen plugindir))))
1208 (add-after 'install 'wrap-executable
1209 (lambda* (#:key outputs #:allow-other-keys)
1210 (let ((out (assoc-ref outputs "out"))
1211 (plugin-path (getenv "QT_PLUGIN_PATH")))
1212 (wrap-program (string-append out "/bin/vlc")
1213 `("QT_PLUGIN_PATH" ":" prefix (,plugin-path))))
1214 #t)))))
d5a748e8
AE
1215 (home-page "https://www.videolan.org/")
1216 (synopsis "Audio and video framework")
1217 (description "VLC is a cross-platform multimedia player and framework
1218that plays most multimedia files as well as DVD, Audio CD, VCD, and various
34a19d35 1219streaming protocols.")
ae0bdd81 1220 (license license:gpl2+)))
ace69243
AE
1221
1222(define-public mplayer
1223 (package
1224 (name "mplayer")
e71b20e5 1225 (version "1.3.0")
ace69243
AE
1226 (source (origin
1227 (method url-fetch)
1228 (uri (string-append
ebde7c7a 1229 "https://www.mplayerhq.hu/MPlayer/releases/MPlayer-"
ace69243
AE
1230 version ".tar.xz"))
1231 (sha256
1232 (base32
e71b20e5 1233 "0hwqn04bdknb2ic88xd75smffxx63scvz0zvwvjb56nqj9n89l1s"))))
ace69243
AE
1234 (build-system gnu-build-system)
1235 ;; FIXME: Add additional inputs once available.
1236 (native-inputs
1237 `(("pkg-config" ,pkg-config)))
1238 (inputs
1239 `(("alsa-lib" ,alsa-lib)
1240 ("cdparanoia" ,cdparanoia)
21e6428d 1241 ("ffmpeg" ,ffmpeg-3.4)
778a6a8b 1242 ("fontconfig" ,fontconfig)
ace69243 1243 ("freetype" ,freetype)
778a6a8b 1244;; ("giflib" ,giflib) ; uses QuantizeBuffer, requires version >= 5
ace69243 1245 ("lame" ,lame)
778a6a8b 1246 ("libass" ,libass)
b3546174
MW
1247 ("libdvdcss" ,libdvdcss)
1248 ("libdvdnav" ,libdvdnav)
ace69243 1249 ("libjpeg" ,libjpeg)
778a6a8b
EF
1250 ("libmpeg2" ,libmpeg2)
1251 ("libmpg123" ,mpg123) ; audio codec for MP3
ace69243
AE
1252 ("libpng" ,libpng)
1253 ("libtheora" ,libtheora)
778a6a8b 1254 ("libvdpau" ,libvdpau)
ace69243
AE
1255 ("libvorbis" ,libvorbis)
1256 ("libx11" ,libx11)
778a6a8b 1257 ("libx264" ,libx264)
ace69243
AE
1258 ("libxinerama" ,libxinerama)
1259 ("libxv" ,libxv)
778a6a8b 1260 ("libxxf86dga" ,libxxf86dga)
ace69243 1261 ("mesa" ,mesa)
778a6a8b 1262 ("opus" ,opus)
ace69243
AE
1263 ("perl" ,perl)
1264 ("pulseaudio" ,pulseaudio)
1265 ("python" ,python-wrapper)
1266 ("sdl" ,sdl)
1267 ("speex" ,speex)
1268 ("yasm" ,yasm)
1269 ("zlib" ,zlib)))
1270 (arguments
1271 `(#:tests? #f ; no test target
1272 #:phases
ebde7c7a
EF
1273 (modify-phases %standard-phases
1274 (replace 'configure
ace69243
AE
1275 ;; configure does not work followed by "SHELL=..." and
1276 ;; "CONFIG_SHELL=..."; set environment variables instead
1277 (lambda* (#:key inputs outputs #:allow-other-keys)
1278 (let ((out (assoc-ref outputs "out"))
1279 (libx11 (assoc-ref inputs "libx11")))
1280 (substitute* "configure"
2564b7c2 1281 (("#! /bin/sh") (string-append "#!" (which "sh"))))
ace69243
AE
1282 (setenv "SHELL" (which "bash"))
1283 (setenv "CONFIG_SHELL" (which "bash"))
1fe5791d 1284 (invoke "./configure"
ace69243
AE
1285 (string-append "--extra-cflags=-I"
1286 libx11 "/include") ; to detect libx11
ebde7c7a 1287 "--disable-ffmpeg_a" ; disables bundled ffmpeg
ace69243 1288 (string-append "--prefix=" out)
fe138965
MW
1289 ;; Enable runtime cpu detection where supported,
1290 ;; and choose a suitable target.
1291 ,@(match (or (%current-target-system)
1292 (%current-system))
1293 ("x86_64-linux"
1294 '("--enable-runtime-cpudetection"
1295 "--target=x86_64-linux"))
1296 ("i686-linux"
1297 '("--enable-runtime-cpudetection"
1298 "--target=i686-linux"))
1299 ("mips64el-linux"
f0d6d835
MW
1300 '("--target=mips3-linux"))
1301 (_ (list (string-append
1302 "--target="
1303 (or (%current-target-system)
1304 (nix-system->gnu-triplet
1305 (%current-system)))))))
1fe5791d 1306 "--disable-iwmmxt")))))))
ebde7c7a 1307 (home-page "https://www.mplayerhq.hu/design7/news.html")
ace69243
AE
1308 (synopsis "Audio and video player")
1309 (description "MPlayer is a movie player. It plays most MPEG/VOB, AVI,
1310Ogg/OGM, VIVO, ASF/WMA/WMV, QT/MOV/MP4, RealMedia, Matroska, NUT,
1311NuppelVideo, FLI, YUV4MPEG, FILM, RoQ, PVA files. One can watch VideoCD,
1312SVCD, DVD, 3ivx, DivX 3/4/5, WMV and H.264 movies.")
ae0bdd81 1313 (license license:gpl2)))
d0ed39be 1314
1c1178cd
TUBK
1315(define-public mpv
1316 (package
1317 (name "mpv")
cd81c9e2 1318 (version "0.29.1")
1c1178cd 1319 (source (origin
ce4ac7d5
RW
1320 (method git-fetch)
1321 (uri (git-reference
1322 (url "https://github.com/mpv-player/mpv.git")
1323 (commit (string-append "v" version))))
1324 (file-name (git-file-name name version))
1c1178cd
TUBK
1325 (sha256
1326 (base32
ce4ac7d5 1327 "138921kx8g6qprim558xin09xximjhsj9ss8b71ifg2m6kclym8m"))))
1c1178cd
TUBK
1328 (build-system waf-build-system)
1329 (native-inputs
832d60dc 1330 `(("perl" ,perl) ; for zsh completion file
1c1178cd
TUBK
1331 ("pkg-config" ,pkg-config)
1332 ("python-docutils" ,python-docutils)))
3440f12a 1333 ;; Missing features: libguess, V4L2
1c1178cd
TUBK
1334 (inputs
1335 `(("alsa-lib" ,alsa-lib)
1336 ("enca" ,enca)
06079c19 1337 ("ffmpeg" ,ffmpeg)
2d8781a4 1338 ("jack" ,jack-1)
1c1178cd
TUBK
1339 ("ladspa" ,ladspa)
1340 ("lcms" ,lcms)
1341 ("libass" ,libass)
1342 ("libbluray" ,libbluray)
1343 ("libcaca" ,libcaca)
1344 ("libbs2b" ,libbs2b)
1345 ("libcdio-paranoia" ,libcdio-paranoia)
1346 ("libdvdread" ,libdvdread)
1347 ("libdvdnav" ,libdvdnav)
1348 ("libjpeg" ,libjpeg)
1349 ("libva" ,libva)
81c29ccc 1350 ("libvdpau" ,libvdpau)
1c1178cd
TUBK
1351 ("libx11" ,libx11)
1352 ("libxext" ,libxext)
1353 ("libxinerama" ,libxinerama)
1354 ("libxrandr" ,libxrandr)
1355 ("libxscrnsaver" ,libxscrnsaver)
1356 ("libxv" ,libxv)
e66f0dd2
AP
1357 ;; XXX: lua > 5.2 is not currently supported; see
1358 ;; waftools/checks/custom.py
1359 ("lua" ,lua-5.2)
1c1178cd
TUBK
1360 ("mesa" ,mesa)
1361 ("mpg123" ,mpg123)
1362 ("pulseaudio" ,pulseaudio)
1363 ("rsound" ,rsound)
870541d6 1364 ("shaderc" ,shaderc)
08899ee9 1365 ("vulkan-headers" ,vulkan-headers)
e6fcf903 1366 ("vulkan-loader" ,vulkan-loader)
f0b8d83a 1367 ("waf" ,python-waf)
3440f12a 1368 ("wayland" ,wayland)
abc5ef5a 1369 ("wayland-protocols" ,wayland-protocols)
c695fb76 1370 ("libxkbcommon" ,libxkbcommon)
1c1178cd
TUBK
1371 ("youtube-dl" ,youtube-dl)
1372 ("zlib" ,zlib)))
1373 (arguments
1374 '(#:phases
1375 (modify-phases %standard-phases
3df69aaf
TE
1376 (add-after
1377 'unpack 'patch-paths
1378 (lambda* (#:key inputs #:allow-other-keys)
1379 (let ((ytdl (assoc-ref inputs "youtube-dl")))
1380 (substitute* "player/lua/ytdl_hook.lua"
1381 (("\"youtube-dl\",")
1382 (string-append "\"" ytdl "/bin/youtube-dl\",")))
1383 #t)))
1c1178cd 1384 (add-before
f8503e2b 1385 'configure 'setup-waf
1c1178cd 1386 (lambda* (#:key inputs #:allow-other-keys)
a2aa746c
EF
1387 (let ((waf (assoc-ref inputs "waf")))
1388 (copy-file (string-append waf "/bin/waf") "waf"))
d39260dc
MW
1389 (setenv "CC" "gcc")
1390 #t)))
98c8b963 1391 #:configure-flags (list "--enable-libmpv-shared"
43ba5dd4
EF
1392 "--enable-cdda"
1393 "--enable-dvdread"
1394 "--enable-dvdnav"
98c8b963
EF
1395 "--enable-zsh-comp"
1396 "--disable-build-date")
1c1178cd
TUBK
1397 ;; No check function defined.
1398 #:tests? #f))
581873b5 1399 (home-page "https://mpv.io/")
1c1178cd
TUBK
1400 (synopsis "Audio and video player")
1401 (description "mpv is a general-purpose audio and video player. It is a
1402fork of mplayer2 and MPlayer. It shares some features with the former
1403projects while introducing many more.")
ae0bdd81 1404 (license license:gpl2+)))
1c1178cd 1405
0e74bb5b
AG
1406(define-public gnome-mpv
1407 (package
1408 (name "gnome-mpv")
7a66d8a4 1409 (version "0.16")
0e74bb5b
AG
1410 (source
1411 (origin
1412 (method url-fetch)
1413 (uri (string-append "https://github.com/gnome-mpv/gnome-mpv/releases"
1414 "/download/v" version "/gnome-mpv-" version
1415 ".tar.xz"))
1416 (sha256
1417 (base32
7a66d8a4 1418 "0jzdzvhcqp5jp1inwk2466zf7r8iimk3x69066gl8mzaay98mk92"))))
0e74bb5b
AG
1419 (native-inputs
1420 `(("intltool" ,intltool)
1421 ("pkg-config" ,pkg-config)))
1422 (inputs
1423 `(("gtk+" ,gtk+)
1424 ("libepoxy" ,libepoxy)
1425 ("mpv" ,mpv)))
1426 (build-system glib-or-gtk-build-system)
1427 (home-page "https://github.com/gnome-mpv/gnome-mpv")
1428 (synopsis "GTK+ frontend for the mpv media player")
1429 (description "GNOME MPV is a simple GTK+ frontend for the mpv media player.
1430GNOME MPV interacts with mpv via the client API exported by libmpv, allowing
1431access to mpv's powerful playback capabilities.")
1432 (license license:gpl3+)))
1433
d0ed39be
DT
1434(define-public libvpx
1435 (package
1436 (name "libvpx")
a2427761 1437 (version "1.8.1")
d0ed39be 1438 (source (origin
8a464433
MB
1439 ;; XXX: Upstream does not provide tarballs for > 1.6.1.
1440 (method git-fetch)
1441 (uri (git-reference
1442 (url "https://chromium.googlesource.com/webm/libvpx")
1443 (commit (string-append "v" version))))
1444 (file-name (git-file-name name version))
d0ed39be
DT
1445 (sha256
1446 (base32
a2427761 1447 "0mm1dcfa268rwsrgzqpbbgq4lwrvdzgp90h9dxsnkhai70l7gipq"))
037d5913 1448 (patches (search-patches "libvpx-CVE-2016-2818.patch"))))
d0ed39be
DT
1449 (build-system gnu-build-system)
1450 (arguments
e896c227 1451 `(#:configure-flags (list "--enable-shared"
0e47b4e7
EF
1452 "--as=yasm"
1453 ;; Limit size to avoid CVE-2015-1258
1454 "--size-limit=16384x16384"
e896c227
MB
1455 (string-append "--prefix=" (assoc-ref %outputs "out")))
1456 #:make-flags (list (string-append "LDFLAGS=-Wl,-rpath="
1457 (assoc-ref %outputs "out") "/lib"))
1458 #:phases (modify-phases %standard-phases
1459 (replace 'configure
1460 (lambda* (#:key configure-flags #:allow-other-keys)
1461 ;; The configure script does not understand some of the GNU
1462 ;; options, so we only add the flags specified above.
1463 (apply invoke "./configure" configure-flags))))
4f8f15cd 1464 #:tests? #f)) ; no check target
d0ed39be
DT
1465 (native-inputs
1466 `(("perl" ,perl)
1467 ("yasm" ,yasm)))
1468 (synopsis "VP8/VP9 video codec")
1469 (description "libvpx is a codec for the VP8/VP9 video compression format.")
ae0bdd81 1470 (license license:bsd-3)
ad7664f6 1471 (home-page "https://www.webmproject.org/")))
615215a5 1472
037d5913
MB
1473;; GNU IceCat fails to build against 1.8.0, so keep this version for now.
1474(define-public libvpx-1.7
1475 (package
1476 (inherit libvpx)
1477 (version "1.7.0")
1478 (source (origin
1479 (inherit (package-source libvpx))
1480 (uri (git-reference
1481 (url "https://chromium.googlesource.com/webm/libvpx")
1482 (commit (string-append "v" version))))
1483 (file-name (git-file-name "libvpx" version))
1484 (sha256
1485 (base32
1486 "0vvh89hvp8qg9an9vcmwb7d9k3nixhxaz6zi65qdjnd0i56kkcz6"))
1487 (patches
1488 (append
1489 (origin-patches (package-source libvpx))
1490 (search-patches "libvpx-use-after-free-in-postproc.patch")))))))
1491
615215a5
LC
1492(define-public youtube-dl
1493 (package
1494 (name "youtube-dl")
e8cfac22 1495 (version "2019.09.12")
615215a5
LC
1496 (source (origin
1497 (method url-fetch)
ff1d80f3
EF
1498 (uri (string-append "https://github.com/ytdl-org/youtube-dl/"
1499 "releases/download/" version "/youtube-dl-"
615215a5
LC
1500 version ".tar.gz"))
1501 (sha256
1502 (base32
e8cfac22 1503 "0wmc0rl4l08hnz3agh69ld1pcmjs7czg0d2k7mnnlxhwlwi38w56"))))
615215a5 1504 (build-system python-build-system)
2ad9515c
AV
1505 (arguments
1506 ;; The problem here is that the directory for the man page and completion
1507 ;; files is relative, and for some reason, setup.py uses the
1508 ;; auto-detected sys.prefix instead of the user-defined "--prefix=FOO".
1509 ;; So, we need pass the prefix directly. In addition, make sure the Bash
1510 ;; completion file is called 'youtube-dl' rather than
1511 ;; 'youtube-dl.bash-completion'.
31c58006
LF
1512 `(#:tests? #f ; Many tests fail. The test suite can be run with pytest.
1513 #:phases (modify-phases %standard-phases
2ad9515c
AV
1514 (add-before 'install 'fix-the-data-directories
1515 (lambda* (#:key outputs #:allow-other-keys)
1516 (let ((prefix (assoc-ref outputs "out")))
1517 (mkdir "bash-completion")
1518 (rename-file "youtube-dl.bash-completion"
1519 "bash-completion/youtube-dl")
1520 (substitute* "setup.py"
1521 (("youtube-dl\\.bash-completion")
1522 "bash-completion/youtube-dl")
1523 (("'etc/")
1524 (string-append "'" prefix "/etc/"))
1525 (("'share/")
caa8de70
TGR
1526 (string-append "'" prefix "/share/")))
1527 #t))))))
615215a5
LC
1528 (synopsis "Download videos from YouTube.com and other sites")
1529 (description
b798dfde 1530 "Youtube-dl is a small command-line program to download videos from
1c911690 1531YouTube.com and many more sites.")
39dc7032 1532 (home-page "https://yt-dl.org")
ae0bdd81 1533 (license license:public-domain)))
e6bdb36a 1534
794223bc
CM
1535(define-public youtube-dl-gui
1536 (package
1537 (name "youtube-dl-gui")
1538 (version "0.3.8")
1539 (source
1540 (origin
1541 (method url-fetch)
1542 (uri (pypi-uri "Youtube-DLG" version))
1543 (sha256
1544 (base32
1545 "0napxwzgls5ik1bxbp99vly32l23xpc4ng5kr24hfhf21ypjyadb"))))
1546 (build-system python-build-system)
1547 (arguments
1548 ;; In Guix, wxpython has not yet been packaged for Python 3.
1549 `(#:python ,python-2
1550 ;; This package has no tests.
1551 #:tests? #f
1552 #:phases
1553 (modify-phases %standard-phases
1554 (add-before 'build 'patch-source
1555 (lambda* (#:key inputs #:allow-other-keys)
1556 ;; The youtube-dl-gui program lets you configure options. Some of
1557 ;; them are problematic, so we change their defaults.
1558 (substitute* "youtube_dl_gui/optionsmanager.py"
1559 ;; When this is true, the builder process will try (and fail) to
1560 ;; write logs to the builder user's home directory.
1561 (("'enable_log': True") "'enable_log': False")
1562 ;; This determines which youtube-dl program youtube-dl-gui will
1563 ;; run. If we don't set this, then youtube-dl-gui might download
1564 ;; an arbitrary copy from the Internet into the user's home
1565 ;; directory and run it, so let's make sure youtube-dl-gui uses
1566 ;; the youtube-dl from the inputs by default.
1567 (("'youtubedl_path': self.config_path")
1568 (string-append "'youtubedl_path': '"
1569 (assoc-ref inputs "youtube-dl")
1570 "/bin'"))
1571 ;; When this is True, when youtube-dl-gui is finished downloading
1572 ;; a file, it will try (and possibly fail) to open the directory
1573 ;; containing the downloaded file. This can fail because it
1574 ;; assumes that xdg-open is in PATH. Unfortunately, simply
1575 ;; adding xdg-utils to the propagated inputs is not enough to
1576 ;; make this work, so for now we set the default to False.
1577 (("'open_dl_dir': True") "'open_dl_dir': False"))
1578 ;; The youtube-dl program from the inputs is actually a wrapper
1579 ;; script written in bash, so attempting to invoke it as a python
1580 ;; script will fail.
1581 (substitute* "youtube_dl_gui/downloaders.py"
1582 (("cmd = \\['python', self\\.youtubedl_path\\]")
1583 "cmd = [self.youtubedl_path]"))
1584 ;; Use relative paths for installing data files so youtube-dl-gui
1585 ;; installs the files relative to its prefix in the store, rather
1586 ;; than relative to /. Also, instead of installing data files into
1587 ;; $prefix/usr/share, install them into $prefix/share for
1588 ;; consistency (see: (standards) Directory Variables).
1589 (substitute* "setup.py"
1590 (("= '/usr/share") "= 'share"))
1591 ;; Update get_locale_file() so it finds the installed localization
1592 ;; files.
1593 (substitute* "youtube_dl_gui/utils.py"
1594 (("os\\.path\\.join\\('/usr', 'share'")
1595 (string-append "os.path.join('"
1596 (assoc-ref %outputs "out")
9dcfd6aa 1597 "', 'share'")))
db37dd91
TGR
1598 #t))
1599 (add-after 'install 'create-desktop-file
1600 (lambda* (#:key outputs #:allow-other-keys)
1601 (let* ((out (assoc-ref outputs "out"))
1602 (applications (string-append out "/share/applications")))
1603 (mkdir-p applications)
1604 (call-with-output-file
1605 (string-append applications "/youtube-dl-gui.desktop")
1606 (lambda (file)
1607 (format
1608 file
1609 "[Desktop Entry]~@
1610 Name=Youtube-dl GUI~@
1611 Comment=Graphical interface to download video with youtube-dl~@
1612 Exec=youtube-dl-gui~@
1613 TryExec=youtube-dl-gui~@
1614 Terminal=false~@
1615 Icon=youtube-dl-gui~@
1616 Type=Application~@
1617 Categories=AudioVideo;Audio;Video;Network~%")))
1618 #t))))))
794223bc
CM
1619 (inputs
1620 `(("python2-wxpython" ,python2-wxpython)
1621 ("youtube-dl" ,youtube-dl)))
1622 (home-page "https://github.com/MrS0m30n3/youtube-dl-gui")
1623 (synopsis
1624 "GUI (Graphical User Interface) for @command{youtube-dl}")
1625 (description
1626 "Youtube-dlG is a GUI (Graphical User Interface) for
1627@command{youtube-dl}. You can use it to download videos from YouTube and any
1628other site that youtube-dl supports.")
1629 (license license:unlicense)))
1630
72fa6667
FS
1631(define-public you-get
1632 (package
1633 (name "you-get")
82ebb785 1634 (version "0.4.1328")
72fa6667 1635 (source (origin
5d9e3edd
RW
1636 (method git-fetch)
1637 (uri (git-reference
1638 (url "https://github.com/soimort/you-get.git")
1639 (commit (string-append "v" version))))
1640 (file-name (git-file-name name version))
72fa6667
FS
1641 (sha256
1642 (base32
82ebb785 1643 "1r9qffwvxmp74byva12h2jsn3n33vyim052sx9lykv5dygibbp65"))))
72fa6667 1644 (build-system python-build-system)
72fa6667 1645 (inputs
5e84eab0
TGR
1646 `(("ffmpeg" ,ffmpeg))) ; for multi-part and >=1080p videos
1647 (arguments
1648 `(#:phases
1649 (modify-phases %standard-phases
1650 (add-after 'unpack 'qualify-input-references
1651 ;; Explicitly invoke the input ffmpeg, instead of whichever one
1652 ;; happens to be in the user's $PATH at run time.
1653 (lambda* (#:key inputs #:allow-other-keys)
1654 (let ((ffmpeg (string-append (assoc-ref inputs "ffmpeg")
1655 "/bin/ffmpeg")))
1656 (substitute* "src/you_get/processor/ffmpeg.py"
1657 ;; Don't blindly replace all occurrences of ‘'ffmpeg'’: the
1658 ;; same string is also used when sniffing ffmpeg's output.
1659 (("(FFMPEG == |\\()'ffmpeg'" _ prefix)
1660 (string-append prefix "'" ffmpeg "'")))
1661 #t))))
1662 #:tests? #f)) ; XXX some tests need Internet access
817e91bc 1663 (synopsis "Download videos, audio, or images from Web sites")
72fa6667
FS
1664 (description
1665 "You-Get is a command-line utility to download media contents (videos,
1666audio, images) from the Web. It can use either mpv or vlc for playback.")
1667 (home-page "https://you-get.org/")
1668 (license license:expat)))
1669
6f45e45d
AV
1670(define-public youtube-viewer
1671 (package
1672 (name "youtube-viewer")
7b957a33 1673 (version "3.5.4")
6f45e45d 1674 (source (origin
6be44578
TGR
1675 (method git-fetch)
1676 (uri (git-reference
1677 (url "https://github.com/trizen/youtube-viewer.git")
1678 (commit version)))
1679 (file-name (git-file-name name version))
6f45e45d
AV
1680 (sha256
1681 (base32
7b957a33 1682 "1j782m9rximybamd0qsc43hi7hgk333x9gy3ypzb61s0sifs0i6m"))))
6f45e45d
AV
1683 (build-system perl-build-system)
1684 (native-inputs
1685 `(("perl-module-build" ,perl-module-build)))
1686 ;; FIXME: Add optional dependencies once available:
1687 ;; perl-lwp-useragent-cached and perl-term-readline-gnu
1688 (inputs
1689 `(("perl-data-dump" ,perl-data-dump)
1690 ("perl-file-sharedir" ,perl-file-sharedir)
1691 ("perl-gtk2" ,perl-gtk2)
1692 ("perl-json" ,perl-json)
1693 ("perl-libwww" ,perl-libwww)
1694 ("perl-lwp-protocol-https" ,perl-lwp-protocol-https)
1695 ("perl-mozilla-ca" ,perl-mozilla-ca)
58637415
TGR
1696 ("perl-unicode-linebreak" ,perl-unicode-linebreak)
1697
1698 ;; Some videos play without youtube-dl, but others silently fail to.
1699 ("youtube-dl" ,youtube-dl)))
6f45e45d
AV
1700 (arguments
1701 `(#:modules ((guix build perl-build-system)
1702 (guix build utils)
1703 (srfi srfi-26))
1704 #:module-build-flags '("--gtk")
63d99002
AV
1705 #:phases
1706 (modify-phases %standard-phases
58637415
TGR
1707 (add-after 'unpack 'refer-to-inputs
1708 (lambda* (#:key inputs #:allow-other-keys)
1709 (substitute* "lib/WWW/YoutubeViewer.pm"
1710 (("'youtube-dl'")
1711 (format #f "'~a/bin/youtube-dl'"
1712 (assoc-ref inputs "youtube-dl"))))
1713 #t))
0dd8da0b
EB
1714 (add-after 'install 'install-desktop
1715 (lambda* (#:key outputs #:allow-other-keys)
1716 (let* ((out (assoc-ref outputs "out"))
1717 (sharedir (string-append out "/share")))
1718 (install-file "share/gtk-youtube-viewer.desktop"
1719 (string-append sharedir "/applications"))
1720 (install-file "share/icons/gtk-youtube-viewer.png"
1721 (string-append sharedir "/pixmaps"))
1722 #t)))
63d99002
AV
1723 (add-after 'install 'wrap-program
1724 (lambda* (#:key outputs #:allow-other-keys)
1725 (let* ((out (assoc-ref outputs "out"))
1726 (bin-dir (string-append out "/bin/"))
1727 (site-dir (string-append out "/lib/perl5/site_perl/"))
1728 (lib-path (getenv "PERL5LIB")))
1729 (for-each (cut wrap-program <>
1730 `("PERL5LIB" ":" prefix (,lib-path ,site-dir)))
1731 (find-files bin-dir))
1732 #t))))))
6f45e45d
AV
1733 (synopsis
1734 "Lightweight application for searching and streaming videos from YouTube")
1735 (description
1736 "Youtube-viewer searches and plays YouTube videos in a native player.
1737It comes with various search options; it can search for videos, playlists
1738and/or channels. The videos are streamed directly in a selected video player
1739at the best resolution (customizable) and with closed-captions (if available).
1740Both command-line and GTK2 interface are available.")
1741 (home-page "https://github.com/trizen/youtube-viewer")
1742 (license license:perl-license)))
1743
5d3609e4
TUBK
1744(define-public libbluray
1745 (package
1746 (name "libbluray")
004450f4 1747 (version "1.0.2")
5d3609e4
TUBK
1748 (source (origin
1749 (method url-fetch)
5e3f68e6 1750 (uri (string-append "https://download.videolan.org/videolan/"
5d3609e4
TUBK
1751 name "/" version "/"
1752 name "-" version ".tar.bz2"))
1753 (sha256
1754 (base32
004450f4 1755 "1zxfnw1xbghcj7b3zz5djndv6gwssxda19cz1lrlqrkg8577r7kd"))))
5d3609e4 1756 (build-system gnu-build-system)
6c0cd765 1757 (arguments
d76e2634 1758 `(#:configure-flags '("--disable-bdjava-jar")
6c0cd765
AP
1759 #:phases
1760 (modify-phases %standard-phases
004450f4
TGR
1761 (add-after 'unpack 'refer-to-libxml2-in-.pc-file
1762 ;; Avoid the need to propagate libxml2 by referring to it
1763 ;; directly, as is already done for fontconfig & freetype.
1764 (lambda* (#:key inputs #:allow-other-keys)
1765 (let ((libxml2 (assoc-ref inputs "libxml2")))
1766 (substitute* "configure"
1767 ((" libxml-2.0") ""))
1768 (substitute* "src/libbluray.pc.in"
1769 (("^Libs.private:" field)
1770 (string-append field " -L" libxml2 "/lib -lxml2")))
1771 #t)))
6c0cd765
AP
1772 (add-before 'build 'fix-dlopen-paths
1773 (lambda* (#:key inputs #:allow-other-keys)
1774 (let ((libaacs (assoc-ref inputs "libaacs"))
1775 (libbdplus (assoc-ref inputs "libbdplus")))
1776 (substitute* "src/libbluray/disc/aacs.c"
1777 (("\"libaacs\"")
1778 (string-append "\"" libaacs "/lib/libaacs\"")))
1779 (substitute* "src/libbluray/disc/bdplus.c"
1780 (("\"libbdplus\"")
1781 (string-append "\"" libbdplus "/lib/libbdplus\"")))
1782 #t))))))
2da45ebe 1783 (native-inputs `(("pkg-config" ,pkg-config)))
5d3609e4 1784 (inputs
71ee51a0 1785 `(("fontconfig" ,fontconfig)
5d3609e4 1786 ("freetype" ,freetype)
6c0cd765
AP
1787 ("libaacs" ,libaacs)
1788 ("libbdplus" ,libbdplus)
71ee51a0 1789 ("libxml2" ,libxml2)))
5e3f68e6 1790 (home-page "https://www.videolan.org/developers/libbluray.html")
5d3609e4
TUBK
1791 (synopsis "Blu-Ray Disc playback library")
1792 (description
1793 "libbluray is a library designed for Blu-Ray Disc playback for media
1794players, like VLC or MPlayer.")
ae0bdd81 1795 (license license:lgpl2.1+)))
5d3609e4 1796
e6bdb36a
AE
1797(define-public libdvdread
1798 (package
1799 (name "libdvdread")
ff7559d6 1800 (version "6.0.1")
e6bdb36a
AE
1801 (source (origin
1802 (method url-fetch)
b8a31908 1803 (uri (string-append "https://download.videolan.org/videolan/"
767b4427
TGR
1804 "libdvdread/" version "/"
1805 "libdvdread-" version ".tar.bz2"))
e6bdb36a
AE
1806 (sha256
1807 (base32
ff7559d6 1808 "1gfmh8ii3s2fw1c8vn57piwxc0smd3va4h7xgp9s8g48cc04zki8"))))
e6bdb36a 1809 (build-system gnu-build-system)
e21f3473
RJ
1810 (arguments
1811 `(#:configure-flags '("--with-libdvdcss=yes")))
1812 (native-inputs
1813 `(("pkg-config" ,pkg-config)))
1814 (propagated-inputs
1815 `(("libdvdcss" ,libdvdcss)))
e6bdb36a
AE
1816 (home-page "http://dvdnav.mplayerhq.hu/")
1817 (synopsis "Library for reading video DVDs")
1818 (description
1819 "Libdvdread provides a simple foundation for reading DVD video
1820disks. It provides the functionality that is required to access many
1821DVDs. It parses IFO files, reads NAV-blocks, and performs CSS
1822authentication and descrambling (if an external libdvdcss library is
1823installed).")
ae0bdd81 1824 (license license:gpl2+)))
b027d919 1825
b5b20bda
TD
1826(define-public dvdauthor
1827 (package
1828 (name "dvdauthor")
1829 (version "0.7.2")
1830 (source
1831 (origin
1832 (method url-fetch)
1833 (uri (string-append "mirror://sourceforge/dvdauthor/dvdauthor-"
1834 version ".tar.gz"))
1835 (sha256
1836 (base32
1837 "1drfc47hikfzc9d7hjk34rw10iqw01d2vwmn91pv73ppx4nsj81h"))))
1838 (build-system gnu-build-system)
1839 (inputs
1840 `(("libdvdread" ,libdvdread)
1841 ("libpng" ,libpng)
1842 ("imagemagick" ,imagemagick)
1843 ("libxml2" ,libxml2)
1844 ("freetype" ,freetype)))
1845 (native-inputs
1846 `(("pkg-config" ,pkg-config)))
1847 (synopsis "Generates a DVD-Video movie from a MPEG-2 stream")
1848 (description "@command{dvdauthor} will generate a DVD-Video movie from a
1849MPEG-2 stream containing VOB packets.")
1850 (home-page "http://dvdauthor.sourceforge.net")
1851 (license license:gpl3+)))
1852
b027d919
AE
1853(define-public libdvdnav
1854 (package
1855 (name "libdvdnav")
0976ea38 1856 (version "6.0.0")
b027d919
AE
1857 (source (origin
1858 (method url-fetch)
b8a31908 1859 (uri (string-append "https://download.videolan.org/videolan/"
b027d919
AE
1860 name "/" version "/"
1861 name "-" version ".tar.bz2"))
1862 (sha256
1863 (base32
0976ea38 1864 "062njcksmpgw9yv3737qkf93r2pzhaxi9szqjabpa8d010dp38ph"))))
b027d919
AE
1865 (build-system gnu-build-system)
1866 (native-inputs
1867 `(("pkg-config" ,pkg-config)))
1868 (inputs
1869 `(("libdvdread" ,libdvdread)))
1870 (home-page "http://dvdnav.mplayerhq.hu/")
1871 (synopsis "Library for video DVD navigation features")
1872 (description
1873 "Libdvdnav is a library for developers of multimedia
1874applications. It allows easy use of sophisticated DVD navigation features
1875such as DVD menus, multiangle playback and even interactive DVD games. All
1876this functionality is provided through a simple API which provides the DVD
1877playback as a single logical stream of blocks, intermitted by special
1878dvdnav events to report certain conditions. The main usage of libdvdnav is
1879a loop regularly calling a function to get the next block, surrounded by
1880additional calls to tell the library of user interaction. The whole
1881DVD virtual machine and internal playback states are completely
1882encapsulated.")
ae0bdd81 1883 (license license:gpl2+)))
2cd85cf9 1884
a6f710ec
TUBK
1885(define-public libdvdcss
1886 (package
1887 (name "libdvdcss")
c77fb2d6 1888 (version "1.4.2")
a6f710ec
TUBK
1889 (source (origin
1890 (method url-fetch)
b8a31908 1891 (uri (string-append "https://download.videolan.org/pub/"
a6f710ec
TUBK
1892 name "/" version "/"
1893 name "-" version ".tar.bz2"))
1894 (sha256
1895 (base32
c77fb2d6 1896 "0x957zzpf4w2cp8zlk29prj8i2q6hay3lzdzsyz8y3cwxivyvhkq"))))
a6f710ec 1897 (build-system gnu-build-system)
b8a31908 1898 (home-page "https://www.videolan.org/developers/libdvdcss.html")
a6f710ec
TUBK
1899 (synopsis "Library for accessing DVDs as block devices")
1900 (description
1901 "libdvdcss is a simple library designed for accessing DVDs like a block
1902device without having to bother about the decryption.")
ae0bdd81 1903 (license license:gpl2+)))
a6f710ec 1904
2cd85cf9
DT
1905(define-public srt2vtt
1906 (package
1907 (name "srt2vtt")
1908 (version "0.1")
1909 (source (origin
1910 (method url-fetch)
1911 (uri (string-append
152fc959 1912 "https://files.dthompson.us/srt2vtt/srt2vtt-"
2cd85cf9
DT
1913 version ".tar.gz"))
1914 (sha256
1915 (base32
1916 "16b377znjm6qlga5yb8aj7b7bcisa1ghcnj2lrb1d30lvxp4liif"))))
1917 (build-system gnu-build-system)
1918 (inputs
1919 `(("guile" ,guile-2.0)))
1920 (synopsis "SubRip to WebVTT subtitle converter")
1921 (description "srt2vtt converts SubRip formatted subtitles to WebVTT format
1922for use with HTML5 video.")
373cc3b7 1923 (home-page "https://dthompson.us/projects/srt2vtt.html")
ae0bdd81 1924 (license license:gpl3+)))
44726031
AE
1925
1926(define-public avidemux
1927 (package
1928 (name "avidemux")
37f62896 1929 (version "2.7.3")
44726031
AE
1930 (source (origin
1931 (method url-fetch)
1932 (uri (string-append
7d3ac6c0
TGR
1933 "mirror://sourceforge/avidemux/avidemux/" version "/"
1934 "avidemux_" version ".tar.gz"))
44726031
AE
1935 (sha256
1936 (base32
37f62896 1937 "17x2mnnr5h8pp764p55l1xcn2ljnzhbj8cykajlllvk4rc4qwxld"))
fc1adab1 1938 (patches (search-patches "avidemux-install-to-lib.patch"))))
44726031
AE
1939 (build-system cmake-build-system)
1940 (native-inputs
1941 `(("pkg-config" ,pkg-config)))
1942 ;; FIXME: Once packaged, add libraries not found during the build.
1943 (inputs
1944 `(("alsa-lib" ,alsa-lib)
1945 ("fontconfig" ,fontconfig)
1946 ("freetype" ,freetype)
1947 ("fribidi" ,fribidi)
1948 ("glu" ,glu)
44726031
AE
1949 ("jack" ,jack-1)
1950 ("lame" ,lame)
4cafe8ad
EF
1951 ("libva" ,libva)
1952 ("libvdpau" ,libvdpau)
44726031
AE
1953 ("libvorbis" ,libvorbis)
1954 ("libvpx" ,libvpx)
1955 ("libxv" ,libxv)
1956 ("perl" ,perl)
1957 ("pulseaudio" ,pulseaudio)
1958 ("python" ,python-wrapper)
3261a732
EF
1959 ("qtbase" ,qtbase)
1960 ("qttools" ,qttools)
44726031
AE
1961 ("sdl" ,sdl)
1962 ("sqlite" ,sqlite)
1963 ("yasm" ,yasm)
1964 ("zlib" ,zlib)))
1965 (arguments
37f62896 1966 `(#:tests? #f ; no check target
44726031
AE
1967 #:phases
1968 ;; Make sure files inside the included ffmpeg tarball are
1969 ;; patch-shebanged.
4d34fe46 1970 (let ((ffmpeg "ffmpeg-4.1.1"))
642de36b
TGR
1971 (modify-phases %standard-phases
1972 (add-before 'patch-source-shebangs 'unpack-ffmpeg
1973 (lambda _
1974 (with-directory-excursion "avidemux_core/ffmpeg_package"
1975 (invoke "tar" "xf" (string-append ffmpeg ".tar.bz2"))
1976 (delete-file (string-append ffmpeg ".tar.bz2")))
1977 #t))
1978 (add-after 'patch-source-shebangs 'repack-ffmpeg
1979 (lambda _
1980 (with-directory-excursion "avidemux_core/ffmpeg_package"
1981 (substitute* (string-append ffmpeg "/configure")
1982 (("#! /bin/sh") (string-append "#!" (which "sh"))))
1983 (invoke "tar" "cjf" (string-append ffmpeg ".tar.bz2") ffmpeg
1984 ;; avoid non-determinism in the archive
1985 "--sort=name" "--mtime=@0"
1986 "--owner=root:0" "--group=root:0")
1987 (delete-file-recursively ffmpeg))
1988 #t))
1989 (replace 'configure
1990 (lambda _
1991 ;; Copy-paste settings from the cmake build system.
1992 (setenv "CMAKE_LIBRARY_PATH" (getenv "LIBRARY_PATH"))
1993 (setenv "CMAKE_INCLUDE_PATH" (getenv "C_INCLUDE_PATH"))
1994 #t))
1995 (replace 'build
1996 (lambda* (#:key inputs outputs #:allow-other-keys)
1997 (let* ((out (assoc-ref outputs "out"))
1998 (lib (string-append out "/lib"))
1999 (top (getcwd))
2000 (sdl (assoc-ref inputs "sdl"))
2001 (build_component
2002 (lambda* (component srcdir #:optional (args '()))
2003 (let ((builddir (string-append "build_" component)))
2004 (mkdir builddir)
2005 (with-directory-excursion builddir
2006 (apply invoke "cmake"
2007 "-DCMAKE_INSTALL_RPATH_USE_LINK_PATH=TRUE"
2008 (string-append "-DCMAKE_INSTALL_PREFIX=" out)
2009 (string-append "-DCMAKE_INSTALL_RPATH=" lib)
2010 (string-append "-DCMAKE_SHARED_LINKER_FLAGS="
2011 "\"-Wl,-rpath=" lib "\"")
2012 (string-append "-DAVIDEMUX_SOURCE_DIR=" top)
2013 (string-append "-DSDL_INCLUDE_DIR="
2014 sdl "/include/SDL")
2015 (string-append "../" srcdir)
2016 "-DENABLE_QT5=True"
2017 args)
2018 (invoke "make" "-j"
2019 (number->string (parallel-job-count)))
2020 (invoke "make" "install"))))))
2021 (mkdir out)
2022 (build_component "core" "avidemux_core")
2023 (build_component "cli" "avidemux/cli")
2024 (build_component "qt4" "avidemux/qt4")
2025 (build_component "plugins_common" "avidemux_plugins"
2026 '("-DPLUGIN_UI=COMMON"))
2027 (build_component "plugins_cli" "avidemux_plugins"
2028 '("-DPLUGIN_UI=CLI"))
2029 (build_component "plugins_qt4" "avidemux_plugins"
2030 '("-DPLUGIN_UI=QT4"))
2031 (build_component "plugins_settings" "avidemux_plugins"
2032 '("-DPLUGIN_UI=SETTINGS"))
2033 ;; Remove .exe and .dll file.
2034 (delete-file-recursively
2035 (string-append out "/share/ADM6_addons"))
2036 #t)))
2037 (delete 'install)))))
44726031
AE
2038 (home-page "http://fixounet.free.fr/avidemux/")
2039 (synopsis "Video editor")
2040 (description "Avidemux is a video editor designed for simple cutting,
2041filtering and encoding tasks. It supports many file types, including AVI,
2042DVD compatible MPEG files, MP4 and ASF, using a variety of codecs. Tasks
2043can be automated using projects, job queue and powerful scripting
2044capabilities.")
afd9ed5c 2045 (supported-systems '("x86_64-linux" "i686-linux" "armhf-linux"))
44726031 2046 ;; Software with various licenses is included, see License.txt.
ae0bdd81 2047 (license license:gpl2+)))
44726031 2048
6f6c8b65
TUBK
2049(define-public vapoursynth
2050 (package
2051 (name "vapoursynth")
4f7a9e0b 2052 (version "37")
6f6c8b65 2053 (source (origin
97ef6df5
RW
2054 (method git-fetch)
2055 (uri (git-reference
2056 (url "https://github.com/vapoursynth/vapoursynth.git")
2057 (commit (string-append "R" version))))
2058 (file-name (git-file-name name version))
6f6c8b65
TUBK
2059 (sha256
2060 (base32
97ef6df5 2061 "1ma2s7dxk6y6l04qj1jvgwia4xj7999ny3a1yx2vbk5l83giam2p"))))
6f6c8b65
TUBK
2062 (build-system gnu-build-system)
2063 (native-inputs
2064 `(("autoconf" ,autoconf)
2065 ("automake" ,automake)
2066 ("cython" ,python-cython)
2067 ("libtool" ,libtool)
2068 ("pkg-config" ,pkg-config)
2069 ("python" ,python)
2070 ("yasm" ,yasm)))
2071 (inputs
2072 `(("ffmpeg" ,ffmpeg)
2073 ("libass" ,libass)
f80d5fe0
EF
2074 ("tesseract-ocr" ,tesseract-ocr)
2075 ("zimg" ,zimg)))
6f6c8b65
TUBK
2076 (home-page "http://www.vapoursynth.com/")
2077 (synopsis "Video processing framework")
2078 (description "VapourSynth is a C++ library and Python module for video
2079manipulation. It aims to be a modern rewrite of Avisynth, supporting
2080multithreading, generalized colorspaces, per frame properties, and videos with
2081format changes.")
9a078f48 2082 ;; src/core/cpufeatures only allows x86, ARM or PPC
cda20ee8
EF
2083 (supported-systems (fold delete %supported-systems
2084 '("mips64el-linux" "aarch64-linux")))
6f6c8b65 2085 ;; As seen from the source files.
ae0bdd81 2086 (license license:lgpl2.1+)))
6f6c8b65 2087
67932f86
TUBK
2088(define-public xvid
2089 (package
2090 (name "xvid")
93a72fa7 2091 (version "1.3.5")
67932f86
TUBK
2092 (source (origin
2093 (method url-fetch)
2094 (uri (string-append
2095 "http://downloads.xvid.org/downloads/xvidcore-"
2096 version ".tar.bz2"))
2097 (sha256
2098 (base32
93a72fa7 2099 "1d0hy1w9sn6491a3vhyf3vmhq4xkn6yd4ralx1191s6qz5wz483w"))))
67932f86
TUBK
2100 (build-system gnu-build-system)
2101 (native-inputs `(("yasm" ,yasm)))
2102 (arguments
2103 '(#:phases
62fe2d47
EF
2104 (modify-phases %standard-phases
2105 (add-before
2106 'configure 'pre-configure
2107 (lambda _
2108 (chdir "build/generic")
2109 (substitute* "configure"
9dcfd6aa
MW
2110 (("#! /bin/sh") (string-append "#!" (which "sh"))))
2111 #t)))
67932f86
TUBK
2112 ;; No 'check' target.
2113 #:tests? #f))
2114 (home-page "https://www.xvid.com/")
2115 (synopsis "MPEG-4 Part 2 Advanced Simple Profile video codec")
2116 (description "Xvid is an MPEG-4 Part 2 Advanced Simple Profile (ASP) video
2117codec library. It uses ASP features such as b-frames, global and quarter
2118pixel motion compensation, lumi masking, trellis quantization, and H.263, MPEG
2119and custom quantization matrices.")
ae0bdd81 2120 (license license:gpl2+)))
e16fde14 2121
f48feaa2 2122(define-public streamlink
15b283e7
EF
2123 (package
2124 (name "streamlink")
2125 (version "0.14.2")
2126 (source
2127 (origin
2128 (method url-fetch)
2129 (uri (pypi-uri "streamlink" version))
2130 (sha256
2131 (base32
87fd7a35
EF
2132 "0l2145fd60i76afjisfxd48cwhwyir07i7s3bnimdq5db2kzkix8"))
2133 (patches (search-patches "streamlink-update-test.patch"))))
15b283e7
EF
2134 (build-system python-build-system)
2135 (home-page "https://github.com/streamlink/streamlink")
2136 (native-inputs
2137 `(("python-freezegun" ,python-freezegun)
2138 ("python-pytest" ,python-pytest)
2139 ("python-mock" ,python-mock)
2140 ("python-requests-mock" ,python-requests-mock)))
2141 (propagated-inputs
2142 `(("python-pysocks" ,python-pysocks)
2143 ("python-websocket-client" ,python-websocket-client)
2144 ("python-iso3166" ,python-iso3166)
2145 ("python-iso639" ,python-iso639)
b42b5afd 2146 ("python-isodate" ,python-isodate)
15b283e7
EF
2147 ("python-pycryptodome" ,python-pycryptodome)
2148 ("python-requests" ,python-requests)
2149 ("python-urllib3" ,python-urllib3)))
2150 (synopsis "Extract streams from various services")
2151 (description "Streamlink is command-line utility that extracts streams
f48feaa2 2152from sites like Twitch.tv and pipes them into a video player of choice.")
15b283e7 2153 (license license:bsd-2)))
f48feaa2 2154
d84e2257
OP
2155(define-public livestreamer
2156 (deprecated-package "livestreamer" streamlink))
2157
e5e5eb1f 2158(define-public twitchy
04b6e9c5 2159 (let ((commit "9beb36d80b16662414129693e74fa3a2fd97554e")) ; 3.4 has no tag
e5e5eb1f
OP
2160 (package
2161 (name "twitchy")
04b6e9c5 2162 (version (git-version "3.4" "1" commit))
e5e5eb1f
OP
2163 (source
2164 (origin
2165 (method git-fetch)
2166 (uri (git-reference
2167 (url "https://github.com/BasioMeusPuga/twitchy.git")
2168 (commit commit)))
2169 (file-name (git-file-name name version))
2170 (sha256
2171 (base32
04b6e9c5 2172 "0di03h1j9ipp2bbnxxlxz07v87icyg2hmnsr4s7184z5ql8kpzr7"))))
e5e5eb1f
OP
2173 (build-system python-build-system)
2174 (arguments
2175 '(#:phases
2176 (modify-phases %standard-phases
04b6e9c5
TE
2177 (add-after 'unpack 'patch-paths
2178 (lambda* (#:key inputs #:allow-other-keys)
2179 (substitute* "twitchy/twitchy_play.py"
2180 (("\"streamlink ")
2181 (string-append "\"" (assoc-ref inputs "streamlink")
2182 "/bin/streamlink ")))
2183 #t))
e5e5eb1f
OP
2184 (add-before 'check 'check-setup
2185 (lambda _
2186 (setenv "HOME" (getcwd)) ;Needs to write to ‘$HOME’.
ca82bdfd
OP
2187 #t))
2188 (add-after 'install 'install-rofi-plugin
2189 (lambda* (#:key outputs #:allow-other-keys)
2190 (install-file "plugins/rofi-twitchy"
2191 (string-append (assoc-ref outputs "out")
9dcfd6aa
MW
2192 "/bin"))
2193 #t)))))
e5e5eb1f
OP
2194 (inputs
2195 `(("python-requests" ,python-requests)
2196 ("streamlink" ,streamlink)))
2197 (home-page "https://github.com/BasioMeusPuga/twitchy")
2198 (synopsis "Command-line interface for Twitch.tv")
2199 (description
2200 "This package provides a command-line interface for Twitch.tv")
2201 (license license:gpl3+))))
2202
307ad140
RW
2203(define-public mlt
2204 (package
2205 (name "mlt")
7acc52f9 2206 (version "6.12.0")
307ad140 2207 (source (origin
520b5d06
RW
2208 (method git-fetch)
2209 (uri (git-reference
2210 (url "https://github.com/mltframework/mlt.git")
2211 (commit (string-append "v" version))))
2212 (file-name (git-file-name name version))
307ad140
RW
2213 (sha256
2214 (base32
7acc52f9 2215 "0pzm3mjbbdl2rkbswgyfkx552xlxh2qrwzsi2a4dicfr92rfgq6w"))))
307ad140
RW
2216 (build-system gnu-build-system)
2217 (arguments
7acc52f9 2218 `(#:tests? #f ; no tests
e7cdd311 2219 #:make-flags '("CC=gcc" "CXX=g++ -std=gnu++11")
307ad140
RW
2220 #:configure-flags
2221 (list "--enable-gpl3"
2222 "--enable-gpl")
2223 #:phases
2224 (modify-phases %standard-phases
2225 (add-after
7acc52f9
TGR
2226 'configure 'override-LDFLAGS
2227 (lambda* (#:key outputs #:allow-other-keys)
2228 (substitute* "config.mak"
2229 (("LDFLAGS\\+=")
2230 (string-append "LDFLAGS+=-Wl,-rpath="
2231 (assoc-ref outputs "out")
2232 "/lib ")))
2233 #t)))))
307ad140
RW
2234 (inputs
2235 `(("alsa-lib" ,alsa-lib)
bb5c508c 2236 ("ffmpeg" ,ffmpeg-3.4)
307ad140 2237 ("fftw" ,fftw)
e7cdd311
MM
2238 ("frei0r-plugins" ,frei0r-plugins)
2239 ("gdk-pixbuf" ,gdk-pixbuf)
2240 ("gtk+" ,gtk+-2)
307ad140
RW
2241 ("libxml2" ,libxml2)
2242 ("jack" ,jack-1)
2243 ("ladspa" ,ladspa)
2244 ("libsamplerate" ,libsamplerate)
4c7729dc 2245 ("pulseaudio" ,pulseaudio)
e7cdd311
MM
2246 ("qtbase" ,qtbase)
2247 ("qtsvg" ,qtsvg)
307ad140
RW
2248 ("sdl" ,sdl)
2249 ("sox" ,sox)))
2250 (native-inputs
2251 `(("pkg-config" ,pkg-config)))
4c7729dc 2252 (home-page "https://www.mltframework.org/")
307ad140
RW
2253 (synopsis "Author, manage, and run multitrack audio/video compositions")
2254 (description
2255 "MLT is a multimedia framework, designed and developed for television
2256broadcasting. It provides a toolkit for broadcasters, video editors, media
2257players, transcoders, web streamers and many more types of applications. The
2258functionality of the system is provided via an assortment of ready to use
2259tools, XML authoring components, and an extensible plug-in based API.")
42b9541c 2260 (license license:gpl3)))
f464016d 2261
945d985a
DT
2262(define-public v4l-utils
2263 (package
2264 (name "v4l-utils")
fdf1108a 2265 (version "1.16.6")
945d985a
DT
2266 (source (origin
2267 (method url-fetch)
1d4ac724 2268 (uri (string-append "https://linuxtv.org/downloads/v4l-utils"
945d985a
DT
2269 "/v4l-utils-" version ".tar.bz2"))
2270 (sha256
2271 (base32
fdf1108a 2272 "1bkqlrizx0j2rd6ybam2x17bjrpwzl4v4szmnzm3cmixis3w3npr"))))
945d985a
DT
2273 (build-system gnu-build-system)
2274 (arguments
2275 '(#:configure-flags
2276 (list (string-append "--with-udevdir="
2277 (assoc-ref %outputs "out")
2cef0f7c
DC
2278 "/lib/udev")
2279 "CXXFLAGS=-std=gnu++11")))
945d985a 2280 (native-inputs
4ca077d5
TGR
2281 `(("perl" ,perl)
2282 ("pkg-config" ,pkg-config)))
945d985a
DT
2283 (inputs
2284 `(("alsa-lib" ,alsa-lib)
2285 ("glu" ,glu)
2286 ("libjpeg" ,libjpeg)
2287 ("libx11" ,libx11)
b37662e2 2288 ("qtbase" ,qtbase)
945d985a
DT
2289 ("eudev" ,eudev)))
2290 (synopsis "Realtime video capture utilities for Linux")
2291 (description "The v4l-utils provide a series of libraries and utilities to
2292be used for realtime video capture via Linux-specific APIs.")
2293 (home-page "https://linuxtv.org/wiki/index.php/V4l-utils")
2294 ;; libv4l2 is LGPL2.1+, while utilities are GPL2 only.
2295 (license (list license:lgpl2.1+ license:gpl2))))
2296
f464016d
DT
2297(define-public obs
2298 (package
2299 (name "obs")
900ddbf5 2300 (version "24.0.1")
f464016d 2301 (source (origin
2f069a1f
RW
2302 (method git-fetch)
2303 (uri (git-reference
a42bdd1c 2304 (url "https://github.com/obsproject/obs-studio.git")
2f069a1f
RW
2305 (commit version)))
2306 (file-name (git-file-name name version))
f464016d
DT
2307 (sha256
2308 (base32
900ddbf5 2309 "056s0hs1ds3c57sc0gy39dxaxvwlakl3w25jxgawh0fs99211ar5"))))
f464016d 2310 (build-system cmake-build-system)
08858812 2311 (arguments
6854a5d5 2312 `(#:tests? #f)) ; no tests
f464016d
DT
2313 (native-inputs
2314 `(("pkg-config" ,pkg-config)))
2315 (inputs
4f98c3c5
EF
2316 `(("alsa-lib" ,alsa-lib)
2317 ("curl" ,curl)
f464016d
DT
2318 ("eudev" ,eudev)
2319 ("ffmpeg" ,ffmpeg)
4f98c3c5 2320 ("fontconfig" ,fontconfig)
f464016d
DT
2321 ("freetype" ,freetype)
2322 ("jack" ,jack-1)
2323 ("jansson" ,jansson)
2324 ("libx264" ,libx264)
2325 ("libxcomposite" ,libxcomposite)
2326 ("mesa" ,mesa)
2327 ("pulseaudio" ,pulseaudio)
90a2309b 2328 ("qtbase" ,qtbase)
900ddbf5 2329 ("qtsvg" ,qtsvg)
90a2309b 2330 ("qtx11extras" ,qtx11extras)
4f98c3c5 2331 ("speex" ,speex)
d4df2032 2332 ("v4l-utils" ,v4l-utils)
f464016d
DT
2333 ("zlib" ,zlib)))
2334 (synopsis "Live streaming software")
2335 (description "Open Broadcaster Software provides a graphical interface for
2336video recording and live streaming. OBS supports capturing audio and video
2337from many input sources such as webcams, X11 (for screencasting), PulseAudio,
2338and JACK.")
2339 (home-page "https://obsproject.com")
f3bd1728 2340 (supported-systems '("x86_64-linux" "i686-linux"))
f464016d 2341 (license license:gpl2+)))
d5650f86
EF
2342
2343(define-public libvdpau
2344 (package
2345 (name "libvdpau")
55f80e15 2346 (version "1.2")
d5650f86
EF
2347 (source
2348 (origin
2349 (method url-fetch)
55f80e15
MB
2350 (uri (string-append "https://gitlab.freedesktop.org/vdpau/libvdpau"
2351 "/uploads/14b620084c027d546fa0b3f083b800c6/"
2352 "libvdpau-" version ".tar.bz2"))
d5650f86
EF
2353 (sha256
2354 (base32
55f80e15 2355 "01ps6g6p6q7j2mjm9vn44pmzq3g75mm7mdgmnhb1qkjjdwc9njba"))))
d5650f86
EF
2356 (build-system gnu-build-system)
2357 (native-inputs
2358 `(("pkg-config" ,pkg-config)))
2359 (inputs
3993a28a
MB
2360 `(("libx11" ,libx11 "out")
2361 ("libxext" ,libxext)
2362 ("xorgproto" ,xorgproto)))
d5650f86
EF
2363 (home-page "https://wiki.freedesktop.org/www/Software/VDPAU/")
2364 (synopsis "Video Decode and Presentation API")
2365 (description "VDPAU is the Video Decode and Presentation API for UNIX. It
2366provides an interface to video decode acceleration and presentation hardware
2367present in modern GPUs.")
2368 (license (license:x11-style "file://COPYING"))))
3161d32d
EF
2369
2370(define-public vdpauinfo
2371 (package
2372 (name "vdpauinfo")
2373 (version "1.0")
2374 (source
2375 (origin
2376 (method url-fetch)
2377 (uri (string-append "https://secure.freedesktop.org/~aplattner/vdpau/"
2378 name "-" version ".tar.gz"))
2379 (sha256
2380 (base32
2381 "1i2b0k9h8r0lnxlrkgqzmrjakgaw3f1ygqqwzx8w6676g85rcm20"))))
2382 (build-system gnu-build-system)
2383 (native-inputs
2384 `(("pkg-config" ,pkg-config)
2385 ("libx11" ,libx11)))
2386 (propagated-inputs
2387 `(("libvdpau" ,libvdpau)))
2388 (home-page "https://wiki.freedesktop.org/www/Software/VDPAU/")
2389 (synopsis "Tool to query the capabilities of a VDPAU implementation")
2390 (description "Vdpauinfo is a tool to query the capabilities of a VDPAU
2391implementation.")
2392 (license (license:x11-style "file://COPYING"))))
a7d94b54 2393
67df7164
EF
2394(define-public libvdpau-va-gl
2395 (package
2396 (name "libvdpau-va-gl")
2397 (version "0.4.2")
2398 (source
2399 (origin
2400 (method url-fetch)
2401 (uri (string-append "https://github.com/i-rinat/libvdpau-va-gl/"
2402 "releases/download/v" version "/libvdpau-va-gl-"
2403 version ".tar.gz"))
2404 (sha256
2405 (base32
2406 "1x2ag1f2fwa4yh1g5spv99w9x1m33hbxlqwyhm205ssq0ra234bx"))
2407 (patches (search-patches "libvdpau-va-gl-unbundle.patch"))
2408 (modules '((guix build utils)))
6cbee49d
MW
2409 (snippet '(begin (delete-file-recursively "3rdparty")
2410 #t))))
67df7164
EF
2411 (build-system cmake-build-system)
2412 (arguments
2413 '(#:tests? #f)) ; Tests require a running X11 server, with VA-API support.
2414 (native-inputs
2415 `(("libvdpau" ,libvdpau)
2416 ("pkg-config" ,pkg-config)))
2417 (inputs
2418 `(("libva" ,libva)
2419 ("mesa" ,mesa)))
2420 (home-page "https://github.com/i-rinat/libvdpau-va-gl")
2421 (synopsis "VDPAU driver with VA-API/OpenGL backend")
2422 (description
2423 "Many applications can use VDPAU to accelerate portions of the video
2424decoding process and video post-processing to the GPU video hardware. Since
2425there is no VDPAU available on Intel chips, they fall back to different drawing
2426techniques. This driver uses OpenGL under the hood to accelerate drawing and
2427scaling and VA-API (if available) to accelerate video decoding.")
2428 (license license:expat)))
2429
a7d94b54
LC
2430(define-public recordmydesktop
2431 (package
2432 (name "recordmydesktop")
2433 (version "0.3.8.1")
2434 (source (origin
2435 (method url-fetch)
2436 (uri (string-append "mirror://sourceforge/" name "/" name "/"
2437 version "/recordmydesktop-" version ".tar.gz"))
2438 (sha256
2439 (base32
2440 "133kkl5j0r877d41bzj7kj0vf3xm8x80yyx2n8nqxrva304f58ik"))))
2441 (build-system gnu-build-system)
2442 (inputs `(("popt" ,popt)
2443 ("zlib" ,zlib)
2444 ("libx11" ,libx11)
2445 ("libice" ,libice)
2446 ("libsm" ,libsm)
2447 ("libxfixes" ,libxfixes)
2448 ("libxdamage" ,libxdamage)
2449 ("libxext" ,libxext)
ed6ba9cc 2450 ("alsa-lib" ,alsa-lib)
a7d94b54
LC
2451 ("libvorbis" ,libvorbis)
2452 ("libtheora" ,libtheora)))
2453 (home-page "http://recordmydesktop.sourceforge.net/")
2454 (synopsis "Desktop session video recorder")
2455 (description
2456 "recordMyDesktop is a command-line tool that captures the activity in
2457your graphical desktop and encodes it as a video. This is a useful tool for
2458making @dfn{screencasts}.")
2459 (license license:gpl2+)))
d8841cc5 2460
63cd4d53
AV
2461(define-public simplescreenrecorder
2462 (package
2463 (name "simplescreenrecorder")
8332ac03 2464 (version "0.3.11")
63cd4d53
AV
2465 (source
2466 (origin
21309b8b
RW
2467 (method git-fetch)
2468 (uri (git-reference
2469 (url "https://github.com/MaartenBaert/ssr.git")
2470 (commit version)))
2471 (file-name (git-file-name name version))
63cd4d53
AV
2472 (sha256
2473 (base32
21309b8b 2474 "0n702dnv4qshgn3b90ixvplfafjhgz6040yir5vy8khjdpciysq4"))))
83c92882 2475 (build-system cmake-build-system)
63cd4d53
AV
2476 ;; Although libx11, libxfixes, libxext are listed as build dependencies in
2477 ;; README.md, the program builds and functions properly without them.
2478 ;; As a result, they are omitted. Please add them back if problems appear.
2479 (inputs
2480 `(("alsa-lib" ,alsa-lib)
8332ac03 2481 ("ffmpeg" ,ffmpeg)
63cd4d53
AV
2482 ("glu" ,glu)
2483 ("jack" ,jack-1)
2484 ("libxi" ,libxi)
2485 ("pulseaudio" ,pulseaudio)
91562061
MB
2486 ("qtbase" ,qtbase)
2487 ("qtx11extras" ,qtx11extras)))
63cd4d53 2488 (native-inputs `(("pkg-config" ,pkg-config)))
83c92882
TGR
2489 (arguments
2490 `(#:configure-flags
2491 (list "-DWITH_QT5=TRUE")
2492 #:tests? #f)) ; no test suite
63cd4d53
AV
2493 ;; Using HTTPS causes part of the page to be displayed improperly.
2494 (home-page "http://www.maartenbaert.be/simplescreenrecorder/")
2495 (synopsis "Screen recorder")
2496 (description "SimpleScreenRecorder is an easy to use screen recorder with
2497a graphical user interface. It supports recording the entire screen, or a
2498part of it, and allows encoding in many different codecs and file formats.
2499Other features include a live preview and live streaming.")
2500 (license (list license:gpl3+ ; most files
2501 license:zlib ; glinject/elfhacks.*
2502 license:isc ; glinject/*
2503 license:x11)))) ; build-aux/install-sh
2504
d8841cc5
KK
2505(define-public libsmpeg
2506 (package
2507 (name "libsmpeg")
d7764d42 2508 (version "0.4.5-401")
d8841cc5
KK
2509 (source (origin
2510 (method svn-fetch)
2511 (uri (svn-reference
2512 (url "svn://svn.icculus.org/smpeg/trunk/")
2513 (revision 401))) ; last revision before smpeg2 (for SDL 2.0)
b9af0564 2514 (file-name (string-append name "-" version "-checkout"))
d8841cc5
KK
2515 (sha256
2516 (base32
2517 "18yfkr70lr1x1hc8snn2ldnbzdcc7b64xmkqrfk8w59gpg7sl1xn"))))
2518 (build-system gnu-build-system)
d8841cc5
KK
2519 (native-inputs
2520 `(("autoconf" ,autoconf)
2521 ("automake" ,automake)))
2522 (inputs
2523 `(("sdl" ,sdl2)))
2524 (home-page "http://icculus.org/smpeg/")
2525 (synopsis "SDL MPEG decoding library")
2526 (description
2527 "SMPEG (SDL MPEG Player Library) is a free MPEG1 video player library
2528with sound support. Video playback is based on the ubiquitous Berkeley MPEG
2529player, mpeg_play v2.2. Audio is played through a slightly modified mpegsound
2530library, part of splay v0.8.2. SMPEG supports MPEG audio (MP3), MPEG-1 video,
2531and MPEG system streams.")
2532 (license (list license:expat
2533 license:lgpl2.1
2534 license:lgpl2.1+
2535 license:gpl2))))
4df07622 2536
d7764d42
RW
2537;; for btanks
2538(define-public libsmpeg-with-sdl1
2539 (package (inherit libsmpeg)
2540 (name "libsmpeg")
2541 (version "0.4.5-399")
2542 (source (origin
2543 (method svn-fetch)
2544 (uri (svn-reference
2545 (url "svn://svn.icculus.org/smpeg/trunk/")
2546 (revision 399))) ; tagged release 0.4.5
2547 (file-name (string-append name "-" version "-checkout"))
2548 (sha256
2549 (base32
2550 "0jfi085rf3fa5xsn0vd3nqf32my8ph9c6a9445y7a8lrlz4dms64"))))
2551 (inputs
2552 `(("sdl" ,sdl)))))
2553
4df07622
AP
2554(define-public libbdplus
2555 (package
2556 (name "libbdplus")
2557 (version "0.1.2")
2558 (source
2559 (origin
2560 (method url-fetch)
6f13c4fd 2561 (uri (string-append "https://ftp.videolan.org/pub/videolan/libbdplus/"
4df07622
AP
2562 version "/" name "-" version ".tar.bz2"))
2563 (sha256
2564 (base32 "02n87lysqn4kg2qk7d1ffrp96c44zkdlxdj0n16hbgrlrpiwlcd6"))))
2565 (inputs
2566 `(("libgcrypt" ,libgcrypt)))
2567 (build-system gnu-build-system)
b8a31908 2568 (home-page "https://www.videolan.org/developers/libbdplus.html")
4df07622
AP
2569 (synopsis "Library for decrypting certain Blu-Ray discs")
2570 (description "libbdplus is a library which implements the BD+ System
2571specifications.")
2572 (license license:lgpl2.1+)))
8dd6fc51
AP
2573
2574(define-public libaacs
2575 (package
2576 (name "libaacs")
ba58886a 2577 (version "0.9.0")
8dd6fc51
AP
2578 (source
2579 (origin
2580 (method url-fetch)
6c2481ef 2581 (uri (string-append "https://ftp.videolan.org/pub/videolan/libaacs/"
8dd6fc51
AP
2582 version "/" name "-" version ".tar.bz2"))
2583 (sha256
ba58886a 2584 (base32 "1kms92i0c7i1yl659kqjf19lm8172pnpik5lsxp19xphr74vvq27"))))
8dd6fc51
AP
2585 (inputs
2586 `(("libgcrypt" ,libgcrypt)))
2587 (native-inputs
2588 `(("bison" ,bison)
2589 ("flex" ,flex)))
2590 (build-system gnu-build-system)
b8a31908 2591 (home-page "https://www.videolan.org/developers/libaacs.html")
8dd6fc51
AP
2592 (synopsis "Library for decrypting certain Blu-Ray discs")
2593 (description "libaacs is a library which implements the Advanced Access
2594Content System specification.")
2595 (license license:lgpl2.1+)))
05234973 2596
2597(define-public mps-youtube
2598 (package
2599 (name "mps-youtube")
c53fa8c8 2600 (version "0.2.8")
05234973 2601 (source
2602 (origin
e0a80ee4
RW
2603 (method git-fetch)
2604 (uri (git-reference
2605 (url "https://github.com/mps-youtube/mps-youtube.git")
2606 (commit (string-append "v" version))))
2607 (file-name (git-file-name name version))
05234973 2608 (sha256
2609 (base32
e0a80ee4 2610 "1w1jhw9rg3dx7vp97cwrk5fymipkcy2wrbl1jaa38ivcjhqg596y"))))
05234973 2611 (build-system python-build-system)
175d6264 2612 (arguments
2613 ;; Tests need to be disabled until #556 upstream is fixed. It reads as if the
2614 ;; test suite results differ depending on the country and also introduce
2615 ;; non-determinism in the tests.
2616 ;; https://github.com/mps-youtube/mps-youtube/issues/556
2617 `(#:tests? #f))
05234973 2618 (propagated-inputs
2619 `(("python-pafy" ,python-pafy)
2620 ("python-pygobject" ,python-pygobject))) ; For mpris2 support
2621 (home-page "https://github.com/mps-youtube/mps-youtube")
2622 (synopsis "Terminal based YouTube player and downloader")
2623 (description
2624 "@code{mps-youtube} is based on mps, a terminal based program to
2625search, stream and download music. This implementation uses YouTube as
2626a source of content and can play and download video as well as audio.
2627It can use either mpv or mplayer for playback, and for conversion of
2628formats ffmpeg or libav is used. Users should install one of the
2629supported players in addition to this package.")
2630 (license license:gpl3+)))
fe047e13
EB
2631
2632(define-public handbrake
2633 (package
2634 (name "handbrake")
37b82ccc 2635 (version "1.1.2")
fe047e13
EB
2636 (source (origin
2637 (method url-fetch)
37b82ccc
EB
2638 (uri (string-append "https://download.handbrake.fr/releases/"
2639 version "/HandBrake-" version "-source.tar.bz2"))
fe047e13
EB
2640 (sha256
2641 (base32
37b82ccc 2642 "0bny0hwlr55g2c69rsamv0xvwmfh1s4a582b9vq20xv5ly84m6ms"))
fe047e13
EB
2643 (modules '((guix build utils)))
2644 (snippet
37b82ccc
EB
2645 ;; Remove "contrib" and source not necessary for
2646 ;; building/running under a GNU environment.
fe047e13 2647 '(begin
37b82ccc
EB
2648 (for-each delete-file-recursively
2649 '("contrib" "macosx" "win"))
2650 (substitute* "make/include/main.defs"
2651 ;; Disable unconditional inclusion of "contrib" libraries
2652 ;; (ffmpeg, libvpx, libdvdread, libdvdnav, and libbluray),
2653 ;; which would lead to fetching and building of these
2654 ;; libraries. Use our own instead.
2655 (("MODULES \\+= contrib") "# MODULES += contrib"))
fe047e13
EB
2656 #t))))
2657 (build-system glib-or-gtk-build-system)
2658 (native-inputs
2659 `(("automake" ,automake) ;gui subpackage must be bootstrapped
2660 ("autoconf" ,autoconf)
2661 ("curl" ,curl) ;not actually used, but tested for
2662 ("intltool" ,intltool)
2663 ("libtool" ,libtool)
2664 ("pkg-config" ,pkg-config)
2665 ("python" ,python-2))) ;for configuration
2666 (inputs
2667 `(("bzip2" ,bzip2)
2668 ("dbus-glib" ,dbus-glib)
37b82ccc 2669 ("ffmpeg" ,ffmpeg)
fe047e13
EB
2670 ("fontconfig" ,fontconfig)
2671 ("freetype" ,freetype)
2672 ("glib" ,glib)
2673 ("gstreamer" ,gstreamer)
2674 ("gst-plugins-base" ,gst-plugins-base)
2675 ("gtk+" ,gtk+)
37b82ccc 2676 ("jansson" ,jansson)
fe047e13
EB
2677 ("lame" ,lame)
2678 ("libass" ,libass)
2679 ("libbluray" ,libbluray)
2680 ("libdvdnav" ,libdvdnav)
2681 ("libdvdread" ,libdvdread)
2682 ("libgudev" ,libgudev)
2683 ("libmpeg2" ,libmpeg2)
2684 ("libnotify" ,libnotify)
2685 ("libogg" ,libogg)
37b82ccc 2686 ("libopus" ,opus)
fe047e13
EB
2687 ("libsamplerate" ,libsamplerate)
2688 ("libtheora" ,libtheora)
2689 ("libvorbis" ,libvorbis)
2690 ("libvpx" ,libvpx)
2691 ("libxml2" ,libxml2)
2692 ("libx264" ,libx264)
2693 ("x265" ,x265)
2694 ("zlib" ,zlib)))
2695 (arguments
2696 `(#:tests? #f ;tests require Ruby and claim to be unsupported
37b82ccc
EB
2697 #:configure-flags
2698 (list (string-append "CPPFLAGS=-I"
2699 (assoc-ref %build-inputs "libxml2")
2700 "/include/libxml2")
2701 "LDFLAGS=-lx265")
fe047e13
EB
2702 #:phases
2703 (modify-phases %standard-phases
189be331 2704 (replace 'bootstrap
fe047e13
EB
2705 ;; Run bootstrap ahead of time so that shebangs get patched.
2706 (lambda _
2707 (setenv "CONFIG_SHELL" (which "sh"))
2708 (setenv "NOCONFIGURE" "1")
2709 ;; Patch the Makefile so that it doesn't bootstrap again.
2710 (substitute* "gtk/module.rules"
2711 ((".*autogen\\.sh.*") ""))
da6f345c 2712 (invoke "sh" "./gtk/autogen.sh")))
fe047e13
EB
2713 (replace 'configure
2714 (lambda* (#:key outputs configure-flags #:allow-other-keys)
2715 ;; 'configure' is not an autoconf-generated script, and
2716 ;; errors on unrecognized arguments,
2717 ;; e.g. --enable-fast-install
2718 (let ((out (assoc-ref outputs "out")))
da6f345c
TGR
2719 (apply invoke "./configure"
2720 (string-append "--prefix=" out)
2721 (or configure-flags '())))))
fe047e13
EB
2722 (add-after 'configure 'chdir-build
2723 (lambda _ (chdir "./build") #t)))))
2724 (home-page "https://handbrake.fr")
2725 (synopsis "Video transcoder")
2726 (description
2727 "HandBrake is a tool for converting video from any format to a selection
2728of modern, widely supported codecs.")
37b82ccc
EB
2729 ;; Some under GPLv2+, some under LGPLv2.1+, and portions under BSD3.
2730 ;; Combination under GPLv2. See LICENSE.
2731 (license license:gpl2)))
590abe01 2732
d8d7565b
TGR
2733(define-public intel-vaapi-driver
2734 (package
2735 (name "intel-vaapi-driver")
2736 (version "2.3.0")
2737 (source
2738 (origin
2739 (method url-fetch)
2740 (uri (string-append "https://github.com/intel/intel-vaapi-driver/"
2741 "releases/download/" version "/intel-vaapi-driver-"
2742 version ".tar.bz2"))
2743 (sha256
2744 (base32 "1qyzxh3p8cw4fv8bz9zd4kc8hajlaps7xryzh6pad814n3m5sbjw"))))
2745 (build-system gnu-build-system)
2746 (native-inputs
2747 `(("pkg-config" ,pkg-config)))
2748 (inputs
2749 `(("libdrm" ,libdrm)
2750 ("libva" ,libva)
2751 ("libx11" ,libx11)))
2752 (arguments
2753 `(#:phases
2754 (modify-phases %standard-phases
2755 (add-before 'configure 'set-target-directory
2756 (lambda* (#:key outputs #:allow-other-keys)
2757 (let ((out (assoc-ref outputs "out")))
2758 (setenv "LIBVA_DRIVERS_PATH" (string-append out "/lib/dri"))
2759 #t))))))
2760 ;; XXX Because of <https://issues.guix.gnu.org/issue/22138>, we need to add
2761 ;; this to all VA-API back ends instead of once to libva.
2762 (native-search-paths
2763 (list (search-path-specification
2764 (variable "LIBVA_DRIVERS_PATH")
2765 (files '("lib/dri")))))
3935507f 2766 (supported-systems '("i686-linux" "x86_64-linux"))
d8d7565b
TGR
2767 (home-page "https://01.org/linuxmedia/vaapi")
2768 (synopsis "VA-API video acceleration driver for Intel GEN Graphics devices")
2769 (description
2770 "This is the @acronym{VA-API, Video Acceleration API} back end required for
2771hardware-accelerated video processing on Intel GEN Graphics devices supported by
2772the i915 driver, such as integrated Intel HD Graphics. It provides access to
2773both hardware and shader functionality for faster encoding, decoding, and
2774post-processing of video formats like MPEG2, H.264/AVC, and VC-1.")
2775 (license (list license:bsd-2 ; src/gen9_vp9_const_def.c
2776 license:expat)))) ; the rest, excluding the test suite
2777
590abe01
JN
2778(define-public openh264
2779 (package
2780 (name "openh264")
e4386b33 2781 (version "2.0.0")
590abe01
JN
2782 (source (origin
2783 (method url-fetch)
2784 (uri (string-append "https://github.com/cisco/"
03229b36 2785 name "/releases/download/v"
e4386b33 2786 version "/Source.Code.tar.gz"))
590abe01
JN
2787 (file-name (string-append name "-" version ".tar.gz"))
2788 (sha256
2789 (base32
e4386b33 2790 "0iq802xfsfkskg6q1j0kg90xh04vv1sxf61mrmahgynz5d7hx2ii"))))
590abe01
JN
2791 (build-system gnu-build-system)
2792 (native-inputs
2793 `(("nasm" ,nasm)
2794 ("python" ,python)))
2795 (arguments
8363a835
EF
2796 '(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
2797 "CC=gcc")
590abe01
JN
2798 #:test-target "test"
2799 #:phases (modify-phases %standard-phases
2800 ;; no configure script
2801 (delete 'configure))))
2802 (home-page "http://www.openh264.org/")
2803 (synopsis "H264 decoder library")
2804 (description
2805 "Openh264 is a library which can decode H264 video streams.")
2806 (license license:bsd-2)))
3a44c7bb 2807
2808(define-public libmp4v2
2809 (package
2810 (name "libmp4v2")
2811 (version "2.0.0")
2812 (source
2813 (origin
2814 (method url-fetch)
2815 ;; XXX: The new location of upstream is uncertain and will become relevant the
2816 ;; moment when the googlecode archive shuts down. It is past the date it
2817 ;; should've been turned off. I tried to communicate with upstream, but this
2818 ;; wasn't very responsive and not very helpful. The short summary is, it is
2819 ;; chaos when it comes to the amount of forks and only time will tell where
2820 ;; the new upstream location is.
2821 (uri (string-append "https://storage.googleapis.com/google-"
2822 "code-archive-downloads/v2/"
2823 "code.google.com/mp4v2/mp4v2-" version ".tar.bz2"))
2824 (file-name (string-append name "-" version ".tar.bz2"))
2825 (sha256
2826 (base32
2827 "0f438bimimsvxjbdp4vsr8hjw2nwggmhaxgcw07g2z361fkbj683"))))
2828 (build-system gnu-build-system)
2829 (outputs '("out"
2830 "static")) ; 3.7MiB .a file
2831 (arguments
2832 `(#:phases
2833 (modify-phases %standard-phases
2834 (add-after 'unpack 'remove-dates
2835 (lambda _
2836 ;; Make the build reproducible.
2837 (substitute* "configure"
2838 (("PROJECT_build=\"`date`\"") "PROJECT_build=\"\"")
2839 (("ac_abs_top_builddir=$ac_pwd") "ac_abs_top_builddir=\"\""))
2840 #t))
2841 (add-after 'install 'move-static-libraries
2842 (lambda* (#:key outputs #:allow-other-keys)
2843 ;; Move static libraries to the "static" output.
2844 (let* ((out (assoc-ref outputs "out"))
2845 (lib (string-append out "/lib"))
2846 (static (assoc-ref outputs "static"))
2847 (slib (string-append static "/lib")))
2848 (mkdir-p slib)
2849 (for-each (lambda (file)
2850 (install-file file slib)
2851 (delete-file file))
2852 (find-files lib "\\.a$"))
2853 #t))))))
2854 (native-inputs
2855 `(("help2man" ,help2man)
2856 ("dejagnu" ,dejagnu)))
2857 (home-page "https://code.google.com/archive/p/mp4v2/")
2858 (synopsis "API to create and modify mp4 files")
2859 (description
2860 "The MP4v2 library provides an API to create and modify mp4 files as defined by
2861ISO-IEC:14496-1:2001 MPEG-4 Systems. This file format is derived from Apple's QuickTime
2862file format that has been used as a multimedia file format in a variety of platforms and
2863applications. It is a very powerful and extensible format that can accommodate
2864practically any type of media.")
2865 (license license:mpl1.1)))
e0c40707
EJ
2866
2867(define-public libmediainfo
2868 (package
2869 (name "libmediainfo")
2870 (version "0.7.95")
2871 (source (origin
2872 (method url-fetch)
2873 (uri (string-append "https://mediaarea.net/download/source/"
2874 name "/" version"/"
2875 name "_" version ".tar.bz2"))
2876 (sha256
2877 (base32
2878 "1kchh6285b07z5nixv619hc9gml2ysdayicdiv30frrlqiyxqw4b"))))
2879 ;; TODO add a Big Buck Bunny webm for tests.
2880 (native-inputs
2881 `(("autoconf" ,autoconf)
2882 ("automake" ,automake)
2883 ("libtool" ,libtool)
2884 ("pkg-config" ,pkg-config)
2885 ("zlib" ,zlib)
2886 ("tinyxml2" ,tinyxml2)
2887 ("curl" ,curl)
2888 ("libzen" ,libzen)))
2889 (build-system gnu-build-system)
2890 (arguments
2891 '(#:tests? #f ; see above TODO
2892 #:phases
2893 ;; build scripts not in root of archive
2894 (modify-phases %standard-phases
0cae36b5 2895 (add-after 'unpack 'change-to-build-dir
e0c40707 2896 (lambda _
0cae36b5 2897 (chdir "Project/GNU/Library")
1d05b683 2898 #t)))))
e0c40707
EJ
2899 (home-page "https://mediaarea.net/en/MediaInfo")
2900 (synopsis "Library for retrieving media metadata")
2901 (description "MediaInfo is a library used for retrieving technical
2902information and other metadata about audio or video files. A non-exhaustive
2903list of the information MediaInfo can retrieve from media files include:
2904
2905@itemize
2906@item General: title, author, director, album, track number, date, duration...
2907@item Video: codec, aspect, fps, bitrate...
2908@item Audio: codec, sample rate, channels, language, bitrate...
2909@item Text: language of subtitle
2910@item Chapters: number of chapters, list of chapters
2911@end itemize
2912
2913MediaInfo supports the following formats:
2914
2915@itemize
2916@item Video: MKV, OGM, AVI, DivX, WMV, QuickTime, Real, MPEG-1,
2917MPEG-2, MPEG-4, DVD (VOB)...
2918@item Video Codecs: DivX, XviD, MSMPEG4, ASP, H.264, AVC...)
2919@item Audio: OGG, MP3, WAV, RA, AC3, DTS, AAC, M4A, AU, AIFF...
2920@item Subtitles: SRT, SSA, ASS, SAMI...
2921@end itemize\n")
2922 (license license:bsd-2)))
2923
d5fa2777
EJ
2924;; TODO also have a GUI version available
2925(define-public mediainfo
2926 (package
2927 (name "mediainfo")
f528588a 2928 (version "18.12")
d5fa2777
EJ
2929 (source (origin
2930 (method url-fetch)
f528588a
PN
2931 ;; Warning: This source has proved unreliable 1 time at least.
2932 ;; Consider an alternate source or report upstream if this
2933 ;; happens again.
d5fa2777
EJ
2934 (uri (string-append "https://mediaarea.net/download/source/"
2935 name "/" version "/"
2936 name "_" version ".tar.bz2"))
2937 (sha256
2938 (base32
f528588a 2939 "1ix95ilcjlawcq6phh25cgplm3riqa2ii7ql82g8yagqs4ldqp6a"))))
d5fa2777
EJ
2940 (native-inputs
2941 `(("autoconf" ,autoconf)
2942 ("automake" ,automake)
2943 ("libtool" ,libtool)
2944 ("pkg-config" ,pkg-config)
2945 ("zlib" ,zlib)
c695fb76 2946 ("libmediainfo" ,libmediainfo)
d5fa2777
EJ
2947 ("libzen" ,libzen)))
2948 (build-system gnu-build-system)
2949 (arguments
2950 '(#:tests? #f ; lacks tests
2951 #:phases
2952 ;; build scripts not in root of archive
2953 (modify-phases %standard-phases
2f17187f 2954 (add-after 'unpack 'change-to-build-dir
d5fa2777 2955 (lambda _
2f17187f 2956 (chdir "Project/GNU/CLI")
f528588a 2957 #t)))))
d5fa2777
EJ
2958 (home-page "https://mediaarea.net/en/MediaInfo")
2959 (synopsis "Utility for reading media metadata")
2960 (description "MediaInfo is a utility used for retrieving technical
2961information and other metadata about audio or video files. It supports the
2962many codecs and formats supported by libmediainfo.")
2963 (license license:bsd-2)))
fa379a5b
CL
2964
2965(define-public livemedia-utils
2966 (package
2967 (name "livemedia-utils")
ecdc2f82 2968 (version "2019.05.29")
fa379a5b
CL
2969 (source (origin
2970 (method url-fetch)
2971 (uri (string-append
517c66c0 2972 "https://download.videolan.org/contrib/live555/live."
fa379a5b
CL
2973 version ".tar.gz"))
2974 (sha256
2975 (base32
ecdc2f82 2976 "08i63jr8ihn1xiq5z5n3yls3yz6li5sg0s454l56p5bcvbrw81my"))))
fa379a5b
CL
2977 (build-system gnu-build-system)
2978 (arguments
ecdc2f82 2979 '(#:tests? #f ; no tests
fa379a5b
CL
2980 #:make-flags (list "CC=gcc"
2981 (string-append "LDFLAGS=-Wl,-rpath="
2982 (assoc-ref %outputs "out") "/lib")
2983 (string-append "PREFIX="
2984 (assoc-ref %outputs "out")))
2985 #:phases (modify-phases %standard-phases
2986 (add-before 'configure 'fix-makefiles-generation
2987 (lambda _
2988 (substitute* "genMakefiles"
2989 (("/bin/rm") "rm"))
2990 #t))
2991 (replace 'configure
2992 (lambda _
6b677bb0
TGR
2993 (invoke "./genMakefiles"
2994 "linux-with-shared-libraries"))))))
fa379a5b
CL
2995 (home-page "http://www.live555.com/liveMedia/")
2996 (synopsis "Set of C++ libraries for multimedia streaming")
2997 (description "This code forms a set of C++ libraries for multimedia
2998streaming, using open standard protocols (RTP/RTCP, RTSP, SIP). The libraries
2999can be used to stream, receive, and process MPEG, H.265, H.264, H.263+, DV or
3000JPEG video, and several audio codecs. They can easily be extended to support
3001additional (audio and/or video) codecs, and can also be used to build basic
3002RTSP or SIP clients and servers.")
3003 (license license:lgpl3+)))
0dff4dd9
CL
3004
3005(define-public libdvbpsi
3006 (package
3007 (name "libdvbpsi")
74b977d7 3008 (version "1.3.2")
0dff4dd9
CL
3009 (source (origin
3010 (method url-fetch)
3011 (uri (string-append
3012 "https://download.videolan.org/pub/libdvbpsi/"
3013 version "/libdvbpsi-" version ".tar.bz2"))
3014 (sha256
3015 (base32
74b977d7 3016 "1zn5hfv4qbahmydbwh59a3b480s3m5ss27r6ml35gqdip7r3jkmc"))))
0dff4dd9
CL
3017 (build-system gnu-build-system)
3018 (home-page "https://www.videolan.org/developers/libdvbpsi.html")
3019 (synopsis "Library for decoding and generation of MPEG TS and DVB PSI
3020tables")
3021 (description "libdvbpsi is a simple library designed for decoding and
3022generation of MPEG TS and DVB PSI tables according to standards ISO/IEC 13818s
3023and ITU-T H.222.0.")
3024 (license license:lgpl2.1)))
6779ae27
JL
3025
3026(define-public ffms2
3027 (package
3028 (name "ffms2")
3029 (version "2.23")
b1eaede0 3030 (home-page "https://github.com/FFMS/ffms2")
6779ae27 3031 (source (origin
940fdd0c
RW
3032 (method git-fetch)
3033 (uri (git-reference
3034 (url "https://github.com/FFMS/ffms2.git")
3035 (commit version)))
3036 (file-name (git-file-name name version))
6779ae27
JL
3037 (sha256
3038 (base32
940fdd0c 3039 "0dkz5b3gxq5p4xz0qqg6l2sigszrlsinz3skyf0ln4wf3zrvf8m5"))))
6779ae27
JL
3040 (build-system gnu-build-system)
3041 (arguments
3042 '(#:configure-flags
3043 (list "--enable-avresample")))
3044 (inputs
3045 `(("zlib" ,zlib)))
3046 (propagated-inputs
3047 `(("ffmpeg" ,ffmpeg)))
3048 (native-inputs
3049 `(("pkg-config" ,pkg-config)))
3050 (synopsis "Cross-platform wrapper around ffmpeg/libav")
3051 (description
3052 "FFMpegSource is a wrapper library around ffmpeg/libav that allows
3053programmers to access a standard API to open and decompress media files.")
3054 ;; sources are distributed under a different license that the binary.
3055 ;; see https://github.com/FFMS/ffms2/blob/master/COPYING
3056 (license license:gpl2+))); inherits from ffmpeg
c812f460
JL
3057
3058(define-public aegisub
3059 (package
3060 (name "aegisub")
3061 (version "3.2.2")
3062 (source (origin
3063 (method url-fetch)
3064 (uri (string-append
3065 "http://ftp.aegisub.org/pub/archives/releases/source/"
3066 name "-" version ".tar.xz"))
3067 (sha256
3068 (base32
18e56ad7 3069 "11b83qazc8h0iidyj1rprnnjdivj1lpphvpa08y53n42bfa36pn5"))
644af6c8
BH
3070 (patches (search-patches "aegisub-icu59-include-unistr.patch"
3071 "aegisub-boost68.patch"))))
c812f460
JL
3072 (build-system gnu-build-system)
3073 (arguments
3074 `(#:configure-flags
3075 (list "--disable-update-checker"
3076 "--without-portaudio"
3077 "--without-openal"
18e56ad7
BH
3078 "--without-oss"
3079 "CXXFLAGS=-DU_USING_ICU_NAMESPACE=1")
c812f460
JL
3080 ;; tests require busted, a lua package we don't have yet
3081 #:tests? #f
3082 #:phases
3083 (modify-phases %standard-phases
3084 (add-before 'configure 'fix-ldflags
3085 (lambda _
18e56ad7 3086 (setenv "LDFLAGS" "-pthread")
f6974e15
BH
3087 #t))
3088 (add-after 'unpack 'fix-boost-headers
3089 (lambda _
3090 (substitute*
3091 '("src/subtitles_provider_libass.cpp"
3092 "src/colour_button.cpp"
3093 "src/video_provider_dummy.cpp"
3094 "./src/video_frame.cpp")
3095 (("#include <boost/gil/gil_all.hpp>")
3096 "#include <boost/gil.hpp>"))
3097 #t)))))
c812f460
JL
3098 (inputs
3099 `(("boost" ,boost)
3100 ("desktop-file-utils" ,desktop-file-utils)
3101 ("ffms2" ,ffms2)
3102 ("fftw" ,fftw)
3103 ("hunspell" ,hunspell)
3104 ("mesa" ,mesa)
3105 ("libass" ,libass)
3106 ("alsa-lib" ,alsa-lib)
3107 ("pulseaudio" ,pulseaudio)
3108 ("libx11" ,libx11)
3109 ("freetype" ,freetype)
3110 ("wxwidgets-gtk2" ,wxwidgets-gtk2)))
3111 (native-inputs
3112 `(("intltool" ,intltool)
3113 ("pkg-config" ,pkg-config)))
3114 (home-page "http://www.aegisub.org/")
3115 (synopsis "Subtitle engine")
3116 (description
3117 "Aegisub is a tool for creating and modifying subtitles. Aegisub makes
3118it quick and easy to time subtitles to audio, and features many powerful
3119tools for styling them, including a built-in real-time video preview.")
3120 (license (list license:bsd-3 ; the package is licensed under the bsd-3, except
3121 license:mpl1.1 ; for vendor/universalchardet under the mpl1.1
3122 license:expat)))) ; and src/gl that is under a license similar
3123 ; the the Expat license, with a rewording (Software -> Materials). (called MIT
3124 ; by upstream). See https://github.com/Aegisub/Aegisub/blob/master/LICENCE
3125 ; src/MatroskaParser.(c|h) is under bsd-3 with permission from the author
3126
635f981b 3127(define-public gst-transcoder
3128 (package
3129 (name "gst-transcoder")
3130 (version "1.12.2")
3131 (source
3132 (origin
e7c7b10d
RW
3133 (method git-fetch)
3134 (uri (git-reference
3135 (url "https://github.com/pitivi/gst-transcoder.git")
3136 (commit version)))
3137 (file-name (git-file-name name version))
635f981b 3138 (sha256
3139 (base32
e7c7b10d 3140 "0nw1zykqc6c8xs3ri55pm00pwyz93z4y4nd880apfiwj7yv5p3az"))))
635f981b 3141 (build-system meson-build-system)
3142 (inputs
3143 `(("gobject-introspection" ,gobject-introspection)
3144 ("glib" ,glib)
3145 ("gstreamer" ,gstreamer)
3146 ("gst-plugins-base" ,gst-plugins-base)))
3147 (native-inputs
3148 `(("python" ,python)
3149 ("pkg-config" ,pkg-config)))
3150 (home-page "https://github.com/pitivi/gst-transcoder/")
3151 (synopsis "GStreamer Transcoding API")
3152 (description "GStreamer Transcoding API")
3153 (license license:lgpl2.1)))
e37bdc0f 3154
3155(define-public gavl
3156 (package
3157 (name "gavl")
3158 (version "1.4.0")
3159 (source
3160 (origin
3161 (method url-fetch)
3162 (uri (string-append "mirror://sourceforge/gmerlin/"
3163 name "/" version "/"
3164 name "-" version ".tar.gz"))
3165 (file-name (string-append name "-" version ".tar.gz"))
3166 (sha256
3167 (base32
3168 "1kikkn971a14zzm7svi7190ldc14fjai0xyhpbcmp48s750sraji"))))
3169 (build-system gnu-build-system)
c178aa34
EF
3170 (arguments
3171 '(#:configure-flags '("LIBS=-lm")))
e37bdc0f 3172 (native-inputs
3173 `(("pkg-config" ,pkg-config)
3174 ("doxygen" ,doxygen)))
3175 (home-page "http://gmerlin.sourceforge.net")
3176 (synopsis "Low level library for multimedia API building")
3177 (description
3178 "Gavl is short for Gmerlin Audio Video Library. It is a low level
3179library, upon which multimedia APIs can be built. Gavl handles all the
3180details of audio and video formats like colorspaces, sample rates,
3181multichannel configurations, etc. It provides standardized definitions for
3182those formats as well as container structures for carrying audio samples or
3183video images inside an application.
3184
3185In addition, it handles the sometimes ugly task of converting between all
3186these formats and provides some elementary operations (copying, scaling,
3187alpha blending etc).")
3188 (license license:gpl3)))
49e1d76d 3189
3190(define-public frei0r-plugins
3191 (package
3192 (name "frei0r-plugins")
3193 (version "1.6.1")
3194 (source
3195 (origin
3196 (method url-fetch)
3197 (uri (string-append "https://files.dyne.org/frei0r/"
3198 "frei0r-plugins-" version ".tar.gz"))
3199 (sha256
3200 (base32
3201 "0pji26fpd0dqrx1akyhqi6729s394irl73dacnyxk58ijqq4dhp0"))))
3202 (build-system gnu-build-system)
3203 (arguments
3204 `(#:phases
3205 (modify-phases %standard-phases
3206 (add-after 'unpack 'autotools
3207 (lambda _
63181c85
TGR
3208 (invoke "sh" "autogen.sh"))))))
3209 ;; TODO: opencv for additional face detection filters.
49e1d76d 3210 (inputs
3211 `(("gavl" ,gavl)
3212 ("cairo" ,cairo)))
3213 (native-inputs
3214 `(("pkg-config" ,pkg-config)
3215 ("libtool" ,libtool)
3216 ("automake" ,automake)
3217 ("autoconf" ,autoconf)))
3218 (home-page "https://www.dyne.org/software/frei0r/")
3219 (synopsis "Minimalistic plugin API for video effects")
3220 (description
3221 "Frei0r is a minimalistic plugin API for video effects.
3222The main emphasis is on simplicity for an API that will round up
3223the most common video effects into simple filters, sources and
3224mixers that can be controlled by parameters. Frei0r wants to
3225provide a way to share these simple effects between many
3226applications, avoiding their reimplementation by different projects.
3227It counts more than 100 plugins.")
3228 (license (list license:gpl2+
3229 ;; The following files are licensed as LGPL2.1+:
3230 ;; src/generator/ising0r/ising0r.c
3231 ;; src/generator/onecol0r/onecol0r.cpp
3232 ;; src/generator/nois0r/nois0r.cpp
3233 ;; src/generator/lissajous0r/lissajous0r.cpp
3234 ;; src/filter/ndvi/gradientlut.hpp
3235 ;; src/filter/ndvi/ndvi.cpp
3236 ;; src/filter/facedetect/facedetect.cpp
3237 license:lgpl2.1+))))
eb3e41c9
LC
3238
3239(define-public motion
3240 (package
3241 (name "motion")
a9e9c738 3242 (version "4.2.2")
eb3e41c9
LC
3243 (home-page "https://motion-project.github.io/")
3244 (source (origin
2ea678fa
TGR
3245 (method git-fetch)
3246 (uri (git-reference
3247 (url "https://github.com/Motion-Project/motion.git")
3248 (commit (string-append "release-" version))))
eb3e41c9
LC
3249 (sha256
3250 (base32
a9e9c738 3251 "05c1gx75xy2hw49x6vkydvwxbr80kipsc3nr906k3hq8735svx6f"))
2ea678fa 3252 (file-name (git-file-name name version))))
eb3e41c9
LC
3253 (build-system gnu-build-system)
3254 (native-inputs
464f5447 3255 `(("autoconf" ,autoconf-wrapper)
eb3e41c9 3256 ("automake" ,automake)
33bddd30 3257 ("gettext" ,gettext-minimal)
eb3e41c9
LC
3258 ("pkg-config" ,pkg-config)))
3259 (inputs
3260 `(("libjpeg" ,libjpeg)
bb5c508c 3261 ("ffmpeg" ,ffmpeg-3.4)
c3069cd1 3262 ("libmicrohttpd" ,libmicrohttpd)
eb3e41c9
LC
3263 ("sqlite" ,sqlite)))
3264 (arguments
3265 '(#:phases (modify-phases %standard-phases
189be331 3266 (replace 'bootstrap
eb3e41c9
LC
3267 (lambda _
3268 (patch-shebang "version.sh")
3269 (invoke "autoreconf" "-vfi"))))
3270 #:configure-flags '("--sysconfdir=/etc")
3271 #:make-flags (list (string-append "sysconfdir="
3272 (assoc-ref %outputs "out")
3273 "/etc"))
3274
a9e9c738 3275 #:tests? #f)) ; no 'check' target
eb3e41c9
LC
3276 (synopsis "Detect motion from video signals")
3277 (description
3278 "Motion is a program that monitors the video signal from one or more
3279cameras and is able to detect if a significant part of the picture has
3280changed. Or in other words, it can detect motion.")
3281
3282 ;; Some files say "version 2" and others "version 2 or later".
3283 (license license:gpl2)))
f27f264e
PN
3284
3285(define-public subdl
3286 (let ((commit "4cf5789b11f0ff3f863b704b336190bf968cd471")
3287 (revision "1"))
3288 (package
3289 (name "subdl")
3290 (version (git-version "1.0.3" revision commit))
3291 (source (origin
3292 (method git-fetch)
3293 (uri (git-reference
3294 (url "https://github.com/alexanderwink/subdl.git")
3295 (commit commit)))
3296 (file-name (git-file-name name version))
3297 (sha256
3298 (base32
3299 "0kmk5ck1j49q4ww0lvas2767kwnzhkq0vdwkmjypdx5zkxz73fn8"))))
3300 (build-system trivial-build-system)
3301 (arguments
3302 `(#:modules ((guix build utils))
3303 #:builder (begin
3304 (use-modules (guix build utils))
3305 (let* ((out (assoc-ref %outputs "out"))
3306 (bin (string-append out "/bin"))
3307 (source (assoc-ref %build-inputs "source"))
3308 (python (assoc-ref %build-inputs "python")))
3309 (install-file (string-append source "/subdl") bin)
3310 (patch-shebang (string-append bin "/subdl")
3311 (list (string-append python "/bin")))))))
3312 (inputs `(("python" ,python)))
3313 (synopsis "Command-line tool for downloading subtitles from opensubtitles.org")
3314 (description "Subdl is a command-line tool for downloading subtitles from
3315opensubtitles.org. By default, it will search for English subtitles, display
3316the results, download the highest-rated result in the requested language and
3317save it to the appropriate filename.")
3318 (license license:gpl3+)
3319 (home-page "https://github.com/alexanderwink/subdl"))))
eb88e2c1
CL
3320
3321(define-public l-smash
3322 (package
3323 (name "l-smash")
3324 (version "2.14.5")
3325 (source (origin
45b2eff0
RW
3326 (method git-fetch)
3327 (uri (git-reference
3328 (url "https://github.com/l-smash/l-smash.git")
3329 (commit (string-append "v" version))))
3330 (file-name (git-file-name name version))
eb88e2c1
CL
3331 (sha256
3332 (base32
45b2eff0 3333 "0rcq9727im6kd8da8b7kzzbzxdldvmh5nsljj9pvr4m3lj484b02"))))
eb88e2c1
CL
3334 (build-system gnu-build-system)
3335 (arguments
3336 `(#:tests? #f ;no tests
3337 #:make-flags
3338 (list (string-append "LDFLAGS=-Wl,-L.,-rpath="
3339 (assoc-ref %outputs "out") "/lib"))
3340 #:phases
3341 (modify-phases %standard-phases
3342 ;; configure fails if it is followed by CONFIG_SHELL
3343 (replace 'configure
3344 (lambda* (#:key outputs #:allow-other-keys)
3345 (let ((out (assoc-ref outputs "out")))
3346 (invoke "./configure" (string-append "--prefix=" out)
3347 "--disable-static")))))))
3348 (native-inputs
3349 `(("which" ,which)))
3350 (home-page "https://l-smash.github.io/l-smash/")
3351 (synopsis "MP4 multiplexer and demultiplexer library")
3352 (description
3353 "L-SMASH is a cross-platform library that handles the ISO base media file
3354format and some of its derived file formats, including MP4. It operates as a
3355multiplexer and demultiplexer, and can mux video and audio in several formats
3356using standalone executable files.")
3357 (license license:isc)))
a0135eee
LF
3358
3359(define-public qtfaststart
3360 (package
3361 (name "qtfaststart")
3362 (version "1.8")
3363 (source (origin
3364 (method url-fetch)
3365 (uri (pypi-uri "qtfaststart" version))
3366 (sha256
3367 (base32
3368 "0hcjfik8hhb1syqvyh5c6aillpvzal26nkjflcq1270z64aj6i5h"))))
3369 (build-system python-build-system)
3370 (arguments
3371 '(#:tests? #f)) ; no test suite
3372 (synopsis "Move QuickTime and MP4 metadata to the beginning of the file")
3373 (description "qtfaststart enables streaming and pseudo-streaming of
3374QuickTime and MP4 files by moving metadata and offset information to the
3375beginning of the file. It can also print some useful information about the
3376structure of the file. This program is based on qt-faststart.c from the FFmpeg
3377project, which is released into the public domain, as well as ISO 14496-12:2005
3378(the official spec for MP4), which can be obtained from the ISO or found
3379online.")
3380 (home-page "https://github.com/danielgtaylor/qtfaststart")
3381 (license license:expat)))
485638cd
LF
3382
3383(define-public vidstab
ad64f271
LF
3384 (let ((commit "aeabc8daa7904f9edf7441a11f293965a5ef53b8")
3385 (revision "0"))
3386 (package
3387 (name "vidstab")
3388 (version (git-version "1.1.0" revision commit))
3389 (source (origin
3390 (method git-fetch)
3391 (uri (git-reference
3392 (url "https://github.com/georgmartius/vid.stab.git")
3393 (commit commit)))
3394 (file-name (git-file-name name version))
3395 (sha256
3396 (base32
3397 "042iy0f3khwzr68djzvqgn301sy21ljvkf52rnc2c73q7ircnzzn"))))
3398 (build-system cmake-build-system)
3399 (arguments
3400 '(#:tests? #f)) ; tests are not run as part of standard build process
3401 (home-page "http://public.hronopik.de/vid.stab/")
3402 (synopsis "Video stabilization library")
3403 (description "Vidstab is a video stabilization library which can be used
485638cd
LF
3404with FFmpeg. A video acquired using a hand-held camera or a camera mounted on a
3405vehicle typically suffers from undesirable shakes and jitters. Activities such
3406as surfing, skiing, riding and walking while shooting videos are especially
3407prone to erratic camera shakes. Vidstab targets these video contents to help
3408create smoother and stable videos.")
ad64f271 3409 (license license:gpl2+))))
579a9cde
EB
3410
3411(define-public libopenshot
3412 (package
3413 (name "libopenshot")
4994174f 3414 (version "0.2.3")
579a9cde
EB
3415 (source (origin
3416 (method git-fetch)
3417 (uri (git-reference
3418 (url "https://github.com/OpenShot/libopenshot")
3419 (commit (string-append "v" version))))
3420 (file-name (git-file-name name version))
3421 (sha256
3422 (base32
4994174f 3423 "0r1qmr8ar5n72603xkj9h065vbpznrqsq88kxxmn9n8djyyvk03k"))
579a9cde
EB
3424 (modules '((guix build utils)))
3425 (snippet '(begin
3426 ;; Allow overriding of the python installation dir
3427 (substitute* "src/bindings/python/CMakeLists.txt"
3428 (("(SET\\(PYTHON_MODULE_PATH.*)\\)" _ set)
3429 (string-append set " CACHE PATH "
3430 "\"Python bindings directory\")")))
277becbb 3431 (delete-file-recursively "thirdparty")
4994174f 3432 #t))))
579a9cde
EB
3433 (build-system cmake-build-system)
3434 (native-inputs
3435 `(("pkg-config" ,pkg-config)
3436 ("python" ,python)
3437 ("swig" ,swig)
3438 ("unittest++" ,unittest-cpp)))
3439 (propagated-inputs ;all referenced in installed headers
3440 `(("cppzmq" ,cppzmq)
3441 ("ffmpeg" ,ffmpeg)
3442 ("imagemagick" ,imagemagick)
3443 ("jsoncpp" ,jsoncpp)
3444 ("libopenshot-audio" ,libopenshot-audio)
ad656e70
EF
3445 ("qtbase" ,qtbase)
3446 ("qtmultimedia" ,qtmultimedia)
579a9cde
EB
3447 ("zeromq" ,zeromq)))
3448 (arguments
3449 `(#:configure-flags
3450 (list (string-append "-DPYTHON_MODULE_PATH:PATH=" %output "/lib/python"
3451 ,(version-major+minor (package-version python))
3452 "/site-packages")
3453 "-DUSE_SYSTEM_JSONCPP:BOOL=ON")
3454 #:phases
3455 (modify-phases %standard-phases
3456 (add-before 'configure 'set-vars
3457 (lambda* (#:key inputs #:allow-other-keys)
3458 (setenv "LIBOPENSHOT_AUDIO_DIR"
3459 (assoc-ref inputs "libopenshot-audio"))
3460 (setenv "ZMQDIR"
3461 (assoc-ref inputs "zeromq"))
3462 (setenv "UNITTEST_DIR"
3463 (string-append (assoc-ref inputs "unittest++")
3464 "/include/UnitTest++"))
3465 #t)))))
3466 (home-page "https://openshot.org")
3467 (synopsis "Video-editing, animation, and playback library")
3468 (description "OpenShot Library (libopenshot) is a powerful C++ video
3469editing library with a multi-threaded and feature rich video editing
3470API. It includes bindings for Python, Ruby, and other languages.")
3471 (license license:lgpl3+)))
69a3fcc0
EB
3472
3473(define-public openshot
3474 (package
3475 (name "openshot")
fc83a891 3476 (version "2.4.4")
69a3fcc0
EB
3477 (source (origin
3478 (method git-fetch)
3479 (uri (git-reference
3480 (url "https://github.com/OpenShot/openshot-qt")
3481 (commit (string-append "v" version))))
3482 (file-name (git-file-name name version))
3483 (sha256
3484 (base32
2afb7939
EF
3485 "0mg63v36h7l8kv2sgf6x8c1n3ygddkqqwlciz7ccxpbm4x1idqba"))
3486 (modules '((guix build utils)))
3487 (snippet
3488 '(begin
3489 (delete-file-recursively "src/images/fonts") #t))))
69a3fcc0
EB
3490 (build-system python-build-system)
3491 (inputs
3492 `(("ffmpeg" ,ffmpeg)
2afb7939 3493 ("font-ubuntu" ,font-ubuntu)
69a3fcc0
EB
3494 ("libopenshot" ,libopenshot)
3495 ("python" ,python)
3496 ("python-pyqt" ,python-pyqt)
3497 ("python-pyzmq" ,python-pyzmq)
3498 ("python-requests" ,python-requests)
3499 ("qtsvg" ,qtsvg)))
3500 (arguments
3501 `(#:tests? #f ;no tests
a512aa91
EF
3502 #:modules ((guix build python-build-system)
3503 (guix build qt-utils)
3504 (guix build utils))
3505 #:imported-modules (,@%python-build-system-modules
3506 (guix build qt-utils))
69a3fcc0
EB
3507 #:phases (modify-phases %standard-phases
3508 (delete 'build) ;install phase does all the work
2afb7939
EF
3509 (add-after 'unpack 'patch-font-location
3510 (lambda* (#:key inputs #:allow-other-keys)
3511 (let ((font (assoc-ref inputs "font-ubuntu")))
3512 (substitute* "src/classes/app.py"
3513 (("info.IMAGES_PATH") (string-append "\"" font "\""))
3514 (("fonts") "share/fonts/truetype")))
3515 #t))
69a3fcc0
EB
3516 (add-before 'install 'set-tmp-home
3517 (lambda _
3518 ;; src/classes/info.py "needs" to create several
3519 ;; directories in $HOME when loaded during build
3520 (setenv "HOME" "/tmp")
3521 #t))
3522 (add-after 'install 'wrap-program
a512aa91
EF
3523 (lambda* (#:key outputs #:allow-other-keys)
3524 (let ((out (assoc-ref outputs "out")))
3525 (wrap-qt-program out "openshot-qt"))
3526 #t)))))
69a3fcc0
EB
3527 (home-page "https://openshot.org")
3528 (synopsis "Video editor")
3529 (description "OpenShot takes your videos, photos, and music files and
3530helps you create the film you have always dreamed of. Easily add sub-titles,
3531transitions, and effects and then export your film to many common formats.")
3532 (license license:gpl3+)))
8c380a01
EF
3533
3534(define-public dav1d
3535 (package
3536 (name "dav1d")
89ccc9ce 3537 (version "0.4.0")
8c380a01
EF
3538 (source
3539 (origin
3540 (method url-fetch)
34a16901 3541 (uri (list ;; The canonical download site.
5f7c036c
LF
3542 (string-append "https://downloads.videolan.org/pub/videolan/"
3543 "dav1d/" version "/dav1d-" version ".tar.xz")
3544
3545 ;; Auto-generated tarballs from the Git repo?
3546 (string-append "https://code.videolan.org/videolan/dav1d/-/"
3547 "archive/" version "/dav1d-" version ".tar.bz2")))
8c380a01 3548 (sha256
89ccc9ce
LF
3549 (base32
3550 "08yqml01lbcpflrshdpvn88jv3xd8gm559qikiwyrh41a3kb4lr5"))))
8c380a01
EF
3551 (build-system meson-build-system)
3552 (native-inputs `(("nasm" ,nasm)))
3553 (home-page "https://code.videolan.org/videolan/dav1d")
3554 (synopsis "AV1 decoder")
3555 (description "dav1d is a new AV1 cross-platform decoder, and focused on
3556speed and correctness.")
3557 (license license:bsd-2)))
20b4aa6b
RH
3558
3559(define-public wlstream
3560 (let ((commit "182076a94562b128c3a97ecc53cc68905ea86838")
3561 (revision "1"))
3562 (package
3563 (name "wlstream")
3564 (version (git-version "0.0" revision commit))
3565 (source
1d591432
RH
3566 (origin
3567 (method git-fetch)
3568 (uri (git-reference
3569 (url "https://github.com/atomnuker/wlstream.git")
3570 (commit commit)))
3571 (file-name (git-file-name name version))
3572 (sha256
3573 (base32
3574 "01qbcgfl3g9kfwn1jf1z9pdj3bvf5lmg71d1vwkcllc2az24bjqp"))))
20b4aa6b
RH
3575 (build-system meson-build-system)
3576 (native-inputs `(("libdrm" ,libdrm)
3577 ("pkg-config" ,pkg-config)))
3578 (inputs `(("ffmpeg" ,ffmpeg)
3579 ("pulseaudio" ,pulseaudio)
3580 ("wayland" ,wayland)
3581 ("wayland-protocols" ,wayland-protocols)))
3582 (home-page "https://github.com/atomnuker/wlstream")
3583 (synopsis "Screen capture tool for Wayland sessions")
3584 (description "Wlstream is a screen capture tool for recording audio and
3585video from a Wayland session.")
3586 (license license:lgpl2.1+))))
08486153
PN
3587
3588(define-public gaupol
3589 (package
3590 (name "gaupol")
90d537f8 3591 (version "1.6")
08486153
PN
3592 (source (origin
3593 (method git-fetch)
3594 (uri (git-reference
3595 (url "https://github.com/otsaloma/gaupol/")
3596 (commit version)))
3597 (file-name (git-file-name name version))
3598 (sha256
3599 (base32
90d537f8 3600 "164wlxxjiqvkzbqjzvqvz2zkn0kgqmhn52294xx4vc9b9ngdnn0m"))))
08486153
PN
3601 (build-system python-build-system)
3602 (native-inputs
3603 `(("gettext" ,gettext-minimal)
3604 ("pkg-config" ,pkg-config)))
3605 (inputs
3606 `(("python-pygobject" ,python-pygobject)
3607 ("gtk+" ,gtk+)
3608 ("python-pycairo" ,python-pycairo) ; Required or else clicking on a subtitle line fails.
3609 ("python-chardet" ,python-chardet) ; Optional: Character encoding detection.
3610 ("gtkspell3" ,gtkspell3) ; Optional: Inline spell-checking.
3611 ("iso-codes" ,iso-codes) ; Optional: Translations.
3612 ("gstreamer" ,gstreamer)
3613 ("gst-libav" ,gst-libav)
3614 ("gst-plugins-base" ,gst-plugins-base)
3615 ("gst-plugins-good" ,gst-plugins-good)
3616 ("gst-plugins-bad" ,gst-plugins-bad)
3617 ("gst-plugins-ugly" ,gst-plugins-ugly)))
3618 (arguments
3619 `(#:tests? #f ; Tests seem to require networking.
3620 #:phases
3621 (modify-phases %standard-phases
3622 ;; gaupol's setup.py script does not support one of the Python build
3623 ;; system's default flags, "--single-version-externally-managed".
3624 (replace 'install
3625 (lambda* (#:key outputs #:allow-other-keys)
3626 (invoke "python" "setup.py" "install"
3627 (string-append "--prefix=" (assoc-ref outputs "out"))
3628 "--root=/")))
3629 (add-after 'install 'wrap-gaupol
3630 (lambda* (#:key outputs #:allow-other-keys)
3631 (let ((out (assoc-ref outputs "out"))
3632 (gst-plugin-path (getenv "GST_PLUGIN_SYSTEM_PATH"))
3633 (gi-typelib-path (getenv "GI_TYPELIB_PATH")))
3634 (wrap-program (string-append out "/bin/gaupol")
3635 `("GST_PLUGIN_SYSTEM_PATH" ":" prefix (,gst-plugin-path))
3636 `("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path))))
3637 #t))
3638 (add-after 'unpack 'patch-data-dir
3639 ;; Fix some path variables that setup.py seems to garble.
3640 (lambda* (#:key outputs #:allow-other-keys)
3641 (let ((out (assoc-ref outputs "out")))
3642 (substitute* "setup.py"
3643 (("DATA_DIR = \\{!r\\}\"\\.format\\(data_dir\\)")
3644 (string-append "DATA_DIR = '" out "/share/gaupol'\""))
3645 (("LOCALE_DIR = \\{!r\\}\"\\.format\\(locale_dir\\)")
3646 (string-append "LOCALE_DIR = '" out "/share/locale'\"")))
3647 #t))))))
3648 (synopsis "Editor for text-based subtitles")
3649 (description
3650 "Gaupol supports multiple subtitle file formats and provides means of
3651creating subtitles, editing texts and timing subtitles to match video. The
3652user interface features a builtin video player and is designed with attention
3653to convenience of translating and batch processing of multiple documents.")
3654 (home-page "https://otsaloma.io/gaupol/")
3655 (license license:gpl3+)))