[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/06: gnu: Add xiph-rnnoise.
From: |
guix-commits |
Subject: |
01/06: gnu: Add xiph-rnnoise. |
Date: |
Fri, 24 Dec 2021 13:12:53 -0500 (EST) |
lilyp pushed a commit to branch master
in repository guix.
commit 60541df3c4ace9ce13590f9e98b0fdd9b4435c1a
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
AuthorDate: Sat Dec 4 14:39:09 2021 +0100
gnu: Add xiph-rnnoise.
* gnu/packages/xiph.scm (xiph-rnnoise): New variable.
---
gnu/packages/xiph.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/xiph.scm b/gnu/packages/xiph.scm
index ccd99de..1159246 100644
--- a/gnu/packages/xiph.scm
+++ b/gnu/packages/xiph.scm
@@ -498,3 +498,36 @@ things in between.")
icecast server. It handles the socket connection, the timing of the data,
and prevents bad data from getting to the icecast server.")
(license license:gpl2+)))
+
+(define-public xiph-rnnoise
+ ;; No upstream release
+ (let ((commit "7f449bf8bd3b933891d12c30112268c4090e4d59")
+ (revision "0"))
+ (package
+ (name "rnnoise")
+ (version (git-version "0" revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://gitlab.xiph.org/xiph/rnnoise")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0y8jdvxd9namw4f9hcmcmm2q0f32mnhfyjap8906hl308cws3rkj"))))
+ (build-system gnu-build-system)
+ (native-inputs
+ `(("autoconf" ,autoconf)
+ ("automake" ,automake)
+ ("libtool" ,libtool)))
+ (home-page "https://gitlab.xiph.org/xiph/rnnoise")
+ (synopsis "Real-time noise suppression")
+ (description "RNNoise is a noise suppression library based on a recurrent
+neural network. The algorithm is described in Jean-Marc Valin's paper
+@cite{A Hybrid DSP/Deep Learning Approach to Real-Time Full-Band Speech
+Enhancement}.")
+ (license license:bsd-3)
+ (properties
+ ;; There's no public release and a conflicting package, so hide it for
+ ;; now.
+ `((hidden? . #t))))))
- branch master updated (6b01be8 -> ef4c9ab), guix-commits, 2021/12/24
- 04/06: gnu: Move go-github-com-aswinkarthik-csvdiff to textutils., guix-commits, 2021/12/24
- 05/06: gnu: Add bibutils., guix-commits, 2021/12/24
- 02/06: gnu: webrtc-for-telegram-desktop: Update to 91d836dc84a16584c6ac52b36c04c0de504d9c34., guix-commits, 2021/12/24
- 03/06: gnu: telegram-desktop: Update to 2.9.3., guix-commits, 2021/12/24
- 06/06: gnu: wine: Update to 6.20., guix-commits, 2021/12/24
- 01/06: gnu: Add xiph-rnnoise.,
guix-commits <=