Error: Error invoking remote method 'model/addModel: TypeError: SQLite3 can only b ind numbers, strings, bigints, buffers,and null
在创建数字人模型的时候,服务器返回Error: Error invoking remote method 'model/addModel: TypeError: SQLite3 can only b ind numbers, strings, bigints, buffers,and null
We need more logs, please provide the logs of heygem-tts service and heygem-asr.
在创建数字人模型的时候,服务器返回Error: Error invoking remote method 'model/addModel: TypeError: SQLite3 can only b ind numbers, strings, bigints, buffers,and null
原始视频里没有声音吧
We need more logs, please provide the logs of heygem-tts service and heygem-asr.
I also encountered the same problem, is there a solution?
Looking at the log, it seems that the heygem - asr service cannot be connected. Please confirm whether the heygem - asr has been successfully launched. If it has, please also paste the key logs.
heygem-asr
heygem-tts
在创建数字人模型的时候,服务器返回Error: Error invoking remote method 'model/addModel: TypeError: SQLite3 can only b ind numbers, strings, bigints, buffers,and null
我也遇到这个问题,已经解决了,原因:UI和服务对于视频和音频的文件路径不一致,UI通过接口访问服务时传入了相对路径,而服务通过传入的路径找不到音频文件导致!
修改了 docker-compose.yml内,heygem-tts和heygem-f2f 下volumes节点映射的路径;导致部署的服务找不到视频和音频文件,
UI启动运行时,上传的视频,程序会通过ffmpeg将视频的音频分离出来,可以参考源码的: /src/main/config.js 的变量:assetPath,定义了 model, ttsProduct, ttsRoot, ttsTrain访问路径,这个路径必须与docker-compose.yml内路径一致:
Containers里的3个服务都启动了,images里的这几个服务不需要启动吧?我这边这几个启动不了
https://github.com/GuijiAI/HeyGem.ai/issues/149
在创建数字人模型的时候,服务器返回Error: Error invoking remote method 'model/addModel: TypeError: SQLite3 can only b ind numbers, strings, bigints, buffers,and null
我也遇到这个问题,已经解决了,原因:UI和服务对于视频和音频的文件路径不一致,UI通过接口访问服务时传入了相对路径,而服务通过传入的路径找不到音频文件导致!
修改了 docker-compose.yml内,heygem-tts和heygem-f2f 下volumes节点映射的路径;导致部署的服务找不到视频和音频文件,
UI启动运行时,上传的视频,程序会通过ffmpeg将视频的音频分离出来,可以参考源码的: /src/main/config.js 的变量:assetPath,定义了 model, ttsProduct, ttsRoot, ttsTrain访问路径,这个路径必须与docker-compose.yml内路径一致:
请您将修改后的 /src/main/config.js共享一下