gnu: ffmpeg: Update to 4.1.1.
[jackhill/guix/guix.git] / gnu / packages / video.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2013, 2014, 2015, 2016 Andreas Enge <andreas@enge.fr>
3 ;;; Copyright © 2014, 2015, 2016 David Thompson <davet@gnu.org>
4 ;;; Copyright © 2014, 2015, 2016, 2018 Mark H Weaver <mhw@netris.org>
5 ;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
6 ;;; Copyright © 2015, 2016, 2017, 2018, 2019 Efraim Flashner <efraim@flashner.co.il>
7 ;;; Copyright © 2015 Andy Patterson <ajpatter@uwaterloo.ca>
8 ;;; Copyright © 2015, 2018 Ricardo Wurmus <rekado@elephly.net>
9 ;;; Copyright © 2015, 2016, 2017, 2018 Alex Vong <alexvong1995@gmail.com>
10 ;;; Copyright © 2016, 2017 Alex Griffin <a@ajgrf.com>
11 ;;; Copyright © 2016 Kei Kebreau <kkebreau@posteo.net>
12 ;;; Copyright © 2016 Dmitry Nikolaev <cameltheman@gmail.com>
13 ;;; Copyright © 2016 Andy Patterson <ajpatter@uwaterloo.ca>
14 ;;; Copyright © 2016, 2017 Nils Gillmann <ng0@n0.is>
15 ;;; Copyright © 2016, 2018, 2019 Eric Bavier <bavier@member.fsf.org>
16 ;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
17 ;;; Copyright © 2017 Feng Shu <tumashu@163.com>
18 ;;; Copyright © 2017, 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
19 ;;; Copyright © 2017 Chris Marusich <cmmarusich@gmail.com>
20 ;;; Copyright © 2017 Thomas Danckaert <post@thomasdanckaert.be>
21 ;;; Copyright © 2017 Ethan R. Jones <doubleplusgood23@gmail.com>
22 ;;; Copyright © 2017, 2018 Clément Lassieur <clement@lassieur.org>
23 ;;; Copyright © 2017 Gregor Giesen <giesen@zaehlwerk.net>
24 ;;; Copyright © 2017, 2018, 2019 Rutger Helling <rhelling@mykolab.com>
25 ;;; Copyright © 2018 Roel Janssen <roel@gnu.org>
26 ;;; Copyright © 2018, 2019 Marius Bakke <mbakke@fastmail.com>
27 ;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
28 ;;; Copyright © 2018 Leo Famulari <leo@famulari.name>
29 ;;; Copyright © 2018 Brendan Tildesley <brendan.tildesley@openmailbox.org>
30 ;;; Copyright © 2018 Arun Isaac <arunisaac@systemreboot.net>
31 ;;; Copyright © 2018 Björn Höfling <bjoern.hoefling@bjoernhoefling.de>
32 ;;; Copyright © 2018 Mark Meyer <mark@ofosos.org>
33 ;;; Copyright © 2018 Gábor Boskovit <boskovits@gmail.com>
34 ;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@gmail.com>
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)
52 #:use-module (ice-9 match)
53 #:use-module (srfi srfi-1)
54 #:use-module (srfi srfi-26)
55 #:use-module ((guix licenses) #:prefix license:)
56 #:use-module (guix utils)
57 #:use-module (guix packages)
58 #:use-module (guix download)
59 #:use-module (guix git-download)
60 #:use-module (guix svn-download)
61 #:use-module (guix build-system cmake)
62 #:use-module (guix build-system gnu)
63 #:use-module (guix build-system glib-or-gtk)
64 #:use-module (guix build-system meson)
65 #:use-module (guix build-system perl)
66 #:use-module (guix build-system python)
67 #:use-module (guix build-system waf)
68 #:use-module (guix build-system trivial)
69 #:use-module (gnu packages)
70 #:use-module (gnu packages algebra)
71 #:use-module (gnu packages assembly)
72 #:use-module (gnu packages audio)
73 #:use-module (gnu packages autotools)
74 #:use-module (gnu packages avahi)
75 #:use-module (gnu packages backup)
76 #:use-module (gnu packages base)
77 #:use-module (gnu packages bison)
78 #:use-module (gnu packages boost)
79 #:use-module (gnu packages cdrom)
80 #:use-module (gnu packages check)
81 #:use-module (gnu packages cmake)
82 #:use-module (gnu packages compression)
83 #:use-module (gnu packages cpp)
84 #:use-module (gnu packages curl)
85 #:use-module (gnu packages dejagnu)
86 #:use-module (gnu packages dns)
87 #:use-module (gnu packages docbook)
88 #:use-module (gnu packages documentation)
89 #:use-module (gnu packages elf)
90 #:use-module (gnu packages file)
91 #:use-module (gnu packages flex)
92 #:use-module (gnu packages fontutils)
93 #:use-module (gnu packages freedesktop)
94 #:use-module (gnu packages fribidi)
95 #:use-module (gnu packages gettext)
96 #:use-module (gnu packages ghostscript)
97 #:use-module (gnu packages gl)
98 #:use-module (gnu packages glib)
99 #:use-module (gnu packages guile)
100 #:use-module (gnu packages gnome)
101 #:use-module (gnu packages gnunet)
102 #:use-module (gnu packages gnupg)
103 #:use-module (gnu packages gstreamer)
104 #:use-module (gnu packages gtk)
105 #:use-module (gnu packages image)
106 #:use-module (gnu packages imagemagick)
107 #:use-module (gnu packages iso-codes)
108 #:use-module (gnu packages libidn)
109 #:use-module (gnu packages libreoffice)
110 #:use-module (gnu packages linux)
111 #:use-module (gnu packages lua)
112 #:use-module (gnu packages m4)
113 #:use-module (gnu packages man)
114 #:use-module (gnu packages mp3)
115 #:use-module (gnu packages ncurses)
116 #:use-module (gnu packages networking)
117 #:use-module (gnu packages ocr)
118 #:use-module (gnu packages perl)
119 #:use-module (gnu packages pkg-config)
120 #:use-module (gnu packages popt)
121 #:use-module (gnu packages protobuf)
122 #:use-module (gnu packages pulseaudio)
123 #:use-module (gnu packages python)
124 #:use-module (gnu packages python-crypto)
125 #:use-module (gnu packages python-web)
126 #:use-module (gnu packages python-xyz)
127 #:use-module (gnu packages qt)
128 #:use-module (gnu packages rdesktop)
129 #:use-module (gnu packages ruby)
130 #:use-module (gnu packages samba)
131 #:use-module (gnu packages sdl)
132 #:use-module (gnu packages serialization)
133 #:use-module (gnu packages shells)
134 #:use-module (gnu packages sqlite)
135 #:use-module (gnu packages ssh)
136 #:use-module (gnu packages swig)
137 #:use-module (gnu packages texinfo)
138 #:use-module (gnu packages textutils)
139 #:use-module (gnu packages tls)
140 #:use-module (gnu packages time)
141 #:use-module (gnu packages upnp)
142 #:use-module (gnu packages version-control)
143 #:use-module (gnu packages vulkan)
144 #:use-module (gnu packages web)
145 #:use-module (gnu packages webkit)
146 #:use-module (gnu packages wxwidgets)
147 #:use-module (gnu packages xdisorg)
148 #:use-module (gnu packages xiph)
149 #:use-module (gnu packages xml)
150 #:use-module (gnu packages xorg))
151
152 (define-public aalib
153 (package
154 (name "aalib")
155 (version "1.4rc5")
156 (source (origin
157 (method url-fetch)
158 (uri (string-append "mirror://sourceforge/aa-project/aa-lib/"
159 version "/" name "-" version ".tar.gz"))
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
169 `(#:phases
170 (modify-phases %standard-phases
171 (replace 'configure
172 (lambda* (#:key build inputs outputs #:allow-other-keys)
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"))
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))))))))
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.
198 In fact, there is no graphical output possible. AA-lib replaces those
199 old-fashioned output methods with powerful ascii-art renderer.")
200 (license license:lgpl2.0+)))
201
202 (define-public liba52
203 (package
204 (name "liba52")
205 (version "0.7.4")
206 (source (origin
207 (method url-fetch)
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"))
213 (sha256
214 (base32
215 "0czccp4fcpf2ykp16xcrzdfmnircz1ynhls334q374xknd5747d2"))
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"))))
220 (build-system gnu-build-system)
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)))
226 (arguments `(#:configure-flags '("--enable-shared")
227 #:phases
228 (modify-phases %standard-phases
229 ;; XXX We need to run ./bootstrap because of the build
230 ;; system fixes above.
231 (replace 'bootstrap
232 (lambda _ (invoke "sh" "bootstrap"))))))
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
236 A/52 standard is used in a variety of applications, including digital
237 television and DVD. It is also known as AC-3.")
238 (license license:gpl2+)))
239
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
267 (define-public libx264
268 (package
269 (name "libx264")
270 (version "20180810-2245")
271 (source (origin
272 (method url-fetch)
273 (uri (string-append "https://download.videolan.org/pub/x264/snapshots/"
274 "x264-snapshot-" version "-stable.tar.bz2"))
275 (sha256
276 (base32
277 "0f25f39imas9pcqm7lnaa0shhjmf42hdx7jxzcnvxc7qsb7lh1bv"))))
278 (build-system gnu-build-system)
279 (native-inputs
280 `(("pkg-config" ,pkg-config)
281 ("nasm" ,nasm)))
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).
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 '()))))
303 (home-page "https://www.videolan.org/developers/x264.html")
304 (synopsis "H.264 video coding library")
305 (description "libx264 is an advanced encoding library for creating
306 H.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
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)))
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))))
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)))))
384 (apply invoke "rake" -j))))
385 (replace 'check
386 (lambda _
387 (invoke "rake" "tests/unit")))
388 (replace 'install
389 (lambda _
390 (invoke "rake" "install"))))))
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})
396 and creating Matroska files from other media files (@code{mkvmerge}).")
397 (license license:gpl2)))
398
399 (define-public x265
400 (package
401 (name "x265")
402 (version "3.0")
403 (outputs '("out" "static"))
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
411 "0qh65wdpasrspkm1y0dlfa123myax568yi0sas0lmg5b1hkgrff5"))
412 (patches (search-patches "x265-arm-flags.patch"))
413 (modules '((guix build utils)))
414 (snippet '(begin
415 (delete-file-recursively "source/compat/getopt")
416 #t))))
417 (build-system cmake-build-system)
418 (arguments
419 `(#:tests? #f ; tests are skipped if cpu-optimized code isn't built
420 #:configure-flags
421 ;; Ensure position independent code for everyone.
422 (list "-DENABLE_PIC=TRUE"
423 ,@(if (string-prefix? "armhf" (or (%current-system)
424 (%current-target-system)))
425 '("-DENABLE_ASSEMBLY=OFF")
426 '())
427 (string-append "-DCMAKE_INSTALL_PREFIX="
428 (assoc-ref %outputs "out")))
429 #:phases
430 (modify-phases %standard-phases
431 (add-after 'unpack 'prepare-build
432 (lambda _
433 (delete-file-recursively "build")
434 (chdir "source")
435 ;; recognize armv8 in 32-bit mode as ARM
436 (substitute* "CMakeLists.txt"
437 (("armv6l") "armv8l"))
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"
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)))))
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,
494 designed to encode video or images into an H.265 / HEVC encoded bitstream.")
495 (license license:gpl2+)))
496
497 (define-public libass
498 (package
499 (name "libass")
500 (version "0.14.0")
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
508 "18iqznl4mabhj9ywfsz4kwvbsplcv1jjxq50nxssvbj8my1267w8"))))
509 (build-system gnu-build-system)
510 (native-inputs
511 `(("pkg-config" ,pkg-config)
512 ("nasm" ,nasm)))
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
522 ASS/SSA (Advanced Substation Alpha/SubStation Alpha) subtitle format.")
523 (license license:isc)))
524
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)
541 ("imlib2" ,imlib2)
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
549 pixels, so that it can work on older video cards or text terminals. It
550 supports Unicode, 2048 colors, dithering of color images, and advanced text
551 canvas operations.")
552 (license (license:fsf-free "file://COPYING")))) ;WTFPL version 2
553
554 (define-public libdca
555 (package
556 (name "libdca")
557 (version "0.0.6")
558 (source (origin
559 (method url-fetch)
560 (uri (string-append
561 "https://download.videolan.org/pub/videolan/libdca/"
562 version "/libdca-" version ".tar.bz2"))
563 (sha256
564 (base32
565 "0h0zvcn97i9kyljdpifzi8in9xnw31fx3b3ggj96p8h0l2d8mycq"))))
566 (build-system gnu-build-system)
567 (home-page "https://www.videolan.org/developers/libdca.html")
568 (synopsis "DTS Coherent Acoustics decoder")
569 (description "libdca is a library for decoding DTS Coherent Acoustics
570 streams.")
571 (license license:gpl2+)))
572
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
580 "mirror://sourceforge/" name "/" name "/"
581 version "/" name "-" version ".tar.gz"))
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
591 video, the encoding format used by most digital camcorders, typically those
592 that support the IEEE 1394 (a.k.a. FireWire or i.Link) interface. Libdv was
593 developed according to the official standards for DV video: IEC 61834 and
594 SMPTE 314M.")
595 (license license:lgpl2.1+)))
596
597 (define-public libmatroska
598 (package
599 (name "libmatroska")
600 (version "1.4.9")
601 (source
602 (origin
603 (method url-fetch)
604 (uri (string-append "https://dl.matroska.org/downloads/"
605 name "/" name "-" version ".tar.xz"))
606 (sha256
607 (base32
608 "1j4mjzx6mjzfjf9hz8g4w84krf5jccmr5cyynll0j1vwv3aiv9iq"))))
609 (build-system cmake-build-system)
610 (inputs
611 `(("libebml" ,libebml)))
612 (arguments
613 `(#:configure-flags
614 (list "-DBUILD_SHARED_LIBS=YES")
615 #:tests? #f)) ; no test suite
616 (home-page "https://www.matroska.org")
617 (synopsis "C++ library to parse Matroska files (.mkv and .mka)")
618 (description
619 "Matroska aims to become the standard of multimedia container formats.
620 It is based on @dfn{EBML} (Extensible Binary Meta Language), a binary derivative
621 of XML. EBML enables the Matroska Development Team to gain significant
622 advantages in terms of future format extensibility, without breaking file
623 support in old parsers.
624 libebml is a C++ library to read and write EBML files.")
625 (license license:lgpl2.1)))
626
627 (define-public libva
628 (package
629 (name "libva")
630 (version "2.3.0")
631 (source
632 (origin
633 (method url-fetch)
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")))
641 (sha256
642 (base32 "1r6wiw4k044cpb39rfqqdw6qmzw0268whpz124hywck9v980x130"))))
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)
651 ("mesa" ,mesa)
652 ("wayland" ,wayland)))
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\"")
662 (string-append "\"" out "/lib/libva-x11.so.%d\"")))
663 #t))))
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"))))
675 (home-page "https://www.freedesktop.org/wiki/Software/vaapi/")
676 (synopsis "Video acceleration library")
677 (description "The main motivation for VA-API (Video Acceleration API) is
678 to enable hardware accelerated video decode/encode at various
679 entry-points (VLD, IDCT, Motion Compensation etc.) for prevailing coding
680 standards (MPEG-2, MPEG-4 ASP/H.263, MPEG-4 AVC/H.264, and VC-1/VMW3).")
681 (license license:expat)))
682
683 (define-public ffmpeg
684 (package
685 (name "ffmpeg")
686 (version "4.1.1")
687 (source (origin
688 (method url-fetch)
689 (uri (string-append "https://ffmpeg.org/releases/ffmpeg-"
690 version ".tar.xz"))
691 (sha256
692 (base32
693 "11id9pm4azfrhpa4vr2yaw31dzgd55kl1zsxwn24sczx9n14jdrp"))))
694 (build-system gnu-build-system)
695 (inputs
696 `(("fontconfig" ,fontconfig)
697 ("freetype" ,freetype)
698 ("frei0r-plugins" ,frei0r-plugins)
699 ("gnutls" ,gnutls)
700 ("opus" ,opus)
701 ("ladspa" ,ladspa)
702 ("lame" ,lame)
703 ("libass" ,libass)
704 ("libbluray" ,libbluray)
705 ("libcaca" ,libcaca)
706 ("libcdio-paranoia" ,libcdio-paranoia)
707 ("libdrm" ,libdrm)
708 ("libtheora" ,libtheora)
709 ("libva" ,libva)
710 ("libvdpau" ,libvdpau)
711 ("libvorbis" ,libvorbis)
712 ("libvpx" ,libvpx)
713 ("libx11" ,libx11)
714 ("libx264" ,libx264)
715 ("mesa" ,mesa)
716 ("openal" ,openal)
717 ("pulseaudio" ,pulseaudio)
718 ("sdl" ,sdl2)
719 ("soxr" ,soxr)
720 ("speex" ,speex)
721 ("twolame" ,twolame)
722 ("vidstab" ,vidstab)
723 ("x265" ,x265)
724 ("xvid" ,xvid)
725 ("zlib" ,zlib)))
726 (native-inputs
727 `(("bc" ,bc)
728 ("perl" ,perl)
729 ("pkg-config" ,pkg-config)
730 ("texinfo" ,texinfo)
731 ("python" ,python-2) ; scripts use interpreter python2
732 ("speex" ,speex)
733 ("yasm" ,yasm)))
734 (arguments
735 `(#:test-target "fate"
736 #:configure-flags
737 ;; possible additional inputs:
738 ;; --enable-avisynth enable reading of AviSynth script
739 ;; files [no]
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]
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
782 '("--enable-avresample"
783 "--enable-gpl" ; enable optional gpl licensed parts
784 "--enable-shared"
785 "--enable-frei0r"
786 "--enable-fontconfig"
787 "--enable-gnutls"
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"
797 "--enable-libsoxr"
798 "--enable-libspeex"
799 "--enable-libtheora"
800 "--enable-libtwolame"
801 "--enable-libvidstab"
802 "--enable-libvorbis"
803 "--enable-libvpx"
804 "--enable-libxvid"
805 "--enable-libx264"
806 "--enable-libx265"
807 "--enable-openal"
808 "--enable-opengl"
809 "--enable-libdrm"
810
811 "--enable-runtime-cpudetect"
812
813 ;; The HTML pages take 7.2 MiB
814 "--disable-htmlpages"
815
816 ;; The static libraries are 23 MiB
817 "--disable-static"
818
819 ;; Runtime cpu detection is not implemented on
820 ;; MIPS, so we disable some features.
821 "--disable-mips32r2"
822 "--disable-mipsdsp"
823 "--disable-mipsdspr2"
824 "--disable-mipsfpu")
825 #:phases
826 (modify-phases %standard-phases
827 (replace
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"
834 (("#! /bin/sh") (string-append "#!" (which "sh"))))
835 (setenv "SHELL" (which "bash"))
836 (setenv "CONFIG_SHELL" (which "bash"))
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))))
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)
853 #t))))))
854 (home-page "https://www.ffmpeg.org/")
855 (synopsis "Audio and video framework")
856 (description "FFmpeg is a complete, cross-platform solution to record,
857 convert and stream audio and video. It includes the libavcodec
858 audio/video codec library.")
859 (license license:gpl2+)))
860
861 (define-public ffmpeg-3.4
862 (package
863 (inherit ffmpeg)
864 (version "3.4.5")
865 (source (origin
866 (method url-fetch)
867 (uri (string-append "https://ffmpeg.org/releases/ffmpeg-"
868 version ".tar.xz"))
869 (sha256
870 (base32
871 "0b59qk5wpc5ksiha76jbhb859g5gxa4w0k6afh3kgvgajiivs73l"))))))
872
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
901 (define-public ffmpegthumbnailer
902 (package
903 (name "ffmpegthumbnailer")
904 (version "2.2.0")
905 (source (origin
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))
911 (sha256
912 (base32
913 "0kl8aa547icy9b05njps02a8sw4yn4f8fzs228kig247sn09s4cp"))))
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
927 can be used by file managers to create thumbnails for your video files. The
928 thumbnailer uses ffmpeg to decode frames from the video files, so supported
929 videoformats depend on the configuration flags of ffmpeg.")
930 (license license:gpl2+)))
931
932 (define-public vlc
933 (package
934 (name "vlc")
935 (version "3.0.6")
936 (source (origin
937 (method url-fetch)
938 (uri (string-append
939 "https://download.videolan.org/pub/videolan/vlc/"
940 (car (string-split version #\-))
941 "/vlc-" version ".tar.xz"))
942 (sha256
943 (base32
944 "1lvyyahv6g9zv7m5g5qinyrwmw47zdsd5ysimb862j7kw15nvh8q"))))
945 (build-system gnu-build-system)
946 (native-inputs
947 `(("flex" ,flex)
948 ("bison" ,bison)
949 ("gettext" ,gettext-minimal)
950 ("git" ,git) ; needed for a test
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)
957 ("eudev" ,eudev)
958 ("flac" ,flac)
959 ("ffmpeg" ,ffmpeg)
960 ("fontconfig" ,fontconfig)
961 ("freetype" ,freetype)
962 ("fribidi" ,fribidi)
963 ("gnutls" ,gnutls)
964 ("liba52" ,liba52)
965 ("libarchive" ,libarchive)
966 ("libass" ,libass)
967 ("libavc1394" ,libavc1394)
968 ("libbluray" ,libbluray)
969 ("libcaca" ,libcaca)
970 ("libcddb" ,libcddb)
971 ("libdca" ,libdca)
972 ("libdvbpsi" ,libdvbpsi)
973 ("libdvdnav" ,libdvdnav)
974 ("libdvdread" ,libdvdread)
975 ("libebml" ,libebml)
976 ("libgcrypt" ,libgcrypt)
977 ("libidn" ,libidn)
978 ("libkate" ,libkate)
979 ("libmad" ,libmad)
980 ("libmatroska" ,libmatroska)
981 ("libmicrodns" ,libmicrodns)
982 ("libmodplug" ,libmodplug)
983 ("libmpeg2" ,libmpeg2)
984 ("libogg" ,libogg)
985 ("libpng" ,libpng)
986 ("libraw1394" ,libraw1394)
987 ("librsvg" ,librsvg)
988 ("libsamplerate" ,libsamplerate)
989 ("libsecret" ,libsecret)
990 ("libssh2" ,libssh2)
991 ("libupnp" ,libupnp)
992 ("libva" ,libva)
993 ("libvdpau" ,libvdpau)
994 ("libvorbis" ,libvorbis)
995 ("libvpx" ,libvpx-1.7)
996 ("libtheora" ,libtheora)
997 ("libx264" ,libx264)
998 ("libxext" ,libxext)
999 ("libxi" ,libxi)
1000 ("libxinerama" ,libxinerama)
1001 ("libxml2" ,libxml2)
1002 ("libxpm" ,libxpm)
1003 ("livemedia-utils" ,livemedia-utils)
1004 ("lua" ,lua-5.2)
1005 ("mesa" ,mesa)
1006 ("opus" ,opus)
1007 ("perl" ,perl)
1008 ("pulseaudio" ,pulseaudio)
1009 ("protobuf" ,protobuf)
1010 ("python" ,python-wrapper)
1011 ("qtbase" ,qtbase)
1012 ("qtsvg" ,qtsvg)
1013 ("qtx11extras" ,qtx11extras)
1014 ("samba" ,samba)
1015 ("sdl" ,sdl)
1016 ("sdl-image" ,sdl-image)
1017 ("speex" ,speex)
1018 ("speexdsp" ,speexdsp)
1019 ("taglib" ,taglib)
1020 ("twolame" ,twolame)
1021 ("unzip" ,unzip)
1022 ("wayland" ,wayland)
1023 ("wayland-protocols" ,wayland-protocols)
1024 ("x265" ,x265)
1025 ("xcb-util-keysyms" ,xcb-util-keysyms)))
1026 (arguments
1027 `(#:configure-flags
1028 `("CXXFLAGS=-std=gnu++11"
1029 "BUILDCC=gcc"
1030 ,(string-append "LDFLAGS=-Wl,-rpath -Wl,"
1031 (assoc-ref %build-inputs "ffmpeg")
1032 "/lib")) ;needed for the tests
1033
1034 #:phases
1035 (modify-phases %standard-phases
1036 (add-after 'unpack 'patch-source
1037 (lambda* (#:key inputs #:allow-other-keys)
1038 (let ((livemedia-utils (assoc-ref inputs "livemedia-utils")))
1039 (substitute* "configure"
1040 (("LIVE555_PREFIX=\\$\\{LIVE555_PREFIX-\"/usr\"\\}")
1041 (string-append "LIVE555_PREFIX=" livemedia-utils)))
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"))
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
1055 ;; Fix build against Qt 5.11.
1056 (substitute* "modules/gui/qt/actions_manager.cpp"
1057 (("#include <vlc_keys.h>") "#include <vlc_keys.h>
1058 #include <QAction>"))
1059 (substitute* "modules/gui/qt/components/simple_preferences.cpp"
1060 (("#include <QFont>") "#include <QFont>
1061 #include <QButtonGroup>"))
1062 #t)))
1063 (add-after 'strip 'regenerate-plugin-cache
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)
1080 (utime file 1 1))))
1081 (find-files plugindir))
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)))))
1090 (home-page "https://www.videolan.org/")
1091 (synopsis "Audio and video framework")
1092 (description "VLC is a cross-platform multimedia player and framework
1093 that plays most multimedia files as well as DVD, Audio CD, VCD, and various
1094 streaming protocols.")
1095 (license license:gpl2+)))
1096
1097 (define-public mplayer
1098 (package
1099 (name "mplayer")
1100 (version "1.3.0")
1101 (source (origin
1102 (method url-fetch)
1103 (uri (string-append
1104 "https://www.mplayerhq.hu/MPlayer/releases/MPlayer-"
1105 version ".tar.xz"))
1106 (sha256
1107 (base32
1108 "0hwqn04bdknb2ic88xd75smffxx63scvz0zvwvjb56nqj9n89l1s"))))
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)
1116 ("ffmpeg" ,ffmpeg-3.4)
1117 ("fontconfig" ,fontconfig)
1118 ("freetype" ,freetype)
1119 ;; ("giflib" ,giflib) ; uses QuantizeBuffer, requires version >= 5
1120 ("lame" ,lame)
1121 ("libass" ,libass)
1122 ("libdvdcss" ,libdvdcss)
1123 ("libdvdnav" ,libdvdnav)
1124 ("libjpeg" ,libjpeg)
1125 ("libmpeg2" ,libmpeg2)
1126 ("libmpg123" ,mpg123) ; audio codec for MP3
1127 ("libpng" ,libpng)
1128 ("libtheora" ,libtheora)
1129 ("libvdpau" ,libvdpau)
1130 ("libvorbis" ,libvorbis)
1131 ("libx11" ,libx11)
1132 ("libx264" ,libx264)
1133 ("libxinerama" ,libxinerama)
1134 ("libxv" ,libxv)
1135 ("libxxf86dga" ,libxxf86dga)
1136 ("mesa" ,mesa)
1137 ("opus" ,opus)
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
1148 (modify-phases %standard-phases
1149 (replace 'configure
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"
1156 (("#! /bin/sh") (string-append "#!" (which "sh"))))
1157 (setenv "SHELL" (which "bash"))
1158 (setenv "CONFIG_SHELL" (which "bash"))
1159 (invoke "./configure"
1160 (string-append "--extra-cflags=-I"
1161 libx11 "/include") ; to detect libx11
1162 "--disable-ffmpeg_a" ; disables bundled ffmpeg
1163 (string-append "--prefix=" out)
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"
1175 '("--target=mips3-linux"))
1176 (_ (list (string-append
1177 "--target="
1178 (or (%current-target-system)
1179 (nix-system->gnu-triplet
1180 (%current-system)))))))
1181 "--disable-iwmmxt")))))))
1182 (home-page "https://www.mplayerhq.hu/design7/news.html")
1183 (synopsis "Audio and video player")
1184 (description "MPlayer is a movie player. It plays most MPEG/VOB, AVI,
1185 Ogg/OGM, VIVO, ASF/WMA/WMV, QT/MOV/MP4, RealMedia, Matroska, NUT,
1186 NuppelVideo, FLI, YUV4MPEG, FILM, RoQ, PVA files. One can watch VideoCD,
1187 SVCD, DVD, 3ivx, DivX 3/4/5, WMV and H.264 movies.")
1188 (license license:gpl2)))
1189
1190 (define-public mpv
1191 (package
1192 (name "mpv")
1193 (version "0.29.1")
1194 (source (origin
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))
1200 (sha256
1201 (base32
1202 "138921kx8g6qprim558xin09xximjhsj9ss8b71ifg2m6kclym8m"))))
1203 (build-system waf-build-system)
1204 (native-inputs
1205 `(("perl" ,perl) ; for zsh completion file
1206 ("pkg-config" ,pkg-config)
1207 ("python-docutils" ,python-docutils)))
1208 ;; Missing features: libguess, V4L2
1209 (inputs
1210 `(("alsa-lib" ,alsa-lib)
1211 ("enca" ,enca)
1212 ("ffmpeg" ,ffmpeg)
1213 ("jack" ,jack-1)
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)
1225 ("libvdpau" ,libvdpau)
1226 ("libx11" ,libx11)
1227 ("libxext" ,libxext)
1228 ("libxinerama" ,libxinerama)
1229 ("libxrandr" ,libxrandr)
1230 ("libxscrnsaver" ,libxscrnsaver)
1231 ("libxv" ,libxv)
1232 ;; XXX: lua > 5.2 is not currently supported; see
1233 ;; waftools/checks/custom.py
1234 ("lua" ,lua-5.2)
1235 ("mesa" ,mesa)
1236 ("mpg123" ,mpg123)
1237 ("pulseaudio" ,pulseaudio)
1238 ("rsound" ,rsound)
1239 ("shaderc" ,shaderc)
1240 ("vulkan-headers" ,vulkan-headers)
1241 ("vulkan-loader" ,vulkan-loader)
1242 ("waf" ,python-waf)
1243 ("wayland" ,wayland)
1244 ("wayland-protocols" ,wayland-protocols)
1245 ("libxkbcommon" ,libxkbcommon)
1246 ("youtube-dl" ,youtube-dl)
1247 ("zlib" ,zlib)))
1248 (arguments
1249 '(#:phases
1250 (modify-phases %standard-phases
1251 (add-before
1252 'configure 'setup-waf
1253 (lambda* (#:key inputs #:allow-other-keys)
1254 (let ((waf (assoc-ref inputs "waf")))
1255 (copy-file (string-append waf "/bin/waf") "waf"))
1256 (setenv "CC" "gcc")
1257 #t)))
1258 #:configure-flags (list "--enable-libmpv-shared"
1259 "--enable-cdda"
1260 "--enable-dvdread"
1261 "--enable-dvdnav"
1262 "--enable-zsh-comp"
1263 "--disable-build-date")
1264 ;; No check function defined.
1265 #:tests? #f))
1266 (home-page "https://mpv.io/")
1267 (synopsis "Audio and video player")
1268 (description "mpv is a general-purpose audio and video player. It is a
1269 fork of mplayer2 and MPlayer. It shares some features with the former
1270 projects while introducing many more.")
1271 (license license:gpl2+)))
1272
1273 (define-public gnome-mpv
1274 (package
1275 (name "gnome-mpv")
1276 (version "0.16")
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
1285 "0jzdzvhcqp5jp1inwk2466zf7r8iimk3x69066gl8mzaay98mk92"))))
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.
1297 GNOME MPV interacts with mpv via the client API exported by libmpv, allowing
1298 access to mpv's powerful playback capabilities.")
1299 (license license:gpl3+)))
1300
1301 (define-public libvpx
1302 (package
1303 (name "libvpx")
1304 (version "1.8.0")
1305 (source (origin
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))
1312 (sha256
1313 (base32
1314 "079pb80am08lj8y5rx99vdr99mdqis9067f172zq12alkz849n93"))
1315 (patches (search-patches "libvpx-CVE-2016-2818.patch"))))
1316 (build-system gnu-build-system)
1317 (arguments
1318 `(#:configure-flags (list "--enable-shared"
1319 "--as=yasm"
1320 ;; Limit size to avoid CVE-2015-1258
1321 "--size-limit=16384x16384"
1322 (string-append "--prefix=" (assoc-ref %outputs "out")))
1323 #:make-flags (list (string-append "LDFLAGS=-Wl,-rpath="
1324 (assoc-ref %outputs "out") "/lib"))
1325 #:phases (modify-phases %standard-phases
1326 (replace 'configure
1327 (lambda* (#:key configure-flags #:allow-other-keys)
1328 ;; The configure script does not understand some of the GNU
1329 ;; options, so we only add the flags specified above.
1330 (apply invoke "./configure" configure-flags))))
1331 #:tests? #f)) ; no check target
1332 (native-inputs
1333 `(("perl" ,perl)
1334 ("yasm" ,yasm)))
1335 (synopsis "VP8/VP9 video codec")
1336 (description "libvpx is a codec for the VP8/VP9 video compression format.")
1337 (license license:bsd-3)
1338 (home-page "https://www.webmproject.org/")))
1339
1340 ;; GNU IceCat fails to build against 1.8.0, so keep this version for now.
1341 (define-public libvpx-1.7
1342 (package
1343 (inherit libvpx)
1344 (version "1.7.0")
1345 (source (origin
1346 (inherit (package-source libvpx))
1347 (uri (git-reference
1348 (url "https://chromium.googlesource.com/webm/libvpx")
1349 (commit (string-append "v" version))))
1350 (file-name (git-file-name "libvpx" version))
1351 (sha256
1352 (base32
1353 "0vvh89hvp8qg9an9vcmwb7d9k3nixhxaz6zi65qdjnd0i56kkcz6"))
1354 (patches
1355 (append
1356 (origin-patches (package-source libvpx))
1357 (search-patches "libvpx-use-after-free-in-postproc.patch")))))))
1358
1359 (define-public youtube-dl
1360 (package
1361 (name "youtube-dl")
1362 (version "2019.01.30.1")
1363 (source (origin
1364 (method url-fetch)
1365 (uri (string-append "https://github.com/rg3/youtube-dl/releases/"
1366 "download/" version "/youtube-dl-"
1367 version ".tar.gz"))
1368 (sha256
1369 (base32
1370 "0wamv1fs4w8jjx67p60rgrgdi6k04yy0h4p3cwscza5pzhpmvnlf"))))
1371 (build-system python-build-system)
1372 (arguments
1373 ;; The problem here is that the directory for the man page and completion
1374 ;; files is relative, and for some reason, setup.py uses the
1375 ;; auto-detected sys.prefix instead of the user-defined "--prefix=FOO".
1376 ;; So, we need pass the prefix directly. In addition, make sure the Bash
1377 ;; completion file is called 'youtube-dl' rather than
1378 ;; 'youtube-dl.bash-completion'.
1379 `(#:tests? #f ; Many tests fail. The test suite can be run with pytest.
1380 #:phases (modify-phases %standard-phases
1381 (add-before 'install 'fix-the-data-directories
1382 (lambda* (#:key outputs #:allow-other-keys)
1383 (let ((prefix (assoc-ref outputs "out")))
1384 (mkdir "bash-completion")
1385 (rename-file "youtube-dl.bash-completion"
1386 "bash-completion/youtube-dl")
1387 (substitute* "setup.py"
1388 (("youtube-dl\\.bash-completion")
1389 "bash-completion/youtube-dl")
1390 (("'etc/")
1391 (string-append "'" prefix "/etc/"))
1392 (("'share/")
1393 (string-append "'" prefix "/share/")))
1394 #t))))))
1395 (synopsis "Download videos from YouTube.com and other sites")
1396 (description
1397 "Youtube-dl is a small command-line program to download videos from
1398 YouTube.com and many more sites.")
1399 (home-page "https://yt-dl.org")
1400 (license license:public-domain)))
1401
1402 (define-public youtube-dl-gui
1403 (package
1404 (name "youtube-dl-gui")
1405 (version "0.3.8")
1406 (source
1407 (origin
1408 (method url-fetch)
1409 (uri (pypi-uri "Youtube-DLG" version))
1410 (sha256
1411 (base32
1412 "0napxwzgls5ik1bxbp99vly32l23xpc4ng5kr24hfhf21ypjyadb"))))
1413 (build-system python-build-system)
1414 (arguments
1415 ;; In Guix, wxpython has not yet been packaged for Python 3.
1416 `(#:python ,python-2
1417 ;; This package has no tests.
1418 #:tests? #f
1419 #:phases
1420 (modify-phases %standard-phases
1421 (add-before 'build 'patch-source
1422 (lambda* (#:key inputs #:allow-other-keys)
1423 ;; The youtube-dl-gui program lets you configure options. Some of
1424 ;; them are problematic, so we change their defaults.
1425 (substitute* "youtube_dl_gui/optionsmanager.py"
1426 ;; When this is true, the builder process will try (and fail) to
1427 ;; write logs to the builder user's home directory.
1428 (("'enable_log': True") "'enable_log': False")
1429 ;; This determines which youtube-dl program youtube-dl-gui will
1430 ;; run. If we don't set this, then youtube-dl-gui might download
1431 ;; an arbitrary copy from the Internet into the user's home
1432 ;; directory and run it, so let's make sure youtube-dl-gui uses
1433 ;; the youtube-dl from the inputs by default.
1434 (("'youtubedl_path': self.config_path")
1435 (string-append "'youtubedl_path': '"
1436 (assoc-ref inputs "youtube-dl")
1437 "/bin'"))
1438 ;; When this is True, when youtube-dl-gui is finished downloading
1439 ;; a file, it will try (and possibly fail) to open the directory
1440 ;; containing the downloaded file. This can fail because it
1441 ;; assumes that xdg-open is in PATH. Unfortunately, simply
1442 ;; adding xdg-utils to the propagated inputs is not enough to
1443 ;; make this work, so for now we set the default to False.
1444 (("'open_dl_dir': True") "'open_dl_dir': False"))
1445 ;; The youtube-dl program from the inputs is actually a wrapper
1446 ;; script written in bash, so attempting to invoke it as a python
1447 ;; script will fail.
1448 (substitute* "youtube_dl_gui/downloaders.py"
1449 (("cmd = \\['python', self\\.youtubedl_path\\]")
1450 "cmd = [self.youtubedl_path]"))
1451 ;; Use relative paths for installing data files so youtube-dl-gui
1452 ;; installs the files relative to its prefix in the store, rather
1453 ;; than relative to /. Also, instead of installing data files into
1454 ;; $prefix/usr/share, install them into $prefix/share for
1455 ;; consistency (see: (standards) Directory Variables).
1456 (substitute* "setup.py"
1457 (("= '/usr/share") "= 'share"))
1458 ;; Update get_locale_file() so it finds the installed localization
1459 ;; files.
1460 (substitute* "youtube_dl_gui/utils.py"
1461 (("os\\.path\\.join\\('/usr', 'share'")
1462 (string-append "os.path.join('"
1463 (assoc-ref %outputs "out")
1464 "', 'share'")))
1465 #t)))))
1466 (inputs
1467 `(("python2-wxpython" ,python2-wxpython)
1468 ("youtube-dl" ,youtube-dl)))
1469 (home-page "https://github.com/MrS0m30n3/youtube-dl-gui")
1470 (synopsis
1471 "GUI (Graphical User Interface) for @command{youtube-dl}")
1472 (description
1473 "Youtube-dlG is a GUI (Graphical User Interface) for
1474 @command{youtube-dl}. You can use it to download videos from YouTube and any
1475 other site that youtube-dl supports.")
1476 (license license:unlicense)))
1477
1478 (define-public you-get
1479 (package
1480 (name "you-get")
1481 (version "0.4.1077")
1482 (source (origin
1483 (method git-fetch)
1484 (uri (git-reference
1485 (url "https://github.com/soimort/you-get.git")
1486 (commit (string-append "v" version))))
1487 (file-name (git-file-name name version))
1488 (sha256
1489 (base32
1490 "1rwkn3wb3r70b8cqj40qdknkg9kqbgzkvi901hbpy2a8s1b7858n"))))
1491 (build-system python-build-system)
1492 (inputs
1493 `(("ffmpeg" ,ffmpeg))) ; for multi-part and >=1080p videos
1494 (arguments
1495 `(#:phases
1496 (modify-phases %standard-phases
1497 (add-after 'unpack 'qualify-input-references
1498 ;; Explicitly invoke the input ffmpeg, instead of whichever one
1499 ;; happens to be in the user's $PATH at run time.
1500 (lambda* (#:key inputs #:allow-other-keys)
1501 (let ((ffmpeg (string-append (assoc-ref inputs "ffmpeg")
1502 "/bin/ffmpeg")))
1503 (substitute* "src/you_get/processor/ffmpeg.py"
1504 ;; Don't blindly replace all occurrences of ‘'ffmpeg'’: the
1505 ;; same string is also used when sniffing ffmpeg's output.
1506 (("(FFMPEG == |\\()'ffmpeg'" _ prefix)
1507 (string-append prefix "'" ffmpeg "'")))
1508 #t))))
1509 #:tests? #f)) ; XXX some tests need Internet access
1510 (synopsis "Download videos, audio, or images from Web sites")
1511 (description
1512 "You-Get is a command-line utility to download media contents (videos,
1513 audio, images) from the Web. It can use either mpv or vlc for playback.")
1514 (home-page "https://you-get.org/")
1515 (license license:expat)))
1516
1517 (define-public youtube-viewer
1518 (package
1519 (name "youtube-viewer")
1520 (version "3.5.0")
1521 (source (origin
1522 (method git-fetch)
1523 (uri (git-reference
1524 (url "https://github.com/trizen/youtube-viewer.git")
1525 (commit version)))
1526 (file-name (git-file-name name version))
1527 (sha256
1528 (base32
1529 "1s7hv2a46cx2nbdykrijqfh8hdkf3zqn6q8sg3ajnnc5agaspyrg"))))
1530 (build-system perl-build-system)
1531 (native-inputs
1532 `(("perl-module-build" ,perl-module-build)))
1533 ;; FIXME: Add optional dependencies once available:
1534 ;; perl-lwp-useragent-cached and perl-term-readline-gnu
1535 (inputs
1536 `(("perl-data-dump" ,perl-data-dump)
1537 ("perl-file-sharedir" ,perl-file-sharedir)
1538 ("perl-gtk2" ,perl-gtk2)
1539 ("perl-json" ,perl-json)
1540 ("perl-libwww" ,perl-libwww)
1541 ("perl-lwp-protocol-https" ,perl-lwp-protocol-https)
1542 ("perl-mozilla-ca" ,perl-mozilla-ca)
1543 ("perl-unicode-linebreak" ,perl-unicode-linebreak)))
1544 (arguments
1545 `(#:modules ((guix build perl-build-system)
1546 (guix build utils)
1547 (srfi srfi-26))
1548 #:module-build-flags '("--gtk")
1549 #:phases
1550 (modify-phases %standard-phases
1551 (add-after 'install 'install-desktop
1552 (lambda* (#:key outputs #:allow-other-keys)
1553 (let* ((out (assoc-ref outputs "out"))
1554 (sharedir (string-append out "/share")))
1555 (install-file "share/gtk-youtube-viewer.desktop"
1556 (string-append sharedir "/applications"))
1557 (install-file "share/icons/gtk-youtube-viewer.png"
1558 (string-append sharedir "/pixmaps"))
1559 #t)))
1560 (add-after 'install 'wrap-program
1561 (lambda* (#:key outputs #:allow-other-keys)
1562 (let* ((out (assoc-ref outputs "out"))
1563 (bin-dir (string-append out "/bin/"))
1564 (site-dir (string-append out "/lib/perl5/site_perl/"))
1565 (lib-path (getenv "PERL5LIB")))
1566 (for-each (cut wrap-program <>
1567 `("PERL5LIB" ":" prefix (,lib-path ,site-dir)))
1568 (find-files bin-dir))
1569 #t))))))
1570 (synopsis
1571 "Lightweight application for searching and streaming videos from YouTube")
1572 (description
1573 "Youtube-viewer searches and plays YouTube videos in a native player.
1574 It comes with various search options; it can search for videos, playlists
1575 and/or channels. The videos are streamed directly in a selected video player
1576 at the best resolution (customizable) and with closed-captions (if available).
1577 Both command-line and GTK2 interface are available.")
1578 (home-page "https://github.com/trizen/youtube-viewer")
1579 (license license:perl-license)))
1580
1581 (define-public libbluray
1582 (package
1583 (name "libbluray")
1584 (version "1.0.2")
1585 (source (origin
1586 (method url-fetch)
1587 (uri (string-append "https://download.videolan.org/videolan/"
1588 name "/" version "/"
1589 name "-" version ".tar.bz2"))
1590 (sha256
1591 (base32
1592 "1zxfnw1xbghcj7b3zz5djndv6gwssxda19cz1lrlqrkg8577r7kd"))))
1593 (build-system gnu-build-system)
1594 (arguments
1595 `(#:configure-flags '("--disable-bdjava-jar")
1596 #:phases
1597 (modify-phases %standard-phases
1598 (add-after 'unpack 'refer-to-libxml2-in-.pc-file
1599 ;; Avoid the need to propagate libxml2 by referring to it
1600 ;; directly, as is already done for fontconfig & freetype.
1601 (lambda* (#:key inputs #:allow-other-keys)
1602 (let ((libxml2 (assoc-ref inputs "libxml2")))
1603 (substitute* "configure"
1604 ((" libxml-2.0") ""))
1605 (substitute* "src/libbluray.pc.in"
1606 (("^Libs.private:" field)
1607 (string-append field " -L" libxml2 "/lib -lxml2")))
1608 #t)))
1609 (add-before 'build 'fix-dlopen-paths
1610 (lambda* (#:key inputs #:allow-other-keys)
1611 (let ((libaacs (assoc-ref inputs "libaacs"))
1612 (libbdplus (assoc-ref inputs "libbdplus")))
1613 (substitute* "src/libbluray/disc/aacs.c"
1614 (("\"libaacs\"")
1615 (string-append "\"" libaacs "/lib/libaacs\"")))
1616 (substitute* "src/libbluray/disc/bdplus.c"
1617 (("\"libbdplus\"")
1618 (string-append "\"" libbdplus "/lib/libbdplus\"")))
1619 #t))))))
1620 (native-inputs `(("pkg-config" ,pkg-config)))
1621 (inputs
1622 `(("fontconfig" ,fontconfig)
1623 ("freetype" ,freetype)
1624 ("libaacs" ,libaacs)
1625 ("libbdplus" ,libbdplus)
1626 ("libxml2" ,libxml2)))
1627 (home-page "https://www.videolan.org/developers/libbluray.html")
1628 (synopsis "Blu-Ray Disc playback library")
1629 (description
1630 "libbluray is a library designed for Blu-Ray Disc playback for media
1631 players, like VLC or MPlayer.")
1632 (license license:lgpl2.1+)))
1633
1634 (define-public libdvdread
1635 (package
1636 (name "libdvdread")
1637 (version "6.0.0")
1638 (source (origin
1639 (method url-fetch)
1640 (uri (string-append "https://download.videolan.org/videolan/"
1641 name "/" version "/"
1642 name "-" version ".tar.bz2"))
1643 (sha256
1644 (base32
1645 "0dgr23fzcjhb7ck54xkr9zmf4jcq3ph0dz3fbyvla1c6ni9ijfxk"))))
1646 (build-system gnu-build-system)
1647 (arguments
1648 `(#:configure-flags '("--with-libdvdcss=yes")))
1649 (native-inputs
1650 `(("pkg-config" ,pkg-config)))
1651 (propagated-inputs
1652 `(("libdvdcss" ,libdvdcss)))
1653 (home-page "http://dvdnav.mplayerhq.hu/")
1654 (synopsis "Library for reading video DVDs")
1655 (description
1656 "Libdvdread provides a simple foundation for reading DVD video
1657 disks. It provides the functionality that is required to access many
1658 DVDs. It parses IFO files, reads NAV-blocks, and performs CSS
1659 authentication and descrambling (if an external libdvdcss library is
1660 installed).")
1661 (license license:gpl2+)))
1662
1663 (define-public dvdauthor
1664 (package
1665 (name "dvdauthor")
1666 (version "0.7.2")
1667 (source
1668 (origin
1669 (method url-fetch)
1670 (uri (string-append "mirror://sourceforge/dvdauthor/dvdauthor-"
1671 version ".tar.gz"))
1672 (sha256
1673 (base32
1674 "1drfc47hikfzc9d7hjk34rw10iqw01d2vwmn91pv73ppx4nsj81h"))))
1675 (build-system gnu-build-system)
1676 (inputs
1677 `(("libdvdread" ,libdvdread)
1678 ("libpng" ,libpng)
1679 ("imagemagick" ,imagemagick)
1680 ("libxml2" ,libxml2)
1681 ("freetype" ,freetype)))
1682 (native-inputs
1683 `(("pkg-config" ,pkg-config)))
1684 (synopsis "Generates a DVD-Video movie from a MPEG-2 stream")
1685 (description "@command{dvdauthor} will generate a DVD-Video movie from a
1686 MPEG-2 stream containing VOB packets.")
1687 (home-page "http://dvdauthor.sourceforge.net")
1688 (license license:gpl3+)))
1689
1690 (define-public libdvdnav
1691 (package
1692 (name "libdvdnav")
1693 (version "6.0.0")
1694 (source (origin
1695 (method url-fetch)
1696 (uri (string-append "https://download.videolan.org/videolan/"
1697 name "/" version "/"
1698 name "-" version ".tar.bz2"))
1699 (sha256
1700 (base32
1701 "062njcksmpgw9yv3737qkf93r2pzhaxi9szqjabpa8d010dp38ph"))))
1702 (build-system gnu-build-system)
1703 (native-inputs
1704 `(("pkg-config" ,pkg-config)))
1705 (inputs
1706 `(("libdvdread" ,libdvdread)))
1707 (home-page "http://dvdnav.mplayerhq.hu/")
1708 (synopsis "Library for video DVD navigation features")
1709 (description
1710 "Libdvdnav is a library for developers of multimedia
1711 applications. It allows easy use of sophisticated DVD navigation features
1712 such as DVD menus, multiangle playback and even interactive DVD games. All
1713 this functionality is provided through a simple API which provides the DVD
1714 playback as a single logical stream of blocks, intermitted by special
1715 dvdnav events to report certain conditions. The main usage of libdvdnav is
1716 a loop regularly calling a function to get the next block, surrounded by
1717 additional calls to tell the library of user interaction. The whole
1718 DVD virtual machine and internal playback states are completely
1719 encapsulated.")
1720 (license license:gpl2+)))
1721
1722 (define-public libdvdcss
1723 (package
1724 (name "libdvdcss")
1725 (version "1.4.2")
1726 (source (origin
1727 (method url-fetch)
1728 (uri (string-append "https://download.videolan.org/pub/"
1729 name "/" version "/"
1730 name "-" version ".tar.bz2"))
1731 (sha256
1732 (base32
1733 "0x957zzpf4w2cp8zlk29prj8i2q6hay3lzdzsyz8y3cwxivyvhkq"))))
1734 (build-system gnu-build-system)
1735 (home-page "https://www.videolan.org/developers/libdvdcss.html")
1736 (synopsis "Library for accessing DVDs as block devices")
1737 (description
1738 "libdvdcss is a simple library designed for accessing DVDs like a block
1739 device without having to bother about the decryption.")
1740 (license license:gpl2+)))
1741
1742 (define-public srt2vtt
1743 (package
1744 (name "srt2vtt")
1745 (version "0.1")
1746 (source (origin
1747 (method url-fetch)
1748 (uri (string-append
1749 "https://files.dthompson.us/srt2vtt/srt2vtt-"
1750 version ".tar.gz"))
1751 (sha256
1752 (base32
1753 "16b377znjm6qlga5yb8aj7b7bcisa1ghcnj2lrb1d30lvxp4liif"))))
1754 (build-system gnu-build-system)
1755 (inputs
1756 `(("guile" ,guile-2.0)))
1757 (synopsis "SubRip to WebVTT subtitle converter")
1758 (description "srt2vtt converts SubRip formatted subtitles to WebVTT format
1759 for use with HTML5 video.")
1760 (home-page "https://dthompson.us/projects/srt2vtt.html")
1761 (license license:gpl3+)))
1762
1763 (define-public avidemux
1764 (package
1765 (name "avidemux")
1766 (version "2.6.12")
1767 (source (origin
1768 (method url-fetch)
1769 (uri (string-append
1770 "mirror://sourceforge/" name "/" name "/" version "/"
1771 name "_" version ".tar.gz"))
1772 (sha256
1773 (base32
1774 "0nz52yih8sff53inndkh2dba759xjzsh4b8xjww419lcpk0qp6kn"))
1775 (patches (search-patches "avidemux-install-to-lib.patch"))))
1776 (build-system cmake-build-system)
1777 (native-inputs
1778 `(("pkg-config" ,pkg-config)))
1779 ;; FIXME: Once packaged, add libraries not found during the build.
1780 (inputs
1781 `(("alsa-lib" ,alsa-lib)
1782 ("fontconfig" ,fontconfig)
1783 ("freetype" ,freetype)
1784 ("fribidi" ,fribidi)
1785 ("glu" ,glu)
1786 ("jack" ,jack-1)
1787 ("lame" ,lame)
1788 ("libva" ,libva)
1789 ("libvdpau" ,libvdpau)
1790 ("libvorbis" ,libvorbis)
1791 ("libvpx" ,libvpx)
1792 ("libxv" ,libxv)
1793 ("perl" ,perl)
1794 ("pulseaudio" ,pulseaudio)
1795 ("python" ,python-wrapper)
1796 ("qt" ,qt) ; FIXME: reenable modular qt after update - requires building
1797 ;("qtbase" ,qtbase) with -std=gnu++11.
1798 ;("qttools" ,qttools)
1799 ("sdl" ,sdl)
1800 ("sqlite" ,sqlite)
1801 ("yasm" ,yasm)
1802 ("zlib" ,zlib)))
1803 (arguments
1804 `(#:tests? #f ; no check target
1805 #:phases
1806 ;; Make sure files inside the included ffmpeg tarball are
1807 ;; patch-shebanged.
1808 (modify-phases %standard-phases
1809 (add-before 'patch-source-shebangs 'unpack-ffmpeg
1810 (lambda _
1811 (with-directory-excursion "avidemux_core/ffmpeg_package"
1812 (invoke "tar" "xf" "ffmpeg-2.7.6.tar.bz2")
1813 (delete-file "ffmpeg-2.7.6.tar.bz2"))
1814 #t))
1815 (add-after 'patch-source-shebangs 'repack-ffmpeg
1816 (lambda _
1817 (with-directory-excursion "avidemux_core/ffmpeg_package"
1818 (substitute* "ffmpeg-2.7.6/configure"
1819 (("#! /bin/sh") (string-append "#!" (which "sh"))))
1820 (invoke "tar" "cjf" "ffmpeg-2.7.6.tar.bz2" "ffmpeg-2.7.6"
1821 ;; avoid non-determinism in the archive
1822 "--sort=name" "--mtime=@0"
1823 "--owner=root:0" "--group=root:0")
1824 (delete-file-recursively "ffmpeg-2.7.6"))
1825 #t))
1826 (replace 'configure
1827 (lambda _
1828 ;; Copy-paste settings from the cmake build system.
1829 (setenv "CMAKE_LIBRARY_PATH" (getenv "LIBRARY_PATH"))
1830 (setenv "CMAKE_INCLUDE_PATH" (getenv "C_INCLUDE_PATH"))
1831 #t))
1832 (replace 'build
1833 (lambda* (#:key inputs outputs #:allow-other-keys)
1834 (let* ((out (assoc-ref outputs "out"))
1835 (lib (string-append out "/lib"))
1836 (top (getcwd))
1837 (sdl (assoc-ref inputs "sdl"))
1838 (build_component
1839 (lambda* (component srcdir #:optional (args '()))
1840 (let ((builddir (string-append "build_" component)))
1841 (mkdir builddir)
1842 (with-directory-excursion builddir
1843 (apply invoke "cmake"
1844 "-DCMAKE_INSTALL_RPATH_USE_LINK_PATH=TRUE"
1845 (string-append "-DCMAKE_INSTALL_PREFIX=" out)
1846 (string-append "-DCMAKE_INSTALL_RPATH=" lib)
1847 (string-append "-DCMAKE_SHARED_LINKER_FLAGS="
1848 "\"-Wl,-rpath=" lib "\"")
1849 (string-append "-DAVIDEMUX_SOURCE_DIR=" top)
1850 (string-append "-DSDL_INCLUDE_DIR="
1851 sdl "/include/SDL")
1852 (string-append "../" srcdir)
1853 "-DENABLE_QT5=True"
1854 args)
1855 (invoke "make" "-j"
1856 (number->string (parallel-job-count)))
1857 (invoke "make" "install"))))))
1858 (mkdir out)
1859 (build_component "core" "avidemux_core")
1860 (build_component "cli" "avidemux/cli")
1861 (build_component "qt4" "avidemux/qt4")
1862 (build_component "plugins_common" "avidemux_plugins"
1863 '("-DPLUGIN_UI=COMMON"))
1864 (build_component "plugins_cli" "avidemux_plugins"
1865 '("-DPLUGIN_UI=CLI"))
1866 (build_component "plugins_qt4" "avidemux_plugins"
1867 '("-DPLUGIN_UI=QT4"))
1868 (build_component "plugins_settings" "avidemux_plugins"
1869 '("-DPLUGIN_UI=SETTINGS"))
1870 ;; Remove .exe and .dll file.
1871 (delete-file-recursively
1872 (string-append out "/share/ADM6_addons"))
1873 #t)))
1874 (delete 'install))))
1875 (home-page "http://fixounet.free.fr/avidemux/")
1876 (synopsis "Video editor")
1877 (description "Avidemux is a video editor designed for simple cutting,
1878 filtering and encoding tasks. It supports many file types, including AVI,
1879 DVD compatible MPEG files, MP4 and ASF, using a variety of codecs. Tasks
1880 can be automated using projects, job queue and powerful scripting
1881 capabilities.")
1882 (supported-systems '("x86_64-linux" "i686-linux" "armhf-linux"))
1883 ;; Software with various licenses is included, see License.txt.
1884 (license license:gpl2+)))
1885
1886 (define-public vapoursynth
1887 (package
1888 (name "vapoursynth")
1889 (version "37")
1890 (source (origin
1891 (method git-fetch)
1892 (uri (git-reference
1893 (url "https://github.com/vapoursynth/vapoursynth.git")
1894 (commit (string-append "R" version))))
1895 (file-name (git-file-name name version))
1896 (sha256
1897 (base32
1898 "1ma2s7dxk6y6l04qj1jvgwia4xj7999ny3a1yx2vbk5l83giam2p"))))
1899 (build-system gnu-build-system)
1900 (native-inputs
1901 `(("autoconf" ,autoconf)
1902 ("automake" ,automake)
1903 ("cython" ,python-cython)
1904 ("libtool" ,libtool)
1905 ("pkg-config" ,pkg-config)
1906 ("python" ,python)
1907 ("yasm" ,yasm)))
1908 (inputs
1909 `(("ffmpeg" ,ffmpeg)
1910 ("libass" ,libass)
1911 ("tesseract-ocr" ,tesseract-ocr)
1912 ("zimg" ,zimg)))
1913 (arguments
1914 '(#:phases
1915 (modify-phases %standard-phases
1916 (add-after 'unpack 'autogen
1917 (lambda _
1918 (invoke "sh" "autogen.sh"))))))
1919 (home-page "http://www.vapoursynth.com/")
1920 (synopsis "Video processing framework")
1921 (description "VapourSynth is a C++ library and Python module for video
1922 manipulation. It aims to be a modern rewrite of Avisynth, supporting
1923 multithreading, generalized colorspaces, per frame properties, and videos with
1924 format changes.")
1925 ;; src/core/cpufeatures only allows x86, ARM or PPC
1926 (supported-systems (fold delete %supported-systems
1927 '("mips64el-linux" "aarch64-linux")))
1928 ;; As seen from the source files.
1929 (license license:lgpl2.1+)))
1930
1931 (define-public xvid
1932 (package
1933 (name "xvid")
1934 (version "1.3.4")
1935 (source (origin
1936 (method url-fetch)
1937 (uri (string-append
1938 "http://downloads.xvid.org/downloads/xvidcore-"
1939 version ".tar.bz2"))
1940 (sha256
1941 (base32
1942 "1xwbmp9wqshc0ckm970zdpi0yvgqxlqg0s8bkz98mnr8p2067bsz"))))
1943 (build-system gnu-build-system)
1944 (native-inputs `(("yasm" ,yasm)))
1945 (arguments
1946 '(#:phases
1947 (modify-phases %standard-phases
1948 (add-before
1949 'configure 'pre-configure
1950 (lambda _
1951 (chdir "build/generic")
1952 (substitute* "configure"
1953 (("#! /bin/sh") (string-append "#!" (which "sh"))))
1954 #t)))
1955 ;; No 'check' target.
1956 #:tests? #f))
1957 (home-page "https://www.xvid.com/")
1958 (synopsis "MPEG-4 Part 2 Advanced Simple Profile video codec")
1959 (description "Xvid is an MPEG-4 Part 2 Advanced Simple Profile (ASP) video
1960 codec library. It uses ASP features such as b-frames, global and quarter
1961 pixel motion compensation, lumi masking, trellis quantization, and H.263, MPEG
1962 and custom quantization matrices.")
1963 (license license:gpl2+)))
1964
1965 (define-public streamlink
1966 (package
1967 (name "streamlink")
1968 (version "0.14.2")
1969 (source
1970 (origin
1971 (method url-fetch)
1972 (uri (pypi-uri "streamlink" version))
1973 (sha256
1974 (base32
1975 "0l2145fd60i76afjisfxd48cwhwyir07i7s3bnimdq5db2kzkix8"))
1976 (patches (search-patches "streamlink-update-test.patch"))))
1977 (build-system python-build-system)
1978 (home-page "https://github.com/streamlink/streamlink")
1979 (native-inputs
1980 `(("python-freezegun" ,python-freezegun)
1981 ("python-pytest" ,python-pytest)
1982 ("python-mock" ,python-mock)
1983 ("python-requests-mock" ,python-requests-mock)))
1984 (propagated-inputs
1985 `(("python-pysocks" ,python-pysocks)
1986 ("python-websocket-client" ,python-websocket-client)
1987 ("python-iso3166" ,python-iso3166)
1988 ("python-iso639" ,python-iso639)
1989 ("python-isodate" ,python-isodate)
1990 ("python-pycryptodome" ,python-pycryptodome)
1991 ("python-requests" ,python-requests)
1992 ("python-urllib3" ,python-urllib3)))
1993 (synopsis "Extract streams from various services")
1994 (description "Streamlink is command-line utility that extracts streams
1995 from sites like Twitch.tv and pipes them into a video player of choice.")
1996 (license license:bsd-2)))
1997
1998 (define-public livestreamer
1999 (deprecated-package "livestreamer" streamlink))
2000
2001 (define-public twitchy
2002 (let ((commit "0c0f925b9c7ff2aed4a3b0046561cb794143c398")) ;Fixes tests.
2003 (package
2004 (name "twitchy")
2005 (version (git-version "3.2" "1" commit))
2006 (source
2007 (origin
2008 (method git-fetch)
2009 (uri (git-reference
2010 (url "https://github.com/BasioMeusPuga/twitchy.git")
2011 (commit commit)))
2012 (file-name (git-file-name name version))
2013 (sha256
2014 (base32
2015 "02aizvsr744sh8bdqvwwsmp2qpczlzn8fy76h5dyd3517n9nlcz9"))))
2016 (build-system python-build-system)
2017 (arguments
2018 '(#:phases
2019 (modify-phases %standard-phases
2020 (add-before 'check 'check-setup
2021 (lambda _
2022 (setenv "HOME" (getcwd)) ;Needs to write to ‘$HOME’.
2023 #t))
2024 (add-after 'install 'install-rofi-plugin
2025 (lambda* (#:key outputs #:allow-other-keys)
2026 (install-file "plugins/rofi-twitchy"
2027 (string-append (assoc-ref outputs "out")
2028 "/bin"))
2029 #t)))))
2030 (inputs
2031 `(("python-requests" ,python-requests)
2032 ("streamlink" ,streamlink)))
2033 (home-page "https://github.com/BasioMeusPuga/twitchy")
2034 (synopsis "Command-line interface for Twitch.tv")
2035 (description
2036 "This package provides a command-line interface for Twitch.tv")
2037 (license license:gpl3+))))
2038
2039 (define-public mlt
2040 (package
2041 (name "mlt")
2042 (version "6.10.0")
2043 (source (origin
2044 (method git-fetch)
2045 (uri (git-reference
2046 (url "https://github.com/mltframework/mlt.git")
2047 (commit (string-append "v" version))))
2048 (file-name (git-file-name name version))
2049 (sha256
2050 (base32
2051 "0ki86yslr5ywa6sz8pjrgd9a4rn2rr4mss2zkmqi7pq8prgsm1fr"))
2052 (modules '((guix build utils)))
2053 (snippet '(begin
2054 ;; As of glibc 2.26, <xlocale.h> no longer is.
2055 (substitute* "src/framework/mlt_property.h"
2056 (("xlocale\\.h") "locale.h"))
2057 #t))))
2058 (build-system gnu-build-system)
2059 (arguments
2060 `(#:tests? #f ; no tests
2061 #:make-flags '("CC=gcc" "CXX=g++ -std=gnu++11")
2062 #:configure-flags
2063 (list "--enable-gpl3"
2064 "--enable-gpl")
2065 #:phases
2066 (modify-phases %standard-phases
2067 (add-after
2068 'configure 'override-LDFLAGS
2069 (lambda* (#:key outputs #:allow-other-keys)
2070 (substitute* "config.mak"
2071 (("LDFLAGS\\+=")
2072 (string-append "LDFLAGS+=-Wl,-rpath="
2073 (assoc-ref outputs "out")
2074 "/lib ")))
2075 #t)))))
2076 (inputs
2077 `(("alsa-lib" ,alsa-lib)
2078 ("ffmpeg" ,ffmpeg-3.4)
2079 ("fftw" ,fftw)
2080 ("frei0r-plugins" ,frei0r-plugins)
2081 ("gdk-pixbuf" ,gdk-pixbuf)
2082 ("gtk+" ,gtk+-2)
2083 ("libxml2" ,libxml2)
2084 ("jack" ,jack-1)
2085 ("ladspa" ,ladspa)
2086 ("libsamplerate" ,libsamplerate)
2087 ("pulseaudio" ,pulseaudio)
2088 ("qtbase" ,qtbase)
2089 ("qtsvg" ,qtsvg)
2090 ("sdl" ,sdl)
2091 ("sox" ,sox)))
2092 (native-inputs
2093 `(("pkg-config" ,pkg-config)))
2094 (home-page "https://www.mltframework.org/")
2095 (synopsis "Author, manage, and run multitrack audio/video compositions")
2096 (description
2097 "MLT is a multimedia framework, designed and developed for television
2098 broadcasting. It provides a toolkit for broadcasters, video editors, media
2099 players, transcoders, web streamers and many more types of applications. The
2100 functionality of the system is provided via an assortment of ready to use
2101 tools, XML authoring components, and an extensible plug-in based API.")
2102 (license license:gpl3)))
2103
2104 (define-public v4l-utils
2105 (package
2106 (name "v4l-utils")
2107 (version "1.12.5")
2108 (source (origin
2109 (method url-fetch)
2110 (uri (string-append "https://linuxtv.org/downloads/v4l-utils"
2111 "/v4l-utils-" version ".tar.bz2"))
2112 (sha256
2113 (base32
2114 "03g2b4rivrilimcp57mwrlsa3qvrxmk4sza08mygwmqbvcnic606"))))
2115 (build-system gnu-build-system)
2116 (arguments
2117 '(#:configure-flags
2118 (list (string-append "--with-udevdir="
2119 (assoc-ref %outputs "out")
2120 "/lib/udev")
2121 "CXXFLAGS=-std=gnu++11")))
2122 (native-inputs
2123 `(("perl" ,perl)
2124 ("pkg-config" ,pkg-config)))
2125 (inputs
2126 `(("alsa-lib" ,alsa-lib)
2127 ("glu" ,glu)
2128 ("libjpeg" ,libjpeg)
2129 ("libx11" ,libx11)
2130 ("qtbase" ,qtbase)
2131 ("eudev" ,eudev)))
2132 (synopsis "Realtime video capture utilities for Linux")
2133 (description "The v4l-utils provide a series of libraries and utilities to
2134 be used for realtime video capture via Linux-specific APIs.")
2135 (home-page "https://linuxtv.org/wiki/index.php/V4l-utils")
2136 ;; libv4l2 is LGPL2.1+, while utilities are GPL2 only.
2137 (license (list license:lgpl2.1+ license:gpl2))))
2138
2139 (define-public obs
2140 (package
2141 (name "obs")
2142 (version "22.0.3")
2143 (source (origin
2144 (method git-fetch)
2145 (uri (git-reference
2146 (url "https://github.com/obsproject/obs-studio.git")
2147 (commit version)))
2148 (file-name (git-file-name name version))
2149 (sha256
2150 (base32
2151 "0ri9qkqk3h71b1a5bwpjzqdr21bbmfqbykg48l779d20zln23n1i"))))
2152 (build-system cmake-build-system)
2153 (arguments
2154 `(#:tests? #f)) ; no tests
2155 (native-inputs
2156 `(("pkg-config" ,pkg-config)))
2157 (inputs
2158 `(("alsa-lib" ,alsa-lib)
2159 ("curl" ,curl)
2160 ("eudev" ,eudev)
2161 ("ffmpeg" ,ffmpeg)
2162 ("fontconfig" ,fontconfig)
2163 ("freetype" ,freetype)
2164 ("jack" ,jack-1)
2165 ("jansson" ,jansson)
2166 ("libx264" ,libx264)
2167 ("libxcomposite" ,libxcomposite)
2168 ("mesa" ,mesa)
2169 ("pulseaudio" ,pulseaudio)
2170 ("qtbase" ,qtbase)
2171 ("qtx11extras" ,qtx11extras)
2172 ("speex" ,speex)
2173 ("v4l-utils" ,v4l-utils)
2174 ("zlib" ,zlib)))
2175 (synopsis "Live streaming software")
2176 (description "Open Broadcaster Software provides a graphical interface for
2177 video recording and live streaming. OBS supports capturing audio and video
2178 from many input sources such as webcams, X11 (for screencasting), PulseAudio,
2179 and JACK.")
2180 (home-page "https://obsproject.com")
2181 (supported-systems '("x86_64-linux" "i686-linux"))
2182 (license license:gpl2+)))
2183
2184 (define-public libvdpau
2185 (package
2186 (name "libvdpau")
2187 (version "1.1.1")
2188 (source
2189 (origin
2190 (method url-fetch)
2191 (uri (string-append "https://secure.freedesktop.org/~aplattner/vdpau/"
2192 name "-" version ".tar.bz2"))
2193 (sha256
2194 (base32
2195 "0dnpb0yh7v6rvckx82kxg045rd9rbsw25wjv7ad5n8h94s9h2yl5"))))
2196 (build-system gnu-build-system)
2197 (native-inputs
2198 `(("pkg-config" ,pkg-config)))
2199 (inputs
2200 `(("libx11" ,libx11 "out")
2201 ("libxext" ,libxext)
2202 ("xorgproto" ,xorgproto)))
2203 (home-page "https://wiki.freedesktop.org/www/Software/VDPAU/")
2204 (synopsis "Video Decode and Presentation API")
2205 (description "VDPAU is the Video Decode and Presentation API for UNIX. It
2206 provides an interface to video decode acceleration and presentation hardware
2207 present in modern GPUs.")
2208 (license (license:x11-style "file://COPYING"))))
2209
2210 (define-public vdpauinfo
2211 (package
2212 (name "vdpauinfo")
2213 (version "1.0")
2214 (source
2215 (origin
2216 (method url-fetch)
2217 (uri (string-append "https://secure.freedesktop.org/~aplattner/vdpau/"
2218 name "-" version ".tar.gz"))
2219 (sha256
2220 (base32
2221 "1i2b0k9h8r0lnxlrkgqzmrjakgaw3f1ygqqwzx8w6676g85rcm20"))))
2222 (build-system gnu-build-system)
2223 (native-inputs
2224 `(("pkg-config" ,pkg-config)
2225 ("libx11" ,libx11)))
2226 (propagated-inputs
2227 `(("libvdpau" ,libvdpau)))
2228 (home-page "https://wiki.freedesktop.org/www/Software/VDPAU/")
2229 (synopsis "Tool to query the capabilities of a VDPAU implementation")
2230 (description "Vdpauinfo is a tool to query the capabilities of a VDPAU
2231 implementation.")
2232 (license (license:x11-style "file://COPYING"))))
2233
2234 (define-public libvdpau-va-gl
2235 (package
2236 (name "libvdpau-va-gl")
2237 (version "0.4.2")
2238 (source
2239 (origin
2240 (method url-fetch)
2241 (uri (string-append "https://github.com/i-rinat/libvdpau-va-gl/"
2242 "releases/download/v" version "/libvdpau-va-gl-"
2243 version ".tar.gz"))
2244 (sha256
2245 (base32
2246 "1x2ag1f2fwa4yh1g5spv99w9x1m33hbxlqwyhm205ssq0ra234bx"))
2247 (patches (search-patches "libvdpau-va-gl-unbundle.patch"))
2248 (modules '((guix build utils)))
2249 (snippet '(begin (delete-file-recursively "3rdparty")
2250 #t))))
2251 (build-system cmake-build-system)
2252 (arguments
2253 '(#:tests? #f)) ; Tests require a running X11 server, with VA-API support.
2254 (native-inputs
2255 `(("libvdpau" ,libvdpau)
2256 ("pkg-config" ,pkg-config)))
2257 (inputs
2258 `(("libva" ,libva)
2259 ("mesa" ,mesa)))
2260 (home-page "https://github.com/i-rinat/libvdpau-va-gl")
2261 (synopsis "VDPAU driver with VA-API/OpenGL backend")
2262 (description
2263 "Many applications can use VDPAU to accelerate portions of the video
2264 decoding process and video post-processing to the GPU video hardware. Since
2265 there is no VDPAU available on Intel chips, they fall back to different drawing
2266 techniques. This driver uses OpenGL under the hood to accelerate drawing and
2267 scaling and VA-API (if available) to accelerate video decoding.")
2268 (license license:expat)))
2269
2270 (define-public recordmydesktop
2271 (package
2272 (name "recordmydesktop")
2273 (version "0.3.8.1")
2274 (source (origin
2275 (method url-fetch)
2276 (uri (string-append "mirror://sourceforge/" name "/" name "/"
2277 version "/recordmydesktop-" version ".tar.gz"))
2278 (sha256
2279 (base32
2280 "133kkl5j0r877d41bzj7kj0vf3xm8x80yyx2n8nqxrva304f58ik"))))
2281 (build-system gnu-build-system)
2282 (inputs `(("popt" ,popt)
2283 ("zlib" ,zlib)
2284 ("libx11" ,libx11)
2285 ("libice" ,libice)
2286 ("libsm" ,libsm)
2287 ("libxfixes" ,libxfixes)
2288 ("libxdamage" ,libxdamage)
2289 ("libxext" ,libxext)
2290 ("alsa-lib" ,alsa-lib)
2291 ("libvorbis" ,libvorbis)
2292 ("libtheora" ,libtheora)))
2293 (home-page "http://recordmydesktop.sourceforge.net/")
2294 (synopsis "Desktop session video recorder")
2295 (description
2296 "recordMyDesktop is a command-line tool that captures the activity in
2297 your graphical desktop and encodes it as a video. This is a useful tool for
2298 making @dfn{screencasts}.")
2299 (license license:gpl2+)))
2300
2301 (define-public simplescreenrecorder
2302 (package
2303 (name "simplescreenrecorder")
2304 (version "0.3.11")
2305 (source
2306 (origin
2307 (method git-fetch)
2308 (uri (git-reference
2309 (url "https://github.com/MaartenBaert/ssr.git")
2310 (commit version)))
2311 (file-name (git-file-name name version))
2312 (sha256
2313 (base32
2314 "0n702dnv4qshgn3b90ixvplfafjhgz6040yir5vy8khjdpciysq4"))))
2315 (build-system cmake-build-system)
2316 ;; Although libx11, libxfixes, libxext are listed as build dependencies in
2317 ;; README.md, the program builds and functions properly without them.
2318 ;; As a result, they are omitted. Please add them back if problems appear.
2319 (inputs
2320 `(("alsa-lib" ,alsa-lib)
2321 ("ffmpeg" ,ffmpeg)
2322 ("glu" ,glu)
2323 ("jack" ,jack-1)
2324 ("libxi" ,libxi)
2325 ("pulseaudio" ,pulseaudio)
2326 ("qtbase" ,qtbase)
2327 ("qtx11extras" ,qtx11extras)))
2328 (native-inputs `(("pkg-config" ,pkg-config)))
2329 (arguments
2330 `(#:configure-flags
2331 (list "-DWITH_QT5=TRUE")
2332 #:tests? #f)) ; no test suite
2333 ;; Using HTTPS causes part of the page to be displayed improperly.
2334 (home-page "http://www.maartenbaert.be/simplescreenrecorder/")
2335 (synopsis "Screen recorder")
2336 (description "SimpleScreenRecorder is an easy to use screen recorder with
2337 a graphical user interface. It supports recording the entire screen, or a
2338 part of it, and allows encoding in many different codecs and file formats.
2339 Other features include a live preview and live streaming.")
2340 (license (list license:gpl3+ ; most files
2341 license:zlib ; glinject/elfhacks.*
2342 license:isc ; glinject/*
2343 license:x11)))) ; build-aux/install-sh
2344
2345 (define-public libsmpeg
2346 (package
2347 (name "libsmpeg")
2348 (version "0.4.5")
2349 (source (origin
2350 (method svn-fetch)
2351 (uri (svn-reference
2352 (url "svn://svn.icculus.org/smpeg/trunk/")
2353 (revision 401))) ; last revision before smpeg2 (for SDL 2.0)
2354 (file-name (string-append name "-" version "-checkout"))
2355 (sha256
2356 (base32
2357 "18yfkr70lr1x1hc8snn2ldnbzdcc7b64xmkqrfk8w59gpg7sl1xn"))))
2358 (build-system gnu-build-system)
2359 (arguments
2360 `(#:phases
2361 (modify-phases %standard-phases
2362 (add-after 'unpack 'autogen.sh
2363 (lambda _
2364 (invoke "sh" "autogen.sh"))))))
2365 (native-inputs
2366 `(("autoconf" ,autoconf)
2367 ("automake" ,automake)))
2368 (inputs
2369 `(("sdl" ,sdl2)))
2370 (home-page "http://icculus.org/smpeg/")
2371 (synopsis "SDL MPEG decoding library")
2372 (description
2373 "SMPEG (SDL MPEG Player Library) is a free MPEG1 video player library
2374 with sound support. Video playback is based on the ubiquitous Berkeley MPEG
2375 player, mpeg_play v2.2. Audio is played through a slightly modified mpegsound
2376 library, part of splay v0.8.2. SMPEG supports MPEG audio (MP3), MPEG-1 video,
2377 and MPEG system streams.")
2378 (license (list license:expat
2379 license:lgpl2.1
2380 license:lgpl2.1+
2381 license:gpl2))))
2382
2383 (define-public libbdplus
2384 (package
2385 (name "libbdplus")
2386 (version "0.1.2")
2387 (source
2388 (origin
2389 (method url-fetch)
2390 (uri (string-append "https://ftp.videolan.org/pub/videolan/libbdplus/"
2391 version "/" name "-" version ".tar.bz2"))
2392 (sha256
2393 (base32 "02n87lysqn4kg2qk7d1ffrp96c44zkdlxdj0n16hbgrlrpiwlcd6"))))
2394 (inputs
2395 `(("libgcrypt" ,libgcrypt)))
2396 (build-system gnu-build-system)
2397 (home-page "https://www.videolan.org/developers/libbdplus.html")
2398 (synopsis "Library for decrypting certain Blu-Ray discs")
2399 (description "libbdplus is a library which implements the BD+ System
2400 specifications.")
2401 (license license:lgpl2.1+)))
2402
2403 (define-public libaacs
2404 (package
2405 (name "libaacs")
2406 (version "0.9.0")
2407 (source
2408 (origin
2409 (method url-fetch)
2410 (uri (string-append "https://ftp.videolan.org/pub/videolan/libaacs/"
2411 version "/" name "-" version ".tar.bz2"))
2412 (sha256
2413 (base32 "1kms92i0c7i1yl659kqjf19lm8172pnpik5lsxp19xphr74vvq27"))))
2414 (inputs
2415 `(("libgcrypt" ,libgcrypt)))
2416 (native-inputs
2417 `(("bison" ,bison)
2418 ("flex" ,flex)))
2419 (build-system gnu-build-system)
2420 (home-page "https://www.videolan.org/developers/libaacs.html")
2421 (synopsis "Library for decrypting certain Blu-Ray discs")
2422 (description "libaacs is a library which implements the Advanced Access
2423 Content System specification.")
2424 (license license:lgpl2.1+)))
2425
2426 (define-public mps-youtube
2427 (package
2428 (name "mps-youtube")
2429 (version "0.2.8")
2430 (source
2431 (origin
2432 (method git-fetch)
2433 (uri (git-reference
2434 (url "https://github.com/mps-youtube/mps-youtube.git")
2435 (commit (string-append "v" version))))
2436 (file-name (git-file-name name version))
2437 (sha256
2438 (base32
2439 "1w1jhw9rg3dx7vp97cwrk5fymipkcy2wrbl1jaa38ivcjhqg596y"))))
2440 (build-system python-build-system)
2441 (arguments
2442 ;; Tests need to be disabled until #556 upstream is fixed. It reads as if the
2443 ;; test suite results differ depending on the country and also introduce
2444 ;; non-determinism in the tests.
2445 ;; https://github.com/mps-youtube/mps-youtube/issues/556
2446 `(#:tests? #f))
2447 (propagated-inputs
2448 `(("python-pafy" ,python-pafy)
2449 ("python-pygobject" ,python-pygobject))) ; For mpris2 support
2450 (home-page "https://github.com/mps-youtube/mps-youtube")
2451 (synopsis "Terminal based YouTube player and downloader")
2452 (description
2453 "@code{mps-youtube} is based on mps, a terminal based program to
2454 search, stream and download music. This implementation uses YouTube as
2455 a source of content and can play and download video as well as audio.
2456 It can use either mpv or mplayer for playback, and for conversion of
2457 formats ffmpeg or libav is used. Users should install one of the
2458 supported players in addition to this package.")
2459 (license license:gpl3+)))
2460
2461 (define-public handbrake
2462 (package
2463 (name "handbrake")
2464 (version "1.1.2")
2465 (source (origin
2466 (method url-fetch)
2467 (uri (string-append "https://download.handbrake.fr/releases/"
2468 version "/HandBrake-" version "-source.tar.bz2"))
2469 (sha256
2470 (base32
2471 "0bny0hwlr55g2c69rsamv0xvwmfh1s4a582b9vq20xv5ly84m6ms"))
2472 (modules '((guix build utils)))
2473 (snippet
2474 ;; Remove "contrib" and source not necessary for
2475 ;; building/running under a GNU environment.
2476 '(begin
2477 (for-each delete-file-recursively
2478 '("contrib" "macosx" "win"))
2479 (substitute* "make/include/main.defs"
2480 ;; Disable unconditional inclusion of "contrib" libraries
2481 ;; (ffmpeg, libvpx, libdvdread, libdvdnav, and libbluray),
2482 ;; which would lead to fetching and building of these
2483 ;; libraries. Use our own instead.
2484 (("MODULES \\+= contrib") "# MODULES += contrib"))
2485 #t))))
2486 (build-system glib-or-gtk-build-system)
2487 (native-inputs
2488 `(("automake" ,automake) ;gui subpackage must be bootstrapped
2489 ("autoconf" ,autoconf)
2490 ("curl" ,curl) ;not actually used, but tested for
2491 ("intltool" ,intltool)
2492 ("libtool" ,libtool)
2493 ("pkg-config" ,pkg-config)
2494 ("python" ,python-2))) ;for configuration
2495 (inputs
2496 `(("bzip2" ,bzip2)
2497 ("dbus-glib" ,dbus-glib)
2498 ("ffmpeg" ,ffmpeg)
2499 ("fontconfig" ,fontconfig)
2500 ("freetype" ,freetype)
2501 ("glib" ,glib)
2502 ("gstreamer" ,gstreamer)
2503 ("gst-plugins-base" ,gst-plugins-base)
2504 ("gtk+" ,gtk+)
2505 ("jansson" ,jansson)
2506 ("lame" ,lame)
2507 ("libass" ,libass)
2508 ("libbluray" ,libbluray)
2509 ("libdvdnav" ,libdvdnav)
2510 ("libdvdread" ,libdvdread)
2511 ("libgudev" ,libgudev)
2512 ("libmpeg2" ,libmpeg2)
2513 ("libnotify" ,libnotify)
2514 ("libogg" ,libogg)
2515 ("libopus" ,opus)
2516 ("libsamplerate" ,libsamplerate)
2517 ("libtheora" ,libtheora)
2518 ("libvorbis" ,libvorbis)
2519 ("libvpx" ,libvpx)
2520 ("libxml2" ,libxml2)
2521 ("libx264" ,libx264)
2522 ("x265" ,x265)
2523 ("zlib" ,zlib)))
2524 (arguments
2525 `(#:tests? #f ;tests require Ruby and claim to be unsupported
2526 #:configure-flags
2527 (list (string-append "CPPFLAGS=-I"
2528 (assoc-ref %build-inputs "libxml2")
2529 "/include/libxml2")
2530 "LDFLAGS=-lx265")
2531 #:phases
2532 (modify-phases %standard-phases
2533 (replace 'bootstrap
2534 ;; Run bootstrap ahead of time so that shebangs get patched.
2535 (lambda _
2536 (setenv "CONFIG_SHELL" (which "sh"))
2537 (setenv "NOCONFIGURE" "1")
2538 ;; Patch the Makefile so that it doesn't bootstrap again.
2539 (substitute* "gtk/module.rules"
2540 ((".*autogen\\.sh.*") ""))
2541 (invoke "sh" "./gtk/autogen.sh")))
2542 (replace 'configure
2543 (lambda* (#:key outputs configure-flags #:allow-other-keys)
2544 ;; 'configure' is not an autoconf-generated script, and
2545 ;; errors on unrecognized arguments,
2546 ;; e.g. --enable-fast-install
2547 (let ((out (assoc-ref outputs "out")))
2548 (apply invoke "./configure"
2549 (string-append "--prefix=" out)
2550 (or configure-flags '())))))
2551 (add-after 'configure 'chdir-build
2552 (lambda _ (chdir "./build") #t)))))
2553 (home-page "https://handbrake.fr")
2554 (synopsis "Video transcoder")
2555 (description
2556 "HandBrake is a tool for converting video from any format to a selection
2557 of modern, widely supported codecs.")
2558 ;; Some under GPLv2+, some under LGPLv2.1+, and portions under BSD3.
2559 ;; Combination under GPLv2. See LICENSE.
2560 (license license:gpl2)))
2561
2562 (define-public openh264
2563 (package
2564 (name "openh264")
2565 (version "1.8.0")
2566 (source (origin
2567 (method url-fetch)
2568 (uri (string-append "https://github.com/cisco/"
2569 name "/releases/download/v"
2570 version "/Source.Code.tar.gz.gz"))
2571 (file-name (string-append name "-" version ".tar.gz"))
2572 (sha256
2573 (base32
2574 "0niha3wnn1jsndvz9vfwy2wyql8mp9j6v75vjsipy0idwan5yzgf"))))
2575 (build-system gnu-build-system)
2576 (native-inputs
2577 `(("nasm" ,nasm)
2578 ("python" ,python)))
2579 (arguments
2580 '(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
2581 "CC=gcc")
2582 #:test-target "test"
2583 #:phases (modify-phases %standard-phases
2584 ;; no configure script
2585 (delete 'configure))))
2586 (home-page "http://www.openh264.org/")
2587 (synopsis "H264 decoder library")
2588 (description
2589 "Openh264 is a library which can decode H264 video streams.")
2590 (license license:bsd-2)))
2591
2592 (define-public libmp4v2
2593 (package
2594 (name "libmp4v2")
2595 (version "2.0.0")
2596 (source
2597 (origin
2598 (method url-fetch)
2599 ;; XXX: The new location of upstream is uncertain and will become relevant the
2600 ;; moment when the googlecode archive shuts down. It is past the date it
2601 ;; should've been turned off. I tried to communicate with upstream, but this
2602 ;; wasn't very responsive and not very helpful. The short summary is, it is
2603 ;; chaos when it comes to the amount of forks and only time will tell where
2604 ;; the new upstream location is.
2605 (uri (string-append "https://storage.googleapis.com/google-"
2606 "code-archive-downloads/v2/"
2607 "code.google.com/mp4v2/mp4v2-" version ".tar.bz2"))
2608 (file-name (string-append name "-" version ".tar.bz2"))
2609 (sha256
2610 (base32
2611 "0f438bimimsvxjbdp4vsr8hjw2nwggmhaxgcw07g2z361fkbj683"))))
2612 (build-system gnu-build-system)
2613 (outputs '("out"
2614 "static")) ; 3.7MiB .a file
2615 (arguments
2616 `(#:phases
2617 (modify-phases %standard-phases
2618 (add-after 'unpack 'remove-dates
2619 (lambda _
2620 ;; Make the build reproducible.
2621 (substitute* "configure"
2622 (("PROJECT_build=\"`date`\"") "PROJECT_build=\"\"")
2623 (("ac_abs_top_builddir=$ac_pwd") "ac_abs_top_builddir=\"\""))
2624 #t))
2625 (add-after 'install 'move-static-libraries
2626 (lambda* (#:key outputs #:allow-other-keys)
2627 ;; Move static libraries to the "static" output.
2628 (let* ((out (assoc-ref outputs "out"))
2629 (lib (string-append out "/lib"))
2630 (static (assoc-ref outputs "static"))
2631 (slib (string-append static "/lib")))
2632 (mkdir-p slib)
2633 (for-each (lambda (file)
2634 (install-file file slib)
2635 (delete-file file))
2636 (find-files lib "\\.a$"))
2637 #t))))))
2638 (native-inputs
2639 `(("help2man" ,help2man)
2640 ("dejagnu" ,dejagnu)))
2641 (home-page "https://code.google.com/archive/p/mp4v2/")
2642 (synopsis "API to create and modify mp4 files")
2643 (description
2644 "The MP4v2 library provides an API to create and modify mp4 files as defined by
2645 ISO-IEC:14496-1:2001 MPEG-4 Systems. This file format is derived from Apple's QuickTime
2646 file format that has been used as a multimedia file format in a variety of platforms and
2647 applications. It is a very powerful and extensible format that can accommodate
2648 practically any type of media.")
2649 (license license:mpl1.1)))
2650
2651 (define-public libmediainfo
2652 (package
2653 (name "libmediainfo")
2654 (version "0.7.95")
2655 (source (origin
2656 (method url-fetch)
2657 (uri (string-append "https://mediaarea.net/download/source/"
2658 name "/" version"/"
2659 name "_" version ".tar.bz2"))
2660 (sha256
2661 (base32
2662 "1kchh6285b07z5nixv619hc9gml2ysdayicdiv30frrlqiyxqw4b"))))
2663 ;; TODO add a Big Buck Bunny webm for tests.
2664 (native-inputs
2665 `(("autoconf" ,autoconf)
2666 ("automake" ,automake)
2667 ("libtool" ,libtool)
2668 ("pkg-config" ,pkg-config)
2669 ("zlib" ,zlib)
2670 ("tinyxml2" ,tinyxml2)
2671 ("curl" ,curl)
2672 ("libzen" ,libzen)))
2673 (build-system gnu-build-system)
2674 (arguments
2675 '(#:tests? #f ; see above TODO
2676 #:phases
2677 ;; build scripts not in root of archive
2678 (modify-phases %standard-phases
2679 (add-after 'unpack 'change-to-build-dir
2680 (lambda _
2681 (chdir "Project/GNU/Library")
2682 #t))
2683 (add-after 'change-to-build-dir 'autogen
2684 (lambda _
2685 (invoke "sh" "autogen.sh"))))))
2686 (home-page "https://mediaarea.net/en/MediaInfo")
2687 (synopsis "Library for retrieving media metadata")
2688 (description "MediaInfo is a library used for retrieving technical
2689 information and other metadata about audio or video files. A non-exhaustive
2690 list of the information MediaInfo can retrieve from media files include:
2691
2692 @itemize
2693 @item General: title, author, director, album, track number, date, duration...
2694 @item Video: codec, aspect, fps, bitrate...
2695 @item Audio: codec, sample rate, channels, language, bitrate...
2696 @item Text: language of subtitle
2697 @item Chapters: number of chapters, list of chapters
2698 @end itemize
2699
2700 MediaInfo supports the following formats:
2701
2702 @itemize
2703 @item Video: MKV, OGM, AVI, DivX, WMV, QuickTime, Real, MPEG-1,
2704 MPEG-2, MPEG-4, DVD (VOB)...
2705 @item Video Codecs: DivX, XviD, MSMPEG4, ASP, H.264, AVC...)
2706 @item Audio: OGG, MP3, WAV, RA, AC3, DTS, AAC, M4A, AU, AIFF...
2707 @item Subtitles: SRT, SSA, ASS, SAMI...
2708 @end itemize\n")
2709 (license license:bsd-2)))
2710
2711 ;; TODO also have a GUI version available
2712 (define-public mediainfo
2713 (package
2714 (name "mediainfo")
2715 (version "18.12")
2716 (source (origin
2717 (method url-fetch)
2718 ;; Warning: This source has proved unreliable 1 time at least.
2719 ;; Consider an alternate source or report upstream if this
2720 ;; happens again.
2721 (uri (string-append "https://mediaarea.net/download/source/"
2722 name "/" version "/"
2723 name "_" version ".tar.bz2"))
2724 (sha256
2725 (base32
2726 "1ix95ilcjlawcq6phh25cgplm3riqa2ii7ql82g8yagqs4ldqp6a"))))
2727 (native-inputs
2728 `(("autoconf" ,autoconf)
2729 ("automake" ,automake)
2730 ("libtool" ,libtool)
2731 ("pkg-config" ,pkg-config)
2732 ("zlib" ,zlib)
2733 ("libmediainfo" ,libmediainfo)
2734 ("libzen" ,libzen)))
2735 (build-system gnu-build-system)
2736 (arguments
2737 '(#:tests? #f ; lacks tests
2738 #:phases
2739 ;; build scripts not in root of archive
2740 (modify-phases %standard-phases
2741 (add-after 'unpack 'change-to-build-dir
2742 (lambda _
2743 (chdir "Project/GNU/CLI")
2744 #t)))))
2745 (home-page "https://mediaarea.net/en/MediaInfo")
2746 (synopsis "Utility for reading media metadata")
2747 (description "MediaInfo is a utility used for retrieving technical
2748 information and other metadata about audio or video files. It supports the
2749 many codecs and formats supported by libmediainfo.")
2750 (license license:bsd-2)))
2751
2752 (define-public livemedia-utils
2753 (package
2754 (name "livemedia-utils")
2755 (version "2018.10.17")
2756 (source (origin
2757 (method url-fetch)
2758 (uri (string-append
2759 "https://download.videolan.org/contrib/live555/live."
2760 version ".tar.gz"))
2761 (sha256
2762 (base32
2763 "1s69ipvdc6ldscp0cr1zpsll8xc3qcagr95nl84x7b1rbg4xjs3w"))
2764 (modules '((guix build utils)))
2765 (snippet '(begin
2766 ;; As of glibc 2.26, <xlocale.h> no longer is.
2767 (substitute* "liveMedia/include/Locale.hh"
2768 (("xlocale\\.h") "locale.h"))
2769 #t))))
2770 (build-system gnu-build-system)
2771 (arguments
2772 '(#:tests? #f ; no tests
2773 #:make-flags (list "CC=gcc"
2774 (string-append "LDFLAGS=-Wl,-rpath="
2775 (assoc-ref %outputs "out") "/lib")
2776 (string-append "PREFIX="
2777 (assoc-ref %outputs "out")))
2778 #:phases (modify-phases %standard-phases
2779 (add-before 'configure 'fix-makefiles-generation
2780 (lambda _
2781 (substitute* "genMakefiles"
2782 (("/bin/rm") "rm"))
2783 #t))
2784 (replace 'configure
2785 (lambda _
2786 (invoke "./genMakefiles"
2787 "linux-with-shared-libraries"))))))
2788 (home-page "http://www.live555.com/liveMedia/")
2789 (synopsis "Set of C++ libraries for multimedia streaming")
2790 (description "This code forms a set of C++ libraries for multimedia
2791 streaming, using open standard protocols (RTP/RTCP, RTSP, SIP). The libraries
2792 can be used to stream, receive, and process MPEG, H.265, H.264, H.263+, DV or
2793 JPEG video, and several audio codecs. They can easily be extended to support
2794 additional (audio and/or video) codecs, and can also be used to build basic
2795 RTSP or SIP clients and servers.")
2796 (license license:lgpl3+)))
2797
2798 (define-public libdvbpsi
2799 (package
2800 (name "libdvbpsi")
2801 (version "1.3.2")
2802 (source (origin
2803 (method url-fetch)
2804 (uri (string-append
2805 "https://download.videolan.org/pub/libdvbpsi/"
2806 version "/libdvbpsi-" version ".tar.bz2"))
2807 (sha256
2808 (base32
2809 "1zn5hfv4qbahmydbwh59a3b480s3m5ss27r6ml35gqdip7r3jkmc"))))
2810 (build-system gnu-build-system)
2811 (home-page "https://www.videolan.org/developers/libdvbpsi.html")
2812 (synopsis "Library for decoding and generation of MPEG TS and DVB PSI
2813 tables")
2814 (description "libdvbpsi is a simple library designed for decoding and
2815 generation of MPEG TS and DVB PSI tables according to standards ISO/IEC 13818s
2816 and ITU-T H.222.0.")
2817 (license license:lgpl2.1)))
2818
2819 (define-public ffms2
2820 (package
2821 (name "ffms2")
2822 (version "2.23")
2823 (home-page "https://github.com/FFMS/ffms2")
2824 (source (origin
2825 (method git-fetch)
2826 (uri (git-reference
2827 (url "https://github.com/FFMS/ffms2.git")
2828 (commit version)))
2829 (file-name (git-file-name name version))
2830 (sha256
2831 (base32
2832 "0dkz5b3gxq5p4xz0qqg6l2sigszrlsinz3skyf0ln4wf3zrvf8m5"))))
2833 (build-system gnu-build-system)
2834 (arguments
2835 '(#:configure-flags
2836 (list "--enable-avresample")))
2837 (inputs
2838 `(("zlib" ,zlib)))
2839 (propagated-inputs
2840 `(("ffmpeg" ,ffmpeg)))
2841 (native-inputs
2842 `(("pkg-config" ,pkg-config)))
2843 (synopsis "Cross-platform wrapper around ffmpeg/libav")
2844 (description
2845 "FFMpegSource is a wrapper library around ffmpeg/libav that allows
2846 programmers to access a standard API to open and decompress media files.")
2847 ;; sources are distributed under a different license that the binary.
2848 ;; see https://github.com/FFMS/ffms2/blob/master/COPYING
2849 (license license:gpl2+))); inherits from ffmpeg
2850
2851 (define-public aegisub
2852 (package
2853 (name "aegisub")
2854 (version "3.2.2")
2855 (source (origin
2856 (method url-fetch)
2857 (uri (string-append
2858 "http://ftp.aegisub.org/pub/archives/releases/source/"
2859 name "-" version ".tar.xz"))
2860 (sha256
2861 (base32
2862 "11b83qazc8h0iidyj1rprnnjdivj1lpphvpa08y53n42bfa36pn5"))
2863 (patches (search-patches "aegisub-icu59-include-unistr.patch"
2864 "aegisub-boost68.patch"))))
2865 (build-system gnu-build-system)
2866 (arguments
2867 `(#:configure-flags
2868 (list "--disable-update-checker"
2869 "--without-portaudio"
2870 "--without-openal"
2871 "--without-oss"
2872 "CXXFLAGS=-DU_USING_ICU_NAMESPACE=1")
2873 ;; tests require busted, a lua package we don't have yet
2874 #:tests? #f
2875 #:phases
2876 (modify-phases %standard-phases
2877 (add-before 'configure 'fix-ldflags
2878 (lambda _
2879 (setenv "LDFLAGS" "-pthread")
2880 #t)))))
2881 (inputs
2882 `(("boost" ,boost)
2883 ("desktop-file-utils" ,desktop-file-utils)
2884 ("ffms2" ,ffms2)
2885 ("fftw" ,fftw)
2886 ("hunspell" ,hunspell)
2887 ("mesa" ,mesa)
2888 ("libass" ,libass)
2889 ("alsa-lib" ,alsa-lib)
2890 ("pulseaudio" ,pulseaudio)
2891 ("libx11" ,libx11)
2892 ("freetype" ,freetype)
2893 ("wxwidgets-gtk2" ,wxwidgets-gtk2)))
2894 (native-inputs
2895 `(("intltool" ,intltool)
2896 ("pkg-config" ,pkg-config)))
2897 (home-page "http://www.aegisub.org/")
2898 (synopsis "Subtitle engine")
2899 (description
2900 "Aegisub is a tool for creating and modifying subtitles. Aegisub makes
2901 it quick and easy to time subtitles to audio, and features many powerful
2902 tools for styling them, including a built-in real-time video preview.")
2903 (license (list license:bsd-3 ; the package is licensed under the bsd-3, except
2904 license:mpl1.1 ; for vendor/universalchardet under the mpl1.1
2905 license:expat)))) ; and src/gl that is under a license similar
2906 ; the the Expat license, with a rewording (Software -> Materials). (called MIT
2907 ; by upstream). See https://github.com/Aegisub/Aegisub/blob/master/LICENCE
2908 ; src/MatroskaParser.(c|h) is under bsd-3 with permission from the author
2909
2910 (define-public gst-transcoder
2911 (package
2912 (name "gst-transcoder")
2913 (version "1.12.2")
2914 (source
2915 (origin
2916 (method git-fetch)
2917 (uri (git-reference
2918 (url "https://github.com/pitivi/gst-transcoder.git")
2919 (commit version)))
2920 (file-name (git-file-name name version))
2921 (sha256
2922 (base32
2923 "0nw1zykqc6c8xs3ri55pm00pwyz93z4y4nd880apfiwj7yv5p3az"))))
2924 (build-system meson-build-system)
2925 (inputs
2926 `(("gobject-introspection" ,gobject-introspection)
2927 ("glib" ,glib)
2928 ("gstreamer" ,gstreamer)
2929 ("gst-plugins-base" ,gst-plugins-base)))
2930 (native-inputs
2931 `(("python" ,python)
2932 ("pkg-config" ,pkg-config)))
2933 (home-page "https://github.com/pitivi/gst-transcoder/")
2934 (synopsis "GStreamer Transcoding API")
2935 (description "GStreamer Transcoding API")
2936 (license license:lgpl2.1)))
2937
2938 (define-public gavl
2939 (package
2940 (name "gavl")
2941 (version "1.4.0")
2942 (source
2943 (origin
2944 (method url-fetch)
2945 (uri (string-append "mirror://sourceforge/gmerlin/"
2946 name "/" version "/"
2947 name "-" version ".tar.gz"))
2948 (file-name (string-append name "-" version ".tar.gz"))
2949 (sha256
2950 (base32
2951 "1kikkn971a14zzm7svi7190ldc14fjai0xyhpbcmp48s750sraji"))))
2952 (build-system gnu-build-system)
2953 (arguments
2954 '(#:configure-flags '("LIBS=-lm")))
2955 (native-inputs
2956 `(("pkg-config" ,pkg-config)
2957 ("doxygen" ,doxygen)))
2958 (home-page "http://gmerlin.sourceforge.net")
2959 (synopsis "Low level library for multimedia API building")
2960 (description
2961 "Gavl is short for Gmerlin Audio Video Library. It is a low level
2962 library, upon which multimedia APIs can be built. Gavl handles all the
2963 details of audio and video formats like colorspaces, sample rates,
2964 multichannel configurations, etc. It provides standardized definitions for
2965 those formats as well as container structures for carrying audio samples or
2966 video images inside an application.
2967
2968 In addition, it handles the sometimes ugly task of converting between all
2969 these formats and provides some elementary operations (copying, scaling,
2970 alpha blending etc).")
2971 (license license:gpl3)))
2972
2973 (define-public frei0r-plugins
2974 (package
2975 (name "frei0r-plugins")
2976 (version "1.6.1")
2977 (source
2978 (origin
2979 (method url-fetch)
2980 (uri (string-append "https://files.dyne.org/frei0r/"
2981 "frei0r-plugins-" version ".tar.gz"))
2982 (sha256
2983 (base32
2984 "0pji26fpd0dqrx1akyhqi6729s394irl73dacnyxk58ijqq4dhp0"))))
2985 (build-system gnu-build-system)
2986 (arguments
2987 `(#:phases
2988 (modify-phases %standard-phases
2989 (add-after 'unpack 'autotools
2990 (lambda _
2991 (invoke "sh" "autogen.sh"))))))
2992 ;; TODO: opencv for additional face detection filters.
2993 (inputs
2994 `(("gavl" ,gavl)
2995 ("cairo" ,cairo)))
2996 (native-inputs
2997 `(("pkg-config" ,pkg-config)
2998 ("libtool" ,libtool)
2999 ("automake" ,automake)
3000 ("autoconf" ,autoconf)))
3001 (home-page "https://www.dyne.org/software/frei0r/")
3002 (synopsis "Minimalistic plugin API for video effects")
3003 (description
3004 "Frei0r is a minimalistic plugin API for video effects.
3005 The main emphasis is on simplicity for an API that will round up
3006 the most common video effects into simple filters, sources and
3007 mixers that can be controlled by parameters. Frei0r wants to
3008 provide a way to share these simple effects between many
3009 applications, avoiding their reimplementation by different projects.
3010 It counts more than 100 plugins.")
3011 (license (list license:gpl2+
3012 ;; The following files are licensed as LGPL2.1+:
3013 ;; src/generator/ising0r/ising0r.c
3014 ;; src/generator/onecol0r/onecol0r.cpp
3015 ;; src/generator/nois0r/nois0r.cpp
3016 ;; src/generator/lissajous0r/lissajous0r.cpp
3017 ;; src/filter/ndvi/gradientlut.hpp
3018 ;; src/filter/ndvi/ndvi.cpp
3019 ;; src/filter/facedetect/facedetect.cpp
3020 license:lgpl2.1+))))
3021
3022 (define-public motion
3023 (package
3024 (name "motion")
3025 (version "4.2")
3026 (home-page "https://motion-project.github.io/")
3027 (source (origin
3028 (method git-fetch)
3029 (uri (git-reference
3030 (url "https://github.com/Motion-Project/motion.git")
3031 (commit (string-append "release-" version))))
3032 (sha256
3033 (base32
3034 "0c0q6dl4v561m5y8bp0c0h4p3s52fjgcdnsrrf5ygdi288d3rfxv"))
3035 (file-name (git-file-name name version))))
3036 (build-system gnu-build-system)
3037 (native-inputs
3038 `(("autoconf" ,autoconf-wrapper)
3039 ("automake" ,automake)
3040 ("gettext" ,gettext-minimal)
3041 ("pkg-config" ,pkg-config)))
3042 (inputs
3043 `(("libjpeg" ,libjpeg)
3044 ("ffmpeg" ,ffmpeg-3.4)
3045 ("libmicrohttpd" ,libmicrohttpd)
3046 ("sqlite" ,sqlite)))
3047 (arguments
3048 '(#:phases (modify-phases %standard-phases
3049 (replace 'bootstrap
3050 (lambda _
3051 (patch-shebang "version.sh")
3052 (invoke "autoreconf" "-vfi"))))
3053 #:configure-flags '("--sysconfdir=/etc")
3054 #:make-flags (list (string-append "sysconfdir="
3055 (assoc-ref %outputs "out")
3056 "/etc"))
3057
3058 #:tests? #f)) ;no 'check' target
3059 (synopsis "Detect motion from video signals")
3060 (description
3061 "Motion is a program that monitors the video signal from one or more
3062 cameras and is able to detect if a significant part of the picture has
3063 changed. Or in other words, it can detect motion.")
3064
3065 ;; Some files say "version 2" and others "version 2 or later".
3066 (license license:gpl2)))
3067
3068 (define-public subdl
3069 (let ((commit "4cf5789b11f0ff3f863b704b336190bf968cd471")
3070 (revision "1"))
3071 (package
3072 (name "subdl")
3073 (version (git-version "1.0.3" revision commit))
3074 (source (origin
3075 (method git-fetch)
3076 (uri (git-reference
3077 (url "https://github.com/alexanderwink/subdl.git")
3078 (commit commit)))
3079 (file-name (git-file-name name version))
3080 (sha256
3081 (base32
3082 "0kmk5ck1j49q4ww0lvas2767kwnzhkq0vdwkmjypdx5zkxz73fn8"))))
3083 (build-system trivial-build-system)
3084 (arguments
3085 `(#:modules ((guix build utils))
3086 #:builder (begin
3087 (use-modules (guix build utils))
3088 (let* ((out (assoc-ref %outputs "out"))
3089 (bin (string-append out "/bin"))
3090 (source (assoc-ref %build-inputs "source"))
3091 (python (assoc-ref %build-inputs "python")))
3092 (install-file (string-append source "/subdl") bin)
3093 (patch-shebang (string-append bin "/subdl")
3094 (list (string-append python "/bin")))))))
3095 (inputs `(("python" ,python)))
3096 (synopsis "Command-line tool for downloading subtitles from opensubtitles.org")
3097 (description "Subdl is a command-line tool for downloading subtitles from
3098 opensubtitles.org. By default, it will search for English subtitles, display
3099 the results, download the highest-rated result in the requested language and
3100 save it to the appropriate filename.")
3101 (license license:gpl3+)
3102 (home-page "https://github.com/alexanderwink/subdl"))))
3103
3104 (define-public l-smash
3105 (package
3106 (name "l-smash")
3107 (version "2.14.5")
3108 (source (origin
3109 (method git-fetch)
3110 (uri (git-reference
3111 (url "https://github.com/l-smash/l-smash.git")
3112 (commit (string-append "v" version))))
3113 (file-name (git-file-name name version))
3114 (sha256
3115 (base32
3116 "0rcq9727im6kd8da8b7kzzbzxdldvmh5nsljj9pvr4m3lj484b02"))))
3117 (build-system gnu-build-system)
3118 (arguments
3119 `(#:tests? #f ;no tests
3120 #:make-flags
3121 (list (string-append "LDFLAGS=-Wl,-L.,-rpath="
3122 (assoc-ref %outputs "out") "/lib"))
3123 #:phases
3124 (modify-phases %standard-phases
3125 ;; configure fails if it is followed by CONFIG_SHELL
3126 (replace 'configure
3127 (lambda* (#:key outputs #:allow-other-keys)
3128 (let ((out (assoc-ref outputs "out")))
3129 (invoke "./configure" (string-append "--prefix=" out)
3130 "--disable-static")))))))
3131 (native-inputs
3132 `(("which" ,which)))
3133 (home-page "https://l-smash.github.io/l-smash/")
3134 (synopsis "MP4 multiplexer and demultiplexer library")
3135 (description
3136 "L-SMASH is a cross-platform library that handles the ISO base media file
3137 format and some of its derived file formats, including MP4. It operates as a
3138 multiplexer and demultiplexer, and can mux video and audio in several formats
3139 using standalone executable files.")
3140 (license license:isc)))
3141
3142 (define-public qtfaststart
3143 (package
3144 (name "qtfaststart")
3145 (version "1.8")
3146 (source (origin
3147 (method url-fetch)
3148 (uri (pypi-uri "qtfaststart" version))
3149 (sha256
3150 (base32
3151 "0hcjfik8hhb1syqvyh5c6aillpvzal26nkjflcq1270z64aj6i5h"))))
3152 (build-system python-build-system)
3153 (arguments
3154 '(#:tests? #f)) ; no test suite
3155 (synopsis "Move QuickTime and MP4 metadata to the beginning of the file")
3156 (description "qtfaststart enables streaming and pseudo-streaming of
3157 QuickTime and MP4 files by moving metadata and offset information to the
3158 beginning of the file. It can also print some useful information about the
3159 structure of the file. This program is based on qt-faststart.c from the FFmpeg
3160 project, which is released into the public domain, as well as ISO 14496-12:2005
3161 (the official spec for MP4), which can be obtained from the ISO or found
3162 online.")
3163 (home-page "https://github.com/danielgtaylor/qtfaststart")
3164 (license license:expat)))
3165
3166 (define-public vidstab
3167 (package
3168 (name "vidstab")
3169 (version "1.1.0")
3170 (source (origin
3171 (method git-fetch)
3172 (uri (git-reference
3173 (url "https://github.com/georgmartius/vid.stab.git")
3174 (commit (string-append "v" version))))
3175 (file-name (git-file-name name version))
3176 (sha256
3177 (base32
3178 "0a3frpm2kdbx7vszhg64p3alisag73bcspl7fp3a2f1kgq7rbh38"))))
3179 (build-system cmake-build-system)
3180 (arguments
3181 '(#:tests? #f)) ; tests are not run as part of standard build process
3182 (home-page "http://public.hronopik.de/vid.stab/")
3183 (synopsis "Video stabilization library")
3184 (description "Vidstab is a video stabilization library which can be used
3185 with FFmpeg. A video acquired using a hand-held camera or a camera mounted on a
3186 vehicle typically suffers from undesirable shakes and jitters. Activities such
3187 as surfing, skiing, riding and walking while shooting videos are especially
3188 prone to erratic camera shakes. Vidstab targets these video contents to help
3189 create smoother and stable videos.")
3190 (license license:gpl2+)))
3191
3192 (define-public libopenshot
3193 (package
3194 (name "libopenshot")
3195 (version "0.2.2")
3196 (source (origin
3197 (method git-fetch)
3198 (uri (git-reference
3199 (url "https://github.com/OpenShot/libopenshot")
3200 (commit (string-append "v" version))))
3201 (file-name (git-file-name name version))
3202 (sha256
3203 (base32
3204 "1x4kv05pdq1pglb6y056aa7llc6iyibyhzg93k7zwj0q08cp5ixd"))
3205 (modules '((guix build utils)))
3206 (snippet '(begin
3207 ;; Allow overriding of the python installation dir
3208 (substitute* "src/bindings/python/CMakeLists.txt"
3209 (("(SET\\(PYTHON_MODULE_PATH.*)\\)" _ set)
3210 (string-append set " CACHE PATH "
3211 "\"Python bindings directory\")")))
3212 #t))
3213 (patches (search-patches "libopenshot-tests-with-system-libs.patch"))))
3214 (build-system cmake-build-system)
3215 (native-inputs
3216 `(("pkg-config" ,pkg-config)
3217 ("python" ,python)
3218 ("swig" ,swig)
3219 ("unittest++" ,unittest-cpp)))
3220 (propagated-inputs ;all referenced in installed headers
3221 `(("cppzmq" ,cppzmq)
3222 ("ffmpeg" ,ffmpeg)
3223 ("imagemagick" ,imagemagick)
3224 ("jsoncpp" ,jsoncpp)
3225 ("libopenshot-audio" ,libopenshot-audio)
3226 ("qt" ,qt) ;widgets, core, gui, multimedia, and multimediawidgets
3227 ("zeromq" ,zeromq)))
3228 (arguments
3229 `(#:configure-flags
3230 (list (string-append "-DPYTHON_MODULE_PATH:PATH=" %output "/lib/python"
3231 ,(version-major+minor (package-version python))
3232 "/site-packages")
3233 "-DUSE_SYSTEM_JSONCPP:BOOL=ON")
3234 #:phases
3235 (modify-phases %standard-phases
3236 (add-before 'configure 'set-vars
3237 (lambda* (#:key inputs #:allow-other-keys)
3238 (setenv "LIBOPENSHOT_AUDIO_DIR"
3239 (assoc-ref inputs "libopenshot-audio"))
3240 (setenv "ZMQDIR"
3241 (assoc-ref inputs "zeromq"))
3242 (setenv "UNITTEST_DIR"
3243 (string-append (assoc-ref inputs "unittest++")
3244 "/include/UnitTest++"))
3245 #t)))))
3246 (home-page "https://openshot.org")
3247 (synopsis "Video-editing, animation, and playback library")
3248 (description "OpenShot Library (libopenshot) is a powerful C++ video
3249 editing library with a multi-threaded and feature rich video editing
3250 API. It includes bindings for Python, Ruby, and other languages.")
3251 (license license:lgpl3+)))
3252
3253 (define-public openshot
3254 (package
3255 (name "openshot")
3256 (version "2.4.3")
3257 (source (origin
3258 (method git-fetch)
3259 (uri (git-reference
3260 (url "https://github.com/OpenShot/openshot-qt")
3261 (commit (string-append "v" version))))
3262 (file-name (git-file-name name version))
3263 (sha256
3264 (base32
3265 "1qdw1mli4y9qhrnllnkaf6ydgw5vfvdb90chs4i679k0x0jyb9a2"))))
3266 (build-system python-build-system)
3267 (inputs
3268 `(("ffmpeg" ,ffmpeg)
3269 ("libopenshot" ,libopenshot)
3270 ("python" ,python)
3271 ("python-pyqt" ,python-pyqt)
3272 ("python-pyzmq" ,python-pyzmq)
3273 ("python-requests" ,python-requests)
3274 ("qtsvg" ,qtsvg)))
3275 (arguments
3276 `(#:tests? #f ;no tests
3277 #:phases (modify-phases %standard-phases
3278 (delete 'build) ;install phase does all the work
3279 (add-before 'install 'set-tmp-home
3280 (lambda _
3281 ;; src/classes/info.py "needs" to create several
3282 ;; directories in $HOME when loaded during build
3283 (setenv "HOME" "/tmp")
3284 #t))
3285 (add-after 'install 'wrap-program
3286 (lambda* (#:key inputs outputs #:allow-other-keys)
3287 (wrap-program (string-append (assoc-ref outputs "out")
3288 "/bin/openshot-qt")
3289 `("QT_PLUGIN_PATH" prefix
3290 ,(list (string-append (assoc-ref inputs "qtsvg")
3291 "/lib/qt5/plugins/")))))))))
3292 (home-page "https://openshot.org")
3293 (synopsis "Video editor")
3294 (description "OpenShot takes your videos, photos, and music files and
3295 helps you create the film you have always dreamed of. Easily add sub-titles,
3296 transitions, and effects and then export your film to many common formats.")
3297 (license license:gpl3+)))
3298
3299 (define-public dav1d
3300 (package
3301 (name "dav1d")
3302 (version "0.1.0")
3303 (source
3304 (origin
3305 (method url-fetch)
3306 (uri (string-append "https://downloads.videolan.org/pub/videolan/"
3307 "dav1d/" version "/dav1d-" version ".tar.xz"))
3308 (sha256
3309 (base32
3310 "0dw0liday8cbyrirhm6bgzhxg4cdy66nspfkdlq338gdsfqcvrsc"))))
3311 (build-system meson-build-system)
3312 (native-inputs `(("nasm" ,nasm)))
3313 (home-page "https://code.videolan.org/videolan/dav1d")
3314 (synopsis "AV1 decoder")
3315 (description "dav1d is a new AV1 cross-platform decoder, and focused on
3316 speed and correctness.")
3317 (license license:bsd-2)))
3318
3319 (define-public wlstream
3320 (let ((commit "182076a94562b128c3a97ecc53cc68905ea86838")
3321 (revision "1"))
3322 (package
3323 (name "wlstream")
3324 (version (git-version "0.0" revision commit))
3325 (source
3326 (origin
3327 (method git-fetch)
3328 (uri (git-reference
3329 (url "https://github.com/atomnuker/wlstream.git")
3330 (commit commit)))
3331 (file-name (git-file-name name version))
3332 (sha256
3333 (base32
3334 "01qbcgfl3g9kfwn1jf1z9pdj3bvf5lmg71d1vwkcllc2az24bjqp"))))
3335 (build-system meson-build-system)
3336 (native-inputs `(("libdrm" ,libdrm)
3337 ("pkg-config" ,pkg-config)))
3338 (inputs `(("ffmpeg" ,ffmpeg)
3339 ("pulseaudio" ,pulseaudio)
3340 ("wayland" ,wayland)
3341 ("wayland-protocols" ,wayland-protocols)))
3342 (home-page "https://github.com/atomnuker/wlstream")
3343 (synopsis "Screen capture tool for Wayland sessions")
3344 (description "Wlstream is a screen capture tool for recording audio and
3345 video from a Wayland session.")
3346 (license license:lgpl2.1+))))