From 7bc7ffc24339d83e9003bb9bea6fad568bcf0204 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Mon, 24 Oct 2016 22:34:04 +0300 Subject: gnu: Add x265. * gnu/packages/video.scm (x265): New variable. --- gnu/packages/video.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) (limited to 'gnu/packages/video.scm') diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index bd82eb8397..68f78847b3 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -250,6 +250,37 @@ H.264 (MPEG-4 AVC) video streams.") "file://extras/cl.h" "See extras/cl.h in the distribution."))))) +(define-public x265 + (package + (name "x265") + (version "2.1") + (source + (origin + (method url-fetch) + (uri (string-append "https://download.videolan.org/videolan/x265/" + "x265_" version ".tar.gz")) + (sha256 + (base32 + "0hx6sr9l7586gs4qds2sj0i1m5brxkaqq3cwmibhfb559fpvkz48")) + (modules '((guix build utils))) + (snippet + '(delete-file-recursively "source/compat/getopt")))) + (build-system cmake-build-system) + (arguments + `(#:tests? #f ; tests are skipped if cpu-optimized code isn't built + #:phases + (modify-phases %standard-phases + (add-before 'configure 'prepare-build + (lambda _ + (delete-file-recursively "build") + (chdir "source") + #t))))) + (home-page "http://x265.org/") + (synopsis "Library for encoding h.265/HEVC video streams") + (description "x265 is a H.265 / HEVC video encoder application library, +designed to encode video or images into an H.265 / HEVC encoded bitstream.") + (license license:gpl2+))) + (define-public libass (package (name "libass") -- cgit v1.2.3 From d505801a061f6ff89ab9bb20947c283059408f88 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Mon, 24 Oct 2016 22:49:33 +0300 Subject: gnu: ffmpeg: Add x265 support. * gnu/packages/video.scm (ffmpeg)[inputs]: Add x265. [arguments]: Add '--enable-libx265' flag. --- gnu/packages/video.scm | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gnu/packages/video.scm') diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 68f78847b3..7f346dcc50 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -466,6 +466,7 @@ standards (MPEG-2, MPEG-4 ASP/H.263, MPEG-4 AVC/H.264, and VC-1/VMW3).") ("soxr" ,soxr) ("speex" ,speex) ("twolame" ,twolame) + ("x265" ,x265) ("xvid" ,xvid) ("zlib" ,zlib))) (native-inputs @@ -549,6 +550,7 @@ standards (MPEG-2, MPEG-4 ASP/H.263, MPEG-4 AVC/H.264, and VC-1/VMW3).") "--enable-libvpx" "--enable-libxvid" "--enable-libx264" + "--enable-libx265" "--enable-openal" "--enable-opengl" "--enable-x11grab" -- cgit v1.2.3 From 8f5f6c922fe6fe06c732bfa18df2f8100c59c2fb Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Mon, 24 Oct 2016 22:54:48 +0300 Subject: gnu: vlc: Add x265 support. * gnu/packages/video.scm (vlc)[inputs]: Add x265. --- gnu/packages/video.scm | 1 + 1 file changed, 1 insertion(+) (limited to 'gnu/packages/video.scm') diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 7f346dcc50..acf50f3e99 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -680,6 +680,7 @@ audio/video codec library.") ("sdl" ,sdl) ("sdl-image" ,sdl-image) ("speex" ,speex) + ("x265" ,x265) ("xcb-util-keysyms" ,xcb-util-keysyms))) (arguments `(#:configure-flags -- cgit v1.2.3