* gnu/packages/audio.scm (sonic): New variable. --- gnu/packages/audio.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+)
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index ebae5d5..111a82d 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -2023,3 +2023,37 @@ that contains WAVE data, compressed or not---provided there exists a format module to handle that particular file type.") (home-page "http://etree.org/shnutils/shntool/") (license license:gpl3+))) + +(define-public sonic + (package + (name "sonic") + (version "0.2.0") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/waywardgeek/sonic/archive/" + "release-" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "11a0q9wkgbb9ymf52v7dvybfhj8hprgr67zs1xcng143fvjpr0n7")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; no test suite + #:make-flags + (list (string-append "DESTDIR=" (assoc-ref %outputs "out"))) + #:phases (modify-phases %standard-phases + (delete 'configure)))) + (synopsis "Speed up or slow down speech") + (description "Sonic is a simple algorithm for speeding up or slowing down +speech. However, it's optimized for speed ups of over 2X, unlike previous +algorithms for changing speech rate. The Sonic library is a very simple ANSI C +library that is designed to easily be integrated into streaming voice +applications, like TTS back ends. + +The primary motivation behind Sonic is to enable the blind and visually impaired +to improve their productivity with open source speech engines, like espeak. +Sonic can also be used by the sighted. For example, Sonic can improve the +experience of listening to an audio book on an Android phone.") + (home-page "https://github.com/waywardgeek/sonic") + (license license:asl2.0))) -- 2.6.4