forked from platypush/platypush
Implemented Mozilla DeepSpeech speech-to-text integration [closes #126]
This commit is contained in:
parent
fc949ed9f1
commit
b0339754b2
17 changed files with 477 additions and 1 deletions
docs/source
|
@ -53,6 +53,7 @@ Backends
|
|||
platypush/backend/sensor.mcp3008.rst
|
||||
platypush/backend/sensor.motion.pwm3901.rst
|
||||
platypush/backend/sensor.serial.rst
|
||||
platypush/backend/stt.deepspeech.rst
|
||||
platypush/backend/tcp.rst
|
||||
platypush/backend/todoist.rst
|
||||
platypush/backend/travisci.rst
|
||||
|
|
|
@ -240,6 +240,7 @@ autodoc_mock_imports = ['googlesamples.assistant.grpc.audio_helpers',
|
|||
'cpuinfo',
|
||||
'psutil',
|
||||
'openzwave',
|
||||
'deepspeech',
|
||||
]
|
||||
|
||||
sys.path.insert(0, os.path.abspath('../..'))
|
||||
|
|
|
@ -45,6 +45,7 @@ Events
|
|||
platypush/events/sensor.light.rst
|
||||
platypush/events/serial.rst
|
||||
platypush/events/sound.rst
|
||||
platypush/events/stt.rst
|
||||
platypush/events/todoist.rst
|
||||
platypush/events/torrent.rst
|
||||
platypush/events/travisci.rst
|
||||
|
|
5
docs/source/platypush/backend/stt.deepspeech.rst
Normal file
5
docs/source/platypush/backend/stt.deepspeech.rst
Normal file
|
@ -0,0 +1,5 @@
|
|||
``platypush.backend.stt.deepspeech``
|
||||
====================================
|
||||
|
||||
.. automodule:: platypush.backend.stt.deepspeech
|
||||
:members:
|
5
docs/source/platypush/events/stt.rst
Normal file
5
docs/source/platypush/events/stt.rst
Normal file
|
@ -0,0 +1,5 @@
|
|||
``platypush.message.event.stt``
|
||||
===============================
|
||||
|
||||
.. automodule:: platypush.message.event.stt
|
||||
:members:
|
5
docs/source/platypush/plugins/stt.deepspeech.rst
Normal file
5
docs/source/platypush/plugins/stt.deepspeech.rst
Normal file
|
@ -0,0 +1,5 @@
|
|||
``platypush.plugins.stt.deepspeech``
|
||||
====================================
|
||||
|
||||
.. automodule:: platypush.plugins.stt.deepspeech
|
||||
:members:
|
5
docs/source/platypush/responses/stt.rst
Normal file
5
docs/source/platypush/responses/stt.rst
Normal file
|
@ -0,0 +1,5 @@
|
|||
``platypush.message.response.stt``
|
||||
==================================
|
||||
|
||||
.. automodule:: platypush.message.response.stt
|
||||
:members:
|
|
@ -90,6 +90,7 @@ Plugins
|
|||
platypush/plugins/serial.rst
|
||||
platypush/plugins/shell.rst
|
||||
platypush/plugins/sound.rst
|
||||
platypush/plugins/stt.deepspeech.rst
|
||||
platypush/plugins/switch.rst
|
||||
platypush/plugins/switch.switchbot.rst
|
||||
platypush/plugins/switch.tplink.rst
|
||||
|
|
|
@ -6,15 +6,16 @@ Responses
|
|||
:maxdepth: 2
|
||||
:caption: Responses:
|
||||
|
||||
platypush/responses/.rst
|
||||
platypush/responses/bluetooth.rst
|
||||
platypush/responses/camera.rst
|
||||
platypush/responses/camera.android.rst
|
||||
platypush/responses/chat.telegram.rst
|
||||
platypush/responses/deepspeech.rst
|
||||
platypush/responses/google.drive.rst
|
||||
platypush/responses/pihole.rst
|
||||
platypush/responses/ping.rst
|
||||
platypush/responses/printer.cups.rst
|
||||
platypush/responses/stt.rst
|
||||
platypush/responses/system.rst
|
||||
platypush/responses/todoist.rst
|
||||
platypush/responses/trello.rst
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue