forked from cjyaddone/ChatWaifu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChatWaifuVoice.py
385 lines (333 loc) · 12 KB
/
ChatWaifuVoice.py
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
from scipy.io.wavfile import write
from mel_processing import spectrogram_torch
from text import text_to_sequence, _clean_text
from models import SynthesizerTrn
import utils
import commons
import sys
import re
from torch import no_grad, LongTensor
import logging
from winsound import PlaySound
import argparse
import queue
import sounddevice as sd
from vosk import Model, KaldiRecognizer
chinese_model_path = ".\model\CN\model.pth"
chinese_config_path = ".\model\CN\config.json"
japanese_model_path = ".\model\H_excluded.pth"
japanese_config_path = ".\model\config.json"
q = queue.Queue()
def int_or_str(text):
"""Helper function for argument parsing."""
try:
return int(text)
except ValueError:
return text
def callback(indata, frames, time, status):
"""This is called (from a separate thread) for each audio block."""
if status:
print(status, file=sys.stderr)
q.put(bytes(indata))
parser = argparse.ArgumentParser(add_help=False)
parser.add_argument(
"-l", "--list-devices", action="store_true",
help="show list of audio devices and exit")
args, remaining = parser.parse_known_args()
if args.list_devices:
parser.exit(0)
parser = argparse.ArgumentParser(
description=__doc__,
formatter_class=argparse.RawDescriptionHelpFormatter,
parents=[parser])
parser.add_argument(
"-f", "--filename", type=str, metavar="FILENAME",
help="audio file to store recording to")
parser.add_argument(
"-d", "--device", type=int_or_str,
help="input device (numeric ID or substring)")
parser.add_argument(
"-r", "--samplerate", type=int, help="sampling rate")
parser.add_argument(
"-m", "--model", type=str, help="language model; e.g. en-us, fr, nl; default is en-us")
args = parser.parse_args(remaining)
try:
if args.samplerate is None:
device_info = sd.query_devices(args.device, "input")
# soundfile expects an int, sounddevice provides a float:
args.samplerate = int(device_info["default_samplerate"])
if args.model is None:
model = Model(lang="en-us")
else:
model = Model(lang=args.model)
if args.filename:
dump_fn = open(args.filename, "wb")
else:
dump_fn = None
except KeyboardInterrupt:
print("\nDone")
parser.exit(0)
####################################
#CHATGPT INITIALIZE
from pyChatGPT import ChatGPT
import json
modelmessage = """ID Output Language
0 Chinese
1 Japanese
"""
idmessage_cn = """ID Speaker
0 綾地寧々
1 在原七海
2 小茸
3 唐乐吟
"""
idmessage_jp = """ID Speaker
0 綾地寧々
1 因幡めぐる
2 朝武芳乃
3 常陸茉子
4 ムラサメ
5 鞍馬小春
6 在原七海
"""
inputLanguage = """ID Input Language
0 Chinese
1 Japanese
2 English
"""
def voice_input_jp():
model = Model(lang="cn")
print("You:")
with sd.RawInputStream(samplerate=args.samplerate, blocksize=8000, device=args.device,
dtype="int16", channels=1, callback=callback):
rec = KaldiRecognizer(model, args.samplerate)
while True:
data = q.get()
if rec.AcceptWaveform(data):
a = json.loads(rec.Result())
a = str(a['text'])
a = ''.join(a.split())
if(len(a) > 0):
print(a)
user_input = a + " 使用日本语"
return user_input
if dump_fn is not None:
dump_fn.write(data)
def voice_input_cn():
model = Model(lang="cn")
print("You:")
with sd.RawInputStream(samplerate=args.samplerate, blocksize=8000, device=args.device,
dtype="int16", channels=1, callback=callback):
rec = KaldiRecognizer(model, args.samplerate)
while True:
data = q.get()
if rec.AcceptWaveform(data):
a = json.loads(rec.Result())
a = str(a['text'])
a = ''.join(a.split())
if(len(a) > 0):
print(a)
user_input = a
return user_input
if dump_fn is not None:
dump_fn.write(data)
def voice_input_jpjp():
model = Model(lang="ja")
print("You:")
with sd.RawInputStream(samplerate=args.samplerate, blocksize=8000, device=args.device,
dtype="int16", channels=1, callback=callback):
rec = KaldiRecognizer(model, args.samplerate)
while True:
data = q.get()
if rec.AcceptWaveform(data):
a = json.loads(rec.Result())
a = str(a['text'])
a = ''.join(a.split())
if(len(a) > 0):
print(a)
user_input = a + " 使用日本语"
return user_input
if dump_fn is not None:
dump_fn.write(data)
def voice_input_enjp():
model = Model(lang="en-us")
print("You:")
with sd.RawInputStream(samplerate=args.samplerate, blocksize=8000, device=args.device,
dtype="int16", channels=1, callback=callback):
rec = KaldiRecognizer(model, args.samplerate)
while True:
data = q.get()
if rec.AcceptWaveform(data):
a = json.loads(rec.Result())
a = str(a['text'])
a = ''.join(a.split())
if(len(a) > 0):
print(a)
user_input = a + " 使用日本语"
return user_input
if dump_fn is not None:
dump_fn.write(data)
def get_token():
token = input("Copy your token from ChatGPT and press Enter \n")
return token
################################################
logging.getLogger('numba').setLevel(logging.WARNING)
def get_text(text, hps, cleaned=False):
if cleaned:
text_norm = text_to_sequence(text, hps.symbols, [])
else:
text_norm = text_to_sequence(text, hps.symbols, hps.data.text_cleaners)
if hps.data.add_blank:
text_norm = commons.intersperse(text_norm, 0)
text_norm = LongTensor(text_norm)
return text_norm
def get_speaker_id(message):
speaker_id = input(message)
try:
speaker_id = int(speaker_id)
except:
print(str(speaker_id) + ' is not a valid ID!')
sys.exit(1)
return speaker_id
def get_model_id(message):
speaker_id = input(message)
try:
speaker_id = int(speaker_id)
except:
print(str(speaker_id) + ' is not a valid ID!')
sys.exit(1)
return speaker_id
def get_language_id(message):
speaker_id = input(message)
try:
speaker_id = int(speaker_id)
except:
print(str(speaker_id) + ' is not a valid ID!')
sys.exit(1)
return speaker_id
def get_label_value(text, label, default, warning_name='value'):
value = re.search(rf'\[{label}=(.+?)\]', text)
if value:
try:
text = re.sub(rf'\[{label}=(.+?)\]', '', text, 1)
value = float(value.group(1))
except:
print(f'Invalid {warning_name}!')
sys.exit(1)
else:
value = default
return value, text
def get_label(text, label):
if f'[{label}]' in text:
return True, text.replace(f'[{label}]', '')
else:
return False, text
def generateSound(inputString, id, model_id):
if '--escape' in sys.argv:
escape = True
else:
escape = False
#model = input('0: Chinese')
#config = input('Path of a config file: ')
if model_id == 0:
model = chinese_model_path
config = chinese_config_path
elif model_id == 1:
model = japanese_model_path
config = japanese_config_path
hps_ms = utils.get_hparams_from_file(config)
n_speakers = hps_ms.data.n_speakers if 'n_speakers' in hps_ms.data.keys() else 0
n_symbols = len(hps_ms.symbols) if 'symbols' in hps_ms.keys() else 0
emotion_embedding = hps_ms.data.emotion_embedding if 'emotion_embedding' in hps_ms.data.keys() else False
net_g_ms = SynthesizerTrn(
n_symbols,
hps_ms.data.filter_length // 2 + 1,
hps_ms.train.segment_size // hps_ms.data.hop_length,
n_speakers=n_speakers,
emotion_embedding=emotion_embedding,
**hps_ms.model)
_ = net_g_ms.eval()
utils.load_checkpoint(model, net_g_ms)
if n_symbols != 0:
if not emotion_embedding:
#while True:
if(1 == 1):
choice = 't'
if choice == 't':
text = inputString
if text == '[ADVANCED]':
text = "我不会说"
length_scale, text = get_label_value(
text, 'LENGTH', 1, 'length scale')
noise_scale, text = get_label_value(
text, 'NOISE', 0.667, 'noise scale')
noise_scale_w, text = get_label_value(
text, 'NOISEW', 0.8, 'deviation of noise')
cleaned, text = get_label(text, 'CLEANED')
stn_tst = get_text(text, hps_ms, cleaned=cleaned)
speaker_id = id
out_path = "output.wav"
with no_grad():
x_tst = stn_tst.unsqueeze(0)
x_tst_lengths = LongTensor([stn_tst.size(0)])
sid = LongTensor([speaker_id])
audio = net_g_ms.infer(x_tst, x_tst_lengths, sid=sid, noise_scale=noise_scale,
noise_scale_w=noise_scale_w, length_scale=length_scale)[0][0, 0].data.cpu().float().numpy()
write(out_path, hps_ms.data.sampling_rate, audio)
print('Successfully saved!')
if __name__ == "__main__":
session_token = get_token()
api = ChatGPT(session_token)
print(inputLanguage)
language_id = get_language_id("选择输入语言:")
if language_id == 0: #cn
print(modelmessage)
model_id = get_model_id('选择回复语言: ')
if model_id == 0:
print("\n" + idmessage_cn)
id = get_speaker_id('选择角色: ')
elif model_id == 1:
print("\n" + idmessage_jp)
id = get_speaker_id('选择角色: ')
elif language_id == 1: #jp
model_id = 1
print("\n" + idmessage_jp)
id = get_speaker_id('选择角色: ')
elif language_id == 2: #en
model_id = 1
print("\n" + idmessage_cn)
id = get_speaker_id('选择角色: ')
print()
while True:
if language_id == 0 and model_id == 0: #input=cn output=cn
resp = api.send_message(voice_input_cn())
if(resp == "quit()"):
break
answer = resp["message"].replace('\n','')
print("ChatGPT:")
print(answer)
generateSound("[ZH]"+answer+"[ZH]", id, model_id)
PlaySound(r'.\output.wav', flags=1)
elif language_id == 0 and model_id == 1: #input=cn output=jp
resp = api.send_message(voice_input_jp())
if(resp == "quit()"):
break
answer = resp["message"].replace('\n','')
print("ChatGPT:")
print(answer)
generateSound(answer, id, model_id)
PlaySound(r'.\output.wav', flags=1)
elif language_id == 1: #input=jp output=jp
resp = api.send_message(voice_input_jpjp())
answer = resp["message"].replace('\n','')
print("ChatGPT:")
print(answer)
generateSound(answer, id, model_id)
PlaySound(r'.\output.wav', flags=0)
elif language_id == 2: #input=en output=jp
resp = api.send_message(voice_input_enjp())
answer = resp["message"].replace('\n','')
print("ChatGPT:")
print(answer)
generateSound(answer, id, model_id)
PlaySound(r'.\output.wav', flags=0)