1
1
mirror of https://github.com/OpenVoiceOS/OpenVoiceOS synced 2025-06-05 22:19:21 +02:00

Implement local-backend

This commit is contained in:
j1nx
2021-01-09 18:47:29 +01:00
parent bb7e6c3d3b
commit 9f904fb811
45 changed files with 440 additions and 15 deletions

View File

@@ -0,0 +1,8 @@
config BR2_PACKAGE_PYTHON_SPEECH2TEXT
bool "python-speech2text"
select BR2_PACKAGE_PYTHON_REQUESTS # runtime
select BR2_PACKAGE_PYTHON_SPEECHRECOGNITION # runtime
help
Mycroft STT engine wrappers.
https://github.com/JarbasAl/speech2text

View File

@@ -0,0 +1,3 @@
# md5, sha256 from https://pypi.org/pypi/speech2text/json
md5 73dd0ae7986ff2ff76afdad47479f3df speech2text-0.2.1.tar.gz
sha256 cb7ac7602d76707eadb3817e99714619b5b13e5b467ce07204c0538cbfc5b7de speech2text-0.2.1.tar.gz

View File

@@ -0,0 +1,12 @@
################################################################################
#
# python-speech2text
#
################################################################################
PYTHON_SPEECH2TEXT_VERSION = 0.2.1
PYTHON_SPEECH2TEXT_SOURCE = speech2text-$(PYTHON_SPEECH2TEXT_VERSION).tar.gz
PYTHON_SPEECH2TEXT_SITE = https://files.pythonhosted.org/packages/a2/d9/de3f72dfc604a73a3e9b3e69c42de5cb9662e69c677e7914a4d89b528840
PYTHON_SPEECH2TEXT_SETUP_TYPE = setuptools
$(eval $(python-package))