Online web testing tool
x1https://stt.asya.ai
Web socket endpoint
xxxxxxxxxx
11wss://stt.asya.ai/stream_stt
Input:
xxxxxxxxxx
11{
2"audio": "base64 encoded wav audio data",
3"sample_rate": 16000,
4"api_key": "key"
5}
Output
xxxxxxxxxx
111output_data = {
2 "total_text": total_text, # str
3 "total_timestamps": total_timestamps # List[dict]
4}
5
6total_timestamps = [{
7 "word": "test",
8 "start": 0.0,
9 "end": 0.5
10},
11 ]