Skip to content

Latest commit

 

History

History
42 lines (35 loc) · 889 Bytes

README.md

File metadata and controls

42 lines (35 loc) · 889 Bytes

Voice recognition server

We use Google Cloud Speech API to recognize audio files.
Send a POST request to recognize your audio file.

POST request

URL: https://vrp.eu.ngrok.io/recognize
Content-Type: application/json

Fields:

  • url - url to ogg file
  • user_id - user's vk id (optional field)

Server config structure

{
  "host": <host>,
  "port": <port>
}

PostgreSQL config structure

{
  "host": <host>,
  "database": <database name>,
  "user": <user>,
  "password": <password>
}

Yandex SpeechKit config structure

Documentation

{
  "api_key": <api_key>
}

Related projects