Package Details: python-speechrecognition 3.16.1-1

Git Clone URL: https://aur.archlinux.org/python-speechrecognition.git (read-only, click to copy)
Package Base: python-speechrecognition
Description: Speech recognition module for Python, supporting several engines and APIs
Upstream URL: https://github.com/Uberi/speech_recognition
Keywords: amazon-lex audio cmu-sphinx google-cloud groq local speech vosk whisper
Licenses: BSD-3-Clause
Submitter: None
Maintainer: marmis
Last Packager: marmis
Votes: 7
Popularity: 0.023169
First Submitted: 2015-01-29 02:22 (UTC)
Last Updated: 2026-04-24 15:40 (UTC)

Dependencies (36)

Sources (1)

Latest Comments

« First ‹ Previous 1 2 3

micwoj92 commented on 2024-12-29 11:04 (UTC)

Please do not comment here if you use manjaro and have problems that only affect manjaro users.

micwoj92 commented on 2024-12-28 23:21 (UTC)

Don't use manjaro.

micwoj92 commented on 2024-12-23 18:23 (UTC)

@Vekhir When I tried to build these packages were not uploaded yet, so I marked this ood as a reminder. Thanks for uploading these missing deps, I will update soon.

Vekhir commented on 2024-12-23 06:44 (UTC) (edited on 2024-12-23 06:45 (UTC) by Vekhir)

This package depends on the standard libraries aifc and audioop which have been removed in 3.13. They are continued as separate packages:

https://aur.archlinux.org/packages/python-standard-aifc

https://aur.archlinux.org/packages/python-audioop

sanerb commented on 2017-10-02 23:49 (UTC)

==> Validating source files with md5sums... 3.7.1.tar.gz ... FAILED ==> ERROR: One or more files did not pass the validity check!

bijan commented on 2016-05-19 16:54 (UTC)

I changed PKGBUILD to include 3.4.5 version and added pyaudio and pocketsphinx as dependencies. hope it helps others as well: pkgname=python-speechrecognition _pkgname=speech_recognition pkgver=3.4.5 pkgrel=1 pkgdesc="Google-powered speech recognition for Python" arch=('i686' 'x86_64') url="https://github.com/Uberi/speech_recognition" license=('MIT') depends=('python', 'pyaudio', 'pocketsphinx') source=(https://github.com/Uberi/speech_recognition/archive/$pkgver.tar.gz) md5sums=('b20d0bd216b0138112950d31e004347f') build() { cd $srcdir/$_pkgname-$pkgver python setup.py build } package() { cd $srcdir/$_pkgname-$pkgver python setup.py install --root=$pkgdir }