Projects / rspeech

git clone https://molodetz.nl/retoor/rspeech.git

Files

RSPEECH

Speech recognitzion and text-to-speech powered by google. You need gcloud sdk configured on your PC. Also you need a google project with a billing account. The google project requires a default service account and a service account key. You can also use a service account token.

TTS

from rspeech.tts import tts
await tts("hello world")

STT

from rspeech.stt import listen, listen_async
# Async:
text = await listen_async()
# Traditional:
text = listen()

Need help?

This project is made in a short period of time because it's just part of a bigger project and that affected quality a bit.

If you need help, contact me on retoor@molodetz.nl.

Files

  • Makefile 111 B raw
  • README.md 679 B raw
  • pyproject.toml 89 B raw
  • requirements.txt 91 B raw
  • src