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