-
Notifications
You must be signed in to change notification settings - Fork 622
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
app.py 启动程序里的参数musetalk里的 --avatar_id 这个角色id是否可以 在前台动态能否修改而不需要 重新启动服务器?应该怎么做 #341
Comments
你好大佬 把你的代码加入以后 下面的 nerfreals[sessionid].change_avatar(new_avatar) 这个方法找不到,我看你引入了 elif opt.model == 'musetalk': async def change_avatar_handler(request): |
@anstonjie LipReal类中添加方法如下: |
太感谢了
…---- 回复的原邮件 ----
| 发件人 | ***@***.***> |
| 日期 | 2024年12月30日 15:25 |
| 收件人 | ***@***.***> |
| 抄送至 | ***@***.***>***@***.***> |
| 主题 | Re: [lipku/LiveTalking] app.py 启动程序里的参数musetalk里的 --avatar_id 这个角色id是否可以 在前台动态能否修改而不需要 重新启动服务器?应该怎么做 (Issue #341) |
@anstonjie LipReal类中添加方法如下:
def change_avatar(self, avatar):
self.frame_list_cycle, self.face_list_cycle, self.coord_list_cycle = avatar
# 当切换数字人形象时,旧形象相关的帧数据不再有用
while not self.res_frame_queue.empty():
try:
self.res_frame_queue.get_nowait()
except queue.Empty:
break
logger.info('数字人形象切换完成')
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you were mentioned.Message ID: ***@***.***>
|
def change_avatar(self, avatar): 当切换数字人形象时,旧形象相关的帧数据不再有用while not self.res_frame_queue.empty(): 我把方法加入 报错为 ERROR:aiohttp.server:Error handling request |
兄弟,我按照你这样改完,人可以切换过去了,,,但是嘴巴的渲染还是前一个形象的 |
切换完了但是人不动
…---- 回复的原邮件 ----
| 发件人 | ***@***.***> |
| 日期 | 2025年01月07日 16:44 |
| 收件人 | ***@***.***> |
| 抄送至 | ***@***.***>***@***.***> |
| 主题 | Re: [lipku/LiveTalking] app.py 启动程序里的参数musetalk里的 --avatar_id 这个角色id是否可以 在前台动态能否修改而不需要 重新启动服务器?应该怎么做 (Issue #341) |
兄弟,我按照你这样改完,人可以切换过去了,,,但是嘴巴的渲染还是前一个形象的
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you were mentioned.Message ID: ***@***.***>
|
嘴巴贴合可能需要单独起一个线程
…---原始邮件---
发件人: ***@***.***>
发送时间: 2025年1月7日(周二) 下午4:44
收件人: ***@***.***>;
抄送: ***@***.******@***.***>;
主题: Re: [lipku/LiveTalking] app.py 启动程序里的参数musetalk里的 --avatar_id 这个角色id是否可以 在前台动态能否修改而不需要 重新启动服务器?应该怎么做 (Issue #341)
兄弟,我按照你这样改完,人可以切换过去了,,,但是嘴巴的渲染还是前一个形象的
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.Message ID: ***@***.***>
|
程序里的这个参数 parser.add_argument('--avatar_id', type=str, default='avator_1') 参数 --avatar_id 是否可以动态传递,就是前台可以修改这个参数 而不需要重新启动服务器
The text was updated successfully, but these errors were encountered: