xiwwix

Results 3 issues of xiwwix

运行app.py时遇到了以下问题: (nerfstream) D:\lipkumetahuman-stream\metahuman-stream>python app.py Traceback (most recent call last): File "D:\lipkumetahuman-stream\metahuman-stream\ernerf\raymarching\raymarching.py", line 10, in import _raymarching_face as _backend ModuleNotFoundError: No module named '_raymarching_face' During handling of the above exception, another...

您好!我先尝试了官方镜像,但是没有视频生成,所以尝试了自己clone一份代码并且按要求上传了模型文件 在运行命令python app.py --model musetalk --transport webrtc,并且按照autodl文档设置了端口代理后,提示start inference,访问http://127.0.0.1:8010/webrtcapi.html可以正常出现ui界面,但是勾选Use STUN server并点击start后无反应,控制台提示 Connection state is connecting Connection state is failed Connection state is closed 请问这种情况的原因是什么?我可以如何解决?谢谢!

``` async def human(request): params = await request.json() sessionid = params.get('sessionid',0) if params.get('interrupt'): nerfreals[sessionid].pause_talk() if params['type']=='echo': nerfreals[sessionid].put_msg_txt(params['text']) elif params['type']=='chat': res=await asyncio.get_event_loop().run_in_executor(None, llm_response(params['text'])) nerfreals[sessionid].put_msg_txt(res) return web.Response( content_type="application/json", text=json.dumps( {"code": 0, "data":"ok"}...