|
|
@ -16,9 +16,10 @@ import queue
|
|
|
|
from queue import Queue
|
|
|
|
from queue import Queue
|
|
|
|
from threading import Thread, Event
|
|
|
|
from threading import Thread, Event
|
|
|
|
from io import BytesIO
|
|
|
|
from io import BytesIO
|
|
|
|
|
|
|
|
import multiprocessing as mp
|
|
|
|
|
|
|
|
|
|
|
|
from musetalk.utils.utils import get_file_type,get_video_fps,datagen
|
|
|
|
from musetalk.utils.utils import get_file_type,get_video_fps,datagen
|
|
|
|
from musetalk.utils.preprocessing import get_landmark_and_bbox,read_imgs,coord_placeholder
|
|
|
|
#from musetalk.utils.preprocessing import get_landmark_and_bbox,read_imgs,coord_placeholder
|
|
|
|
from musetalk.utils.blending import get_image,get_image_prepare_material,get_image_blending
|
|
|
|
from musetalk.utils.blending import get_image,get_image_prepare_material,get_image_blending
|
|
|
|
from musetalk.utils.utils import load_all_model
|
|
|
|
from musetalk.utils.utils import load_all_model
|
|
|
|
from ttsreal import EdgeTTS,VoitsTTS,XTTS
|
|
|
|
from ttsreal import EdgeTTS,VoitsTTS,XTTS
|
|
|
@ -27,6 +28,102 @@ from museasr import MuseASR
|
|
|
|
import asyncio
|
|
|
|
import asyncio
|
|
|
|
from av import AudioFrame, VideoFrame
|
|
|
|
from av import AudioFrame, VideoFrame
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
from tqdm import tqdm
|
|
|
|
|
|
|
|
def read_imgs(img_list):
|
|
|
|
|
|
|
|
frames = []
|
|
|
|
|
|
|
|
print('reading images...')
|
|
|
|
|
|
|
|
for img_path in tqdm(img_list):
|
|
|
|
|
|
|
|
frame = cv2.imread(img_path)
|
|
|
|
|
|
|
|
frames.append(frame)
|
|
|
|
|
|
|
|
return frames
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def __mirror_index(size, index):
|
|
|
|
|
|
|
|
#size = len(self.coord_list_cycle)
|
|
|
|
|
|
|
|
turn = index // size
|
|
|
|
|
|
|
|
res = index % size
|
|
|
|
|
|
|
|
if turn % 2 == 0:
|
|
|
|
|
|
|
|
return res
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
return size - res - 1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def inference(render_event,batch_size,input_latent_list_cycle,audio_feat_queue,audio_out_queue,res_frame_queue,
|
|
|
|
|
|
|
|
vae, unet, pe,timesteps):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# _, vae, unet, pe = load_all_model()
|
|
|
|
|
|
|
|
# device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
|
|
|
|
|
|
|
# timesteps = torch.tensor([0], device=device)
|
|
|
|
|
|
|
|
# pe = pe.half()
|
|
|
|
|
|
|
|
# vae.vae = vae.vae.half()
|
|
|
|
|
|
|
|
# unet.model = unet.model.half()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#input_latent_list_cycle = torch.load(latents_out_path)
|
|
|
|
|
|
|
|
length = len(input_latent_list_cycle)
|
|
|
|
|
|
|
|
index = 0
|
|
|
|
|
|
|
|
count=0
|
|
|
|
|
|
|
|
counttime=0
|
|
|
|
|
|
|
|
print('start inference')
|
|
|
|
|
|
|
|
while True:
|
|
|
|
|
|
|
|
if render_event.is_set():
|
|
|
|
|
|
|
|
starttime=time.perf_counter()
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
|
|
|
whisper_chunks = audio_feat_queue.get(block=True, timeout=1)
|
|
|
|
|
|
|
|
except queue.Empty:
|
|
|
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
is_all_silence=True
|
|
|
|
|
|
|
|
audio_frames = []
|
|
|
|
|
|
|
|
for _ in range(batch_size*2):
|
|
|
|
|
|
|
|
frame,type = audio_out_queue.get()
|
|
|
|
|
|
|
|
audio_frames.append((frame,type))
|
|
|
|
|
|
|
|
if type==0:
|
|
|
|
|
|
|
|
is_all_silence=False
|
|
|
|
|
|
|
|
if is_all_silence:
|
|
|
|
|
|
|
|
for i in range(batch_size):
|
|
|
|
|
|
|
|
res_frame_queue.put((None,__mirror_index(length,index),audio_frames[i*2:i*2+2]))
|
|
|
|
|
|
|
|
index = index + 1
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
# print('infer=======')
|
|
|
|
|
|
|
|
t=time.perf_counter()
|
|
|
|
|
|
|
|
whisper_batch = np.stack(whisper_chunks)
|
|
|
|
|
|
|
|
latent_batch = []
|
|
|
|
|
|
|
|
for i in range(batch_size):
|
|
|
|
|
|
|
|
idx = __mirror_index(length,index+i)
|
|
|
|
|
|
|
|
latent = input_latent_list_cycle[idx]
|
|
|
|
|
|
|
|
latent_batch.append(latent)
|
|
|
|
|
|
|
|
latent_batch = torch.cat(latent_batch, dim=0)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# for i, (whisper_batch,latent_batch) in enumerate(gen):
|
|
|
|
|
|
|
|
audio_feature_batch = torch.from_numpy(whisper_batch)
|
|
|
|
|
|
|
|
audio_feature_batch = audio_feature_batch.to(device=unet.device,
|
|
|
|
|
|
|
|
dtype=unet.model.dtype)
|
|
|
|
|
|
|
|
audio_feature_batch = pe(audio_feature_batch)
|
|
|
|
|
|
|
|
latent_batch = latent_batch.to(dtype=unet.model.dtype)
|
|
|
|
|
|
|
|
# print('prepare time:',time.perf_counter()-t)
|
|
|
|
|
|
|
|
# t=time.perf_counter()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pred_latents = unet.model(latent_batch,
|
|
|
|
|
|
|
|
timesteps,
|
|
|
|
|
|
|
|
encoder_hidden_states=audio_feature_batch).sample
|
|
|
|
|
|
|
|
# print('unet time:',time.perf_counter()-t)
|
|
|
|
|
|
|
|
# t=time.perf_counter()
|
|
|
|
|
|
|
|
recon = vae.decode_latents(pred_latents)
|
|
|
|
|
|
|
|
# print('vae time:',time.perf_counter()-t)
|
|
|
|
|
|
|
|
#print('diffusion len=',len(recon))
|
|
|
|
|
|
|
|
counttime += (time.perf_counter() - t)
|
|
|
|
|
|
|
|
count += batch_size
|
|
|
|
|
|
|
|
#_totalframe += 1
|
|
|
|
|
|
|
|
if count>=100:
|
|
|
|
|
|
|
|
print(f"------actual avg infer fps:{count/counttime:.4f}")
|
|
|
|
|
|
|
|
count=0
|
|
|
|
|
|
|
|
counttime=0
|
|
|
|
|
|
|
|
for i,res_frame in enumerate(recon):
|
|
|
|
|
|
|
|
#self.__pushmedia(res_frame,loop,audio_track,video_track)
|
|
|
|
|
|
|
|
res_frame_queue.put((res_frame,__mirror_index(length,index),audio_frames[i*2:i*2+2]))
|
|
|
|
|
|
|
|
index = index + 1
|
|
|
|
|
|
|
|
print('total batch time:',time.perf_counter()-starttime)
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
time.sleep(1)
|
|
|
|
|
|
|
|
print('musereal inference processor stop')
|
|
|
|
|
|
|
|
|
|
|
|
@torch.no_grad()
|
|
|
|
@torch.no_grad()
|
|
|
|
class MuseReal:
|
|
|
|
class MuseReal:
|
|
|
|
def __init__(self, opt):
|
|
|
|
def __init__(self, opt):
|
|
|
@ -55,7 +152,7 @@ class MuseReal:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
self.batch_size = opt.batch_size
|
|
|
|
self.batch_size = opt.batch_size
|
|
|
|
self.idx = 0
|
|
|
|
self.idx = 0
|
|
|
|
self.res_frame_queue = Queue()
|
|
|
|
self.res_frame_queue = mp.Queue(self.batch_size*2)
|
|
|
|
self.__loadmodels()
|
|
|
|
self.__loadmodels()
|
|
|
|
self.__loadavatar()
|
|
|
|
self.__loadavatar()
|
|
|
|
|
|
|
|
|
|
|
@ -68,6 +165,11 @@ class MuseReal:
|
|
|
|
self.tts = XTTS(opt,self)
|
|
|
|
self.tts = XTTS(opt,self)
|
|
|
|
#self.__warm_up()
|
|
|
|
#self.__warm_up()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
self.render_event = mp.Event()
|
|
|
|
|
|
|
|
mp.Process(target=inference, args=(self.render_event,self.batch_size,self.input_latent_list_cycle,
|
|
|
|
|
|
|
|
self.asr.feat_queue,self.asr.output_queue,self.res_frame_queue,
|
|
|
|
|
|
|
|
self.vae, self.unet, self.pe,self.timesteps)).start()
|
|
|
|
|
|
|
|
|
|
|
|
def __loadmodels(self):
|
|
|
|
def __loadmodels(self):
|
|
|
|
# load model weights
|
|
|
|
# load model weights
|
|
|
|
self.audio_processor, self.vae, self.unet, self.pe = load_all_model()
|
|
|
|
self.audio_processor, self.vae, self.unet, self.pe = load_all_model()
|
|
|
@ -129,59 +231,6 @@ class MuseReal:
|
|
|
|
encoder_hidden_states=audio_feature_batch).sample
|
|
|
|
encoder_hidden_states=audio_feature_batch).sample
|
|
|
|
recon = self.vae.decode_latents(pred_latents)
|
|
|
|
recon = self.vae.decode_latents(pred_latents)
|
|
|
|
|
|
|
|
|
|
|
|
def test_step(self,loop=None,audio_track=None,video_track=None):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# gen = datagen(whisper_chunks,
|
|
|
|
|
|
|
|
# self.input_latent_list_cycle,
|
|
|
|
|
|
|
|
# self.batch_size)
|
|
|
|
|
|
|
|
starttime=time.perf_counter()
|
|
|
|
|
|
|
|
self.asr.run_step()
|
|
|
|
|
|
|
|
whisper_chunks = self.asr.get_next_feat()
|
|
|
|
|
|
|
|
is_all_silence=True
|
|
|
|
|
|
|
|
audio_frames = []
|
|
|
|
|
|
|
|
for _ in range(self.batch_size*2):
|
|
|
|
|
|
|
|
frame,type = self.asr.get_audio_out()
|
|
|
|
|
|
|
|
audio_frames.append((frame,type))
|
|
|
|
|
|
|
|
if type==0:
|
|
|
|
|
|
|
|
is_all_silence=False
|
|
|
|
|
|
|
|
if is_all_silence:
|
|
|
|
|
|
|
|
for i in range(self.batch_size):
|
|
|
|
|
|
|
|
self.res_frame_queue.put((None,self.__mirror_index(self.idx),audio_frames[i*2:i*2+2]))
|
|
|
|
|
|
|
|
self.idx = self.idx + 1
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
# print('infer=======')
|
|
|
|
|
|
|
|
t=time.perf_counter()
|
|
|
|
|
|
|
|
whisper_batch = np.stack(whisper_chunks)
|
|
|
|
|
|
|
|
latent_batch = []
|
|
|
|
|
|
|
|
for i in range(self.batch_size):
|
|
|
|
|
|
|
|
idx = self.__mirror_index(self.idx+i)
|
|
|
|
|
|
|
|
latent = self.input_latent_list_cycle[idx]
|
|
|
|
|
|
|
|
latent_batch.append(latent)
|
|
|
|
|
|
|
|
latent_batch = torch.cat(latent_batch, dim=0)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# for i, (whisper_batch,latent_batch) in enumerate(gen):
|
|
|
|
|
|
|
|
audio_feature_batch = torch.from_numpy(whisper_batch)
|
|
|
|
|
|
|
|
audio_feature_batch = audio_feature_batch.to(device=self.unet.device,
|
|
|
|
|
|
|
|
dtype=self.unet.model.dtype)
|
|
|
|
|
|
|
|
audio_feature_batch = self.pe(audio_feature_batch)
|
|
|
|
|
|
|
|
latent_batch = latent_batch.to(dtype=self.unet.model.dtype)
|
|
|
|
|
|
|
|
# print('prepare time:',time.perf_counter()-t)
|
|
|
|
|
|
|
|
# t=time.perf_counter()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pred_latents = self.unet.model(latent_batch,
|
|
|
|
|
|
|
|
self.timesteps,
|
|
|
|
|
|
|
|
encoder_hidden_states=audio_feature_batch).sample
|
|
|
|
|
|
|
|
# print('unet time:',time.perf_counter()-t)
|
|
|
|
|
|
|
|
# t=time.perf_counter()
|
|
|
|
|
|
|
|
recon = self.vae.decode_latents(pred_latents)
|
|
|
|
|
|
|
|
# print('vae time:',time.perf_counter()-t)
|
|
|
|
|
|
|
|
#print('diffusion len=',len(recon))
|
|
|
|
|
|
|
|
for i,res_frame in enumerate(recon):
|
|
|
|
|
|
|
|
#self.__pushmedia(res_frame,loop,audio_track,video_track)
|
|
|
|
|
|
|
|
self.res_frame_queue.put((res_frame,self.__mirror_index(self.idx),audio_frames[i*2:i*2+2]))
|
|
|
|
|
|
|
|
self.idx = self.idx + 1
|
|
|
|
|
|
|
|
print('total batch time:',time.perf_counter()-starttime)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def process_frames(self,quit_event,loop=None,audio_track=None,video_track=None):
|
|
|
|
def process_frames(self,quit_event,loop=None,audio_track=None,video_track=None):
|
|
|
|
|
|
|
|
|
|
|
@ -203,7 +252,9 @@ class MuseReal:
|
|
|
|
mask = self.mask_list_cycle[idx]
|
|
|
|
mask = self.mask_list_cycle[idx]
|
|
|
|
mask_crop_box = self.mask_coords_list_cycle[idx]
|
|
|
|
mask_crop_box = self.mask_coords_list_cycle[idx]
|
|
|
|
#combine_frame = get_image(ori_frame,res_frame,bbox)
|
|
|
|
#combine_frame = get_image(ori_frame,res_frame,bbox)
|
|
|
|
|
|
|
|
#t=time.perf_counter()
|
|
|
|
combine_frame = get_image_blending(ori_frame,res_frame,bbox,mask,mask_crop_box)
|
|
|
|
combine_frame = get_image_blending(ori_frame,res_frame,bbox,mask,mask_crop_box)
|
|
|
|
|
|
|
|
#print('blending time:',time.perf_counter()-t)
|
|
|
|
|
|
|
|
|
|
|
|
image = combine_frame #(outputs['image'] * 255).astype(np.uint8)
|
|
|
|
image = combine_frame #(outputs['image'] * 255).astype(np.uint8)
|
|
|
|
new_frame = VideoFrame.from_ndarray(image, format="bgr24")
|
|
|
|
new_frame = VideoFrame.from_ndarray(image, format="bgr24")
|
|
|
@ -228,6 +279,7 @@ class MuseReal:
|
|
|
|
process_thread = Thread(target=self.process_frames, args=(quit_event,loop,audio_track,video_track))
|
|
|
|
process_thread = Thread(target=self.process_frames, args=(quit_event,loop,audio_track,video_track))
|
|
|
|
process_thread.start()
|
|
|
|
process_thread.start()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
self.render_event.set() #start infer process render
|
|
|
|
count=0
|
|
|
|
count=0
|
|
|
|
totaltime=0
|
|
|
|
totaltime=0
|
|
|
|
_starttime=time.perf_counter()
|
|
|
|
_starttime=time.perf_counter()
|
|
|
@ -236,20 +288,21 @@ class MuseReal:
|
|
|
|
# update texture every frame
|
|
|
|
# update texture every frame
|
|
|
|
# audio stream thread...
|
|
|
|
# audio stream thread...
|
|
|
|
t = time.perf_counter()
|
|
|
|
t = time.perf_counter()
|
|
|
|
self.test_step(loop,audio_track,video_track)
|
|
|
|
self.asr.run_step()
|
|
|
|
totaltime += (time.perf_counter() - t)
|
|
|
|
#self.test_step(loop,audio_track,video_track)
|
|
|
|
count += self.opt.batch_size
|
|
|
|
# totaltime += (time.perf_counter() - t)
|
|
|
|
#_totalframe += 1
|
|
|
|
# count += self.opt.batch_size
|
|
|
|
if count>=100:
|
|
|
|
# if count>=100:
|
|
|
|
print(f"------actual avg infer fps:{count/totaltime:.4f}")
|
|
|
|
# print(f"------actual avg infer fps:{count/totaltime:.4f}")
|
|
|
|
count=0
|
|
|
|
# count=0
|
|
|
|
totaltime=0
|
|
|
|
# totaltime=0
|
|
|
|
if video_track._queue.qsize()>=2*self.opt.batch_size:
|
|
|
|
if video_track._queue.qsize()>=2*self.opt.batch_size:
|
|
|
|
#print('sleep qsize=',video_track._queue.qsize())
|
|
|
|
print('sleep qsize=',video_track._queue.qsize())
|
|
|
|
time.sleep(0.04*self.opt.batch_size*1.5)
|
|
|
|
time.sleep(0.04*self.opt.batch_size*1.5)
|
|
|
|
|
|
|
|
|
|
|
|
# delay = _starttime+_totalframe*0.04-time.perf_counter() #40ms
|
|
|
|
# delay = _starttime+_totalframe*0.04-time.perf_counter() #40ms
|
|
|
|
# if delay > 0:
|
|
|
|
# if delay > 0:
|
|
|
|
# time.sleep(delay)
|
|
|
|
# time.sleep(delay)
|
|
|
|
|
|
|
|
self.render_event.clear() #end infer process render
|
|
|
|
print('musereal thread stop')
|
|
|
|
print('musereal thread stop')
|
|
|
|
|
|
|
|
|