Docker Yandex speechkit and api for remote play speech
Use: https://github.com/art1415926535/Yandex_speech
-
Get API‑key for Yandex speech kit: https://developer.tech.yandex.ru/
-
Run app:
make docker_build
YANDEX_KEY=test PORT=5000 make docker_run
---
python3 -m venv .env
source .env/bin/activate
YANDEX_KEY=test PORT=5000 make run
- Example request:
curl -i -H "Content-Type: application/json" -X POST -d '{"text": "Привет!", "speaker":"omazh", "emotion":"good"}' http://127.0.0.1:5000/play
- text - Text to speech: "з+амок" (before the stressed vowel can be put "+"; the restriction on line length: 2000 bytes);
- speaker (optional) - Speaker. Female: "jane" (by default), "oksana", "alyss", "omazh". Male: "zahar", "ermil";
- lang (optional) - Language: "ru‑RU" (by default), "en-US", "tr-TR", "uk-UK";
- emotion (optional) - The color of the voice: "neutral" (by default), "evil", "good";
- speed (optional) - Speech tempo: a value between 0.1 (slowest) to 3.0 (fastest).
- Shutdown app:
curl -i http://127.0.0.1:5000/kill