-
#846 RuntimeError: 404 Client Error: NOT FOUND for url: http://127.0.0.1:9988/v1/audio/speechKokoroTTS...
💬 5[Last reply:9 months ago] 根据您提供的信息,您已经正确配置了Kokoro TTS的地址。错误提示中的URL是 http://127.0.0.1:9988/v1/audio/speech,但您设置的是 http://127.0.0.1:5066。 问题分析: 这个404错误表明pyVideoTrans软件内部仍然在尝试连接旧的默认地址(9988端口),而不是您新设置的地址(5066端口)。这...92.195* Posted at: 9 months ago -
#903 开始使用4060的8G.一台机子 1,提取用的faster-whisper large-v3-trubo, 2大模型分句用的官方deepseek的API接口.. 3.翻译用的本地ollama+gemma-3n-e4b-it-q4 4.合成语......
💬 1[Last reply:9 months ago] 根据你的描述,问题核心在于多任务并行处理时GPU资源耗尽导致进程卡死。你使用的配置(faster-whisper large-v3-turbo + 本地ollama大模型 + GPT-SoVITS)都是显存消耗大户,8G显存在多任务并行时非常容易达到瓶颈。 问题分析 1. 资源瓶颈:你的工作流中,faster-whisper large-v3-turbo 语音识别...82.152* Posted at: 9 months ago -
#902 在pyVideoTrans调用GPT-Sovits本地配音时不发声...
💬 1[Last reply:9 months ago] 根据您的描述,GPT-Sovits已训练成功且配置无报错,但调用时试听无反应、合成视频无人声,这通常是由于GPT-Sovits服务本身未正确处理请求或返回了空音频导致的。以下是具体原因分析和解决方案: 可能原因分析: 1. GPT-Sovits服务未完全启动或配置错误: 虽然配置时无报错,但GPT-Sovits的本地服务可能未正常监听端口,或API路径(如h...106.42* Posted at: 9 months ago -
#901 RuntimeError: 配音全部失败 None...
💬 1[Last reply:9 months ago] 根据错误信息分析,这是在配音阶段使用 GPT-SoVITS 语音合成服务时出现的"配音全部失败"错误,错误代码为 None。 主要原因: GPT-SoVITS 本地服务可能没有正确启动或连接失败。当软件尝试调用 GPT-SoVITS 进行语音合成时,无法连接到本地部署的服务,导致所有配音任务失败。 解决方案: 1. 检查 GPT-SoVITS 服务状态 确保...82.152* Posted at: 9 months ago -
#900 Error:response=ChatCompletion(id='K13oaNbrH5aFvdIPu5HBuAc', choices=[Choice(finish_reason='length', index=0, logprobs=No......
💬 1[Last reply:9 months ago] error occurs when using the Gemini AI translation service and the response gets cut off due to exceeding the maximum token limit (finish_reason='length...2a00:1f* Posted at: 9 months ago -
#899 no choices:response=ChatCompletion(id='wCjoaNOMGuifvdIP5oPz2Ac', choices=[Choice(finish_reason='length', index=0, logprobs=None, message=ChatCompletionMessage(content=None, refusal...
💬 1[Last reply:9 months ago] error occurs when using the Gemini AI translation service, where the API response is incomplete due to token length limitations. The response shows finish_reas...2a00:1f* Posted at: 9 months ago -
#898 KeyError: 'target_language'...
💬 1[Last reply:9 months ago] error occurs due to a missing configuration key in your pyVideoTrans settings. The KeyError: 'target_language' indicates that the software cannot find the targ...2a00:1f* Posted at: 9 months ago -
#897 RuntimeError: Cannot load the target vocabulary from the model directory...
💬 3[Last reply:9 months ago] 这个问题是由于 faster-whisper 模型文件下载不完整或损坏导致的。当软件尝试加载模型时,无法找到正确的词汇表文件。 解决方法: 1. 删除损坏的模型文件 进入软件所在目录下的 models 文件夹 删除 faster-whisper 文件夹(如果存在) 重新启动软件,它会自动重新下载模型 2. 使用代理从官网下载(推荐) 在软件目...27.38* Posted at: 9 months ago -
#896 视频中原来的字幕能删除替换成新的目标语言的字幕吗...
💬 3[Last reply:9 months ago] 您说得对,pyVideoTrans 确实无法删除视频中已经存在的硬字幕(即直接嵌入在视频画面中的文字)。 核心原因: 硬字幕是视频图像的一部分,就像画面中的任何其他元素一样,软件无法从视频帧中识别并擦除这些文字 pyVideoTrans 的工作流程是通过语音识别→翻译→生成新字幕→嵌入新字幕,它处理的是字幕轨道,而不是修改视频画面内容 可行的解决方案:...67.209* Posted at: 9 months ago -
#895 这个报错是什么意思?...
💬 1[Last reply:9 months ago] 这个错误是由于软件在语音识别阶段无法找到临时锁文件导致的。问题出现在 faster-whisper 本地模式运行时,系统试图访问 D:/GJ/win-videotrans-v3.80/tmp/35452.lock 文件但该文件不存在。 解决方案: 1. 检查临时目录权限:确保软件安装目录 D:/GJ/win-videotrans-v3.80/ 及其下的 tmp 文...2406:da14* Posted at: 9 months ago -
#894 KeyboardInterrupt...
💬 1[Last reply:9 months ago] 这个错误是由于在软件运行过程中用户按下了中断键(通常是 Ctrl+C 或 Command+)导致的程序被强制中断。从错误信息来看,这是在 macOS 系统上运行 pyVideoTrans v3.80 源码版本时发生的 KeyboardInterrupt 异常。 问题原因: 用户主动中断了程序运行 可能是误操作按下了中断快捷键 也可能是程序在处理某些耗...203.198* Posted at: 9 months ago -
#891 RuntimeError: Using SOCKS proxy, but the 'socksio' package is not installed. Make sure to install httpx using `pip install httpx[socks]`. F5TTS...
💬 1[Last reply:9 months ago] 填写 http 代理,不要用 sock 代理...223.73* Posted at: 9 months ago -
#893 3.81pyVideoTrans闪退...
💬 1[Last reply:9 months ago] 当前版本有点问题,先不要点击试听了,直接合成...82.152* Posted at: 9 months ago -
#892 正常流程安装操作下来之后一到字幕翻译就直接结束了,红色的“已完成,点击打开”,也不显示报错...
💬 1[Last reply:9 months ago] 翻译渠道选 微软翻译试试...2408:821a* Posted at: 9 months ago -
#850 测试gptsovits api时程序会闪退...
💬 1[Last reply:9 months ago] 2025-10-09 15:49:31,169 - VideoTrans - INFO - 第2批次 LLM断句,每批次 500 个字或单词 2025-10-09 15:51:23,925 - VideoTrans - INFO - 平台: Windows。正在按优先级检测最佳的 'h264' 编码器: ['nvenc', 'qsv', 'amf'] 2025-10-09 15:51:25,030...103.135* Posted at: 9 months ago -
#890 requests.exceptions.ConnectionError: HTTPConnectionPool(host='127.0.0.1', port=56118): Max retries exceeded with url: /tts?text=%E4%BD%A0%E5%A5%BD%E5%95%8A%E6%88%91%E7%9A%84%E6%9C%...
💬 1[Last reply:9 months ago] 这个问题是由于 GPT-SoVITS 本地语音合成服务未启动导致的连接失败。从错误日志可以看出,pyVideoTrans 试图连接到本地端口 56118 的 GPT-SoVITS 服务,但该服务没有运行。 解决方案: 1. 启动 GPT-SoVITS 服务 你需要先下载并部署 GPT-SoVITS 项目 启动 GPT-SoVITS 的 API 服务,默认...113.84* Posted at: 9 months ago -
#889 KeyError: 'listen_text_中文简'...
💬 1[Last reply:9 months ago] 这个错误是由于在语音合成(配音)功能中,软件无法找到对应的界面文本配置导致的。具体来说,错误 KeyError: 'listen_text_中文简' 表示软件在尝试访问一个名为 'listen_text_中文简' 的文本键时,该键在当前的界面语言配置中不存在。 问题分析: 您使用的是 Windows 10 系统,pyV...192.9* Posted at: 9 months ago -
#888 克隆语音服务错误: RetryError[<Future at 0x1c61f75efe0 state=finished raised HTTPError>]CloneVoice...
💬 1[Last reply:9 months ago] 这个问题与 pyVideoTrans 软件的克隆语音服务相关。错误信息表明在调用语音克隆服务时出现了网络连接问题(HTTPError),导致请求失败并触发了重试机制。 问题分析: 错误类型:RetryError[<Future ... raised HTTPError>] CloneVoice 这表明软件在尝试连接语音克隆服务(如GPT-So...169.150* Posted at: 9 months ago -
#887 RuntimeError: 404 Client Error: Not Found for url: http://127.0.0.1:7860/apittsCloneVoice...
💬 2[Last reply:9 months ago] apittsCloneVoice表示API路径,路径哪里配置的?...169.150* Posted at: 9 months ago -
#886 python版本是3.12.8执行命令时提示我bash: .venvscriptsactivate: command not found...
💬 1[Last reply:9 months ago] 使用 cmd 终端执行命令,不要使用 git bash窗口执行...121.20* Posted at: 9 months ago
Open source and free maintenance is not easy. If this project is helpful to you, please consider making a small donation to help the project continue to maintain and update.