This is a small school project composed by Tsadriu, AlexDevs and Zina Gharsalloui.
STT2TTS is a small service that uses the Google Cloud API such as:
- Translate
- Speech to text
- Text to speech
It accepts an audio file from the user (or on-page recording) and translates the audio into text based on the user's selected language.
graph
A[User gives input] -- Attached file --> B[Audio gets verified]
A -- Own recorded voice --> B
B --> C[Audio gets processed]
C --> D[Google Cloud API gets called]
D --> E[Speech to text API gets called]
E --> F[Translate gets called]
F --> G[Text to speech API gets called]
G --> H{User gets output}