forked from themanyone/whisper_dictation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmimic3_client.py
More file actions
executable file
·49 lines (47 loc) · 1.9 KB
/
Copy pathmimic3_client.py
File metadata and controls
executable file
·49 lines (47 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/python3.10
# -*- coding: utf-8 -*-
##
## Copyright 2023 Henry Kroll <nospam@thenerdshow.com>
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 2 of the License, or
## (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program; if not, write to the Free Software
## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
## MA 02110-1301, USA.
##
import sys
import requests
import subprocess
import io
def say(text):
base_url = "http://localhost:59125/api/tts"
# params = { 'text': text, "lengthScale": "0.6" }
params = { 'text': text, "voice": "en_US/vctk_low" }
try:
response = requests.get(base_url, params=params)
if response.status_code == 200:
audio_data = io.BytesIO(response.content)
audio_bytes = audio_data.read()
# Pass the audio data to gstreamer-1.0 for playback
# You could also use `aplay -` for this
command = ['gst-launch-1.0', '-q', 'fdsrc', '!', 'wavparse', '!', 'autoaudiosink']
subprocess.run(command, input=audio_bytes, check=True,
stdout=subprocess.DEVNULL)
else:
sys.stderr.write("Error:", response.status_code)
except Exception as e:
sys.stderr.write("Cannot contact speech-dispatcherd service.")
if __name__ == '__main__':
if len(sys.argv) > 1:
say(sys.argv[1])
else:
sys.stderr.write("Import say from mimic3_client or test with `mimic3_client 'this is a test'`")