merge overide
This commit is contained in:
commit
b0a600c7b7
12
Human.py
12
Human.py
@ -1,5 +1,6 @@
|
|||||||
#encoding = utf8
|
#encoding = utf8
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
import multiprocessing as mp
|
import multiprocessing as mp
|
||||||
import queue
|
import queue
|
||||||
import time
|
import time
|
||||||
@ -164,9 +165,7 @@ class Human:
|
|||||||
|
|
||||||
def on_destroy(self):
|
def on_destroy(self):
|
||||||
self.render_event.set()
|
self.render_event.set()
|
||||||
|
|
||||||
self._chunk_2_mal.stop()
|
self._chunk_2_mal.stop()
|
||||||
|
|
||||||
if self._tts is not None:
|
if self._tts is not None:
|
||||||
self._tts.stop()
|
self._tts.stop()
|
||||||
logger.info('human destroy')
|
logger.info('human destroy')
|
||||||
@ -193,3 +192,12 @@ class Human:
|
|||||||
print("21")
|
print("21")
|
||||||
self._feat_queue.put(mel_chunks)
|
self._feat_queue.put(mel_chunks)
|
||||||
print("22")
|
print("22")
|
||||||
|
|
||||||
|
# def pull_audio_chunk(self):
|
||||||
|
# try:
|
||||||
|
# chunk = self._audio_chunk_queue.get(block=True, timeout=1.0)
|
||||||
|
# type = 1
|
||||||
|
# except queue.Empty:
|
||||||
|
# chunk = np.zeros(self._chunk, dtype=np.float32)
|
||||||
|
# type = 0
|
||||||
|
# return chunk, type
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
#encoding = utf8
|
#encoding = utf8
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
import queue
|
import queue
|
||||||
from queue import Queue
|
from queue import Queue
|
||||||
@ -86,5 +87,3 @@ class Chunk2Mal:
|
|||||||
type = 0
|
type = 0
|
||||||
return chunk, type
|
return chunk, type
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
1
ui.py
1
ui.py
@ -120,6 +120,7 @@ def config_logging(file_name: str, console_level: int=logging.INFO, file_level:
|
|||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
# logging.basicConfig(filename='./logs/info.log', level=logging.INFO)
|
# logging.basicConfig(filename='./logs/info.log', level=logging.INFO)
|
||||||
config_logging('./logs/info.log', logging.INFO, logging.INFO)
|
config_logging('./logs/info.log', logging.INFO, logging.INFO)
|
||||||
|
|
||||||
logger.info('------------start------------')
|
logger.info('------------start------------')
|
||||||
app = App()
|
app = App()
|
||||||
app.mainloop()
|
app.mainloop()
|
||||||
|
Loading…
Reference in New Issue
Block a user