-
#6791 语音识别阶段出错[faster-whisper(本地内置)] No transcription results returned. Please check the original audio/video or model and try again.info=TranscriptionInfo(language='en', language_probab...
💬 1[Last reply:2 hours ago] duration_after_vad=0.0 表明 VAD(语音活动检测)将整段 560 秒的音频全部判定为静音/非语音,因此没有任何片段进入识别,返回结果为空。常见原因与解决步骤:确认音频中确实有人声 播放原视频/音频,确认不是仅有背景音乐或纯静音。调整 VAD 阈值 进入 菜单 → 工具 → 高级选项 → 语音识别参数,将 语音阈值 从默认 0.5 调低至 0.2 或 0.1,让 VAD ...182.129.**0 Posted at: 2 hours ago -
#6790 翻译字幕阶段出错 [DeepSeek] 网络连接失败Traceback (most recent call last):...
💬 1[Last reply:3 hours ago] 这是代理设置格式错误导致的。你在软件代理设置中填写了类似 5188;https=127.0.0.1:5188;socks=127.0.0.1:5180 的多协议合并字符串,pyVideoTrans 只支持单个代理地址,无法解析这种格式,导致 DeepSeek 请求在初始化阶段就失败。解决方法:打开软件菜单的代理设置(通常在菜单 → 翻译设置 → 网络代理 或设置界面中)。将代理文本框内容全部清空,...240e:**:2119 Posted at: 3 hours ago -
#6789 This model is currently experiencing high demand. Spikes in demand are usually temporary. Please try again later.Traceback (most recent call last):...
💬 1[Last reply:4 hours ago] The error is caused by the Gemini API returning "This model is currently experiencing high demand" — the Gemini translation model you selected is temporarily overloaded or rate-limited, so the request...2405:**:8a6e Posted at: 4 hours ago -
#6788 配音阶段出错 [OmniVoice(内置)] Subprocess Error: Error no file named model.safetensors, or pytorch_model.bin, found in directory D:/TTS/win-pyvideotrans-v4.10/models/models--k2-fsa--OmniVo...
💬 1[Last reply:4 hours ago] 这是 OmniVoice 本地模型未完整下载或缺失导致的。该渠道首次使用时需要从 HuggingFace 下载模型到 D:/TTS/win-pyvideotrans-v4.10/models/models--k2-fsa--OmniVoice 目录,当前目录中缺少 model.safetensors 或 pytorch_model.bin 主模型文件,通常是因为自动下载失败或文件不完整。请按以下步...104.28.**1 Posted at: 4 hours ago -
#6787 无返回翻译结果http://127.0.0.1:1188/translate?key=12345:Traceback (most recent call last):...
💬 1[Last reply:6 hours ago] 该报错表示你填写的自定义翻译 API(http://127.0.0.1:1188/translate?key=12345)请求已发出,但返回内容为空或不符合 pyVideoTrans 自定义翻译接口要求,导致软件无法提取翻译结果。问题主要出在自建 API 的返回格式,而不是软件本身的加载或识别流程。解决方向:先确认本地服务已正常启动并可访问,直接在浏览器中打开 http://127.0.0.1:1...2401:**: Posted at: 6 hours ago -
#6786 版本号v1.09 压缩包下载 win11INFO:VideoTrans:开始翻译INFO:VideoTrans:data,i=0, {'text': 'Vá, vá logo.', 'source_lang': 'auto', 'targe......
💬 1[Last reply:6 hours ago] 这是 DeepLx 翻译服务返回了异常空数据导致的。日志中 DeepLx 响应内容为 {"code":200,"data":""},即服务端已响应 HTTP 请求,但 data 字段为空字符串,没有返回实际译文,因此软件连续重试 5 次后停止。请在确认 DeepLx 服务可用时按以下步骤排查:检查 DeepLx 服务端本身是否正常:若为本...2401:**: Posted at: 6 hours ago -
#6785 opening input: No such file or directory opening input file C:/Users/usuario/Downloads/tmp/14264/d554d841af/novoice.mp4. opening input files: No such file or directoryTraceback (mo...
💬 1[Last reply:7 hours ago] The ffmpeg process cannot find the expected intermediate file novoice.mp4 in the temporary folder because your source file is an audio-only .m4a file — there is no video stream from which novoice.mp4 ...62.174.**7 Posted at: 7 hours ago -
#6784 在高级选项中,未找到"Google翻译新增语言代码" 文本框,请问如何添加新语种...
💬 15[Last reply:8 hours ago] 从截图看,“高级选项”窗口右侧内容区为空白,说明界面渲染未正常加载。这可能是临时性显示问题,请尝试:关闭“高级选项”窗口,再次打开,或调整窗口大小(拖动边缘拉大),看右侧是否出现内容;若仍为空白,请重启软件后再打开;若重启后仍空白,可能是配置文件异常,可关闭软件后备份并删除软件目录 videotrans/params.json,再重启软件恢复默认配置后重试。如果只是需要添加新语种,可直接打开 vi...156.59.**5 Posted at: 8 hours ago -
#6783 自己搭建python 通过serve直接用api输出的srt是正常的文本,排列也正常但是搭建好的api给pyvediotrans v4.09调用时,输出的英文文本是如图竖列排放,时间轴也没了,api已经调试了很多遍没有问题,就是对接pyve......
💬 3[Last reply:8 hours ago] 这是你的本地 API 返回的是标准 SRT 文本,但 pyVideoTrans 的“自定义语音识别 API”渠道要求返回固定的 JSON 结构(包含开始时间、结束时间、文本等字段),而不是直接把整个 SRT 文件内容作为字符串返回。因此软件无法正确解析时间轴,并把文本内容按行/词拆散显示。解决办法:修改你的本地 API 的返回格式,使其符合 pyVideoTrans 文档中规定的 JSON 格式,...119.136.**0 Posted at: 8 hours ago -
#6782 × Failed to build pynini==2.1.6 ├─▶ The build backend returned an error ╰─▶ Call to setuptools.build_meta:__legacy__.b......
💬 1[Last reply:9 hours ago] 该报错表明在源码部署过程中编译 pynini 时找不到 fst/util.h 头文件,导致 _pywrapfst 构建失败。目前无法仅凭这段日志直接给出确定的修复步骤,请先确认你已完整执行 macOS 源码部署的前置依赖安装:brew install libsndfilebrew install gitbrew install [email protected] uninstall --ignore-...174.136.**9 Posted at: 9 hours ago -
#6781 原视频是中文字幕,翻译完成后,中文字幕没有消除...
💬 1[Last reply:9 hours ago] 这是因为原视频画面中已内嵌的硬字幕是无法被 pyVideoTrans 提取或抹除的。软件只能在原视频基础上叠加新字幕、替换配音,无法删除已经烧录在画面里的中文字幕。解决方案:若需删除原视频硬字幕,请使用专用工具先去除硬字幕,再使用 pyVideoTrans 进行翻译:video-subtitle-remover本地离线提取视频硬字幕如果原视频带有软字幕轨道(而非画面内嵌字幕),可直接在播放器中关闭...2408:**:4585 Posted at: 9 hours ago -
#6780 Automatic model download failed. Click [Help Docs] for manual download instructions::...
💬 1[Last reply:9 hours ago] This is caused by SSL certificate verification failure when connecting to HuggingFace to auto-download the F5-TTS model. The error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self sign...169.224.**2 Posted at: 9 hours ago -
#6779 No transcription results returned. Please check the original audio/video [info.duration_after_vad=0.0s].info=TranscriptionInfo(language='en', language_probability=1, duration=170.2...
💬 1[Last reply:9 hours ago] 这是由于 VAD(语音活动检测)将整段音频判定为“无语音”,导致有效语音时长 duration_after_vad=0.0s,因此 faster-whisper 没有返回任何字幕。请按以下步骤排查:确认源文件确实包含清晰人声:用播放器试听该视频/音频,排除纯音乐、噪音、静音或人声极弱的情况。调整 VAD 参数:进入 菜单 → 工具 → 高级选项 → 语音识别参数,尝试:降低“语音阈值”(例如从默认...218.73.**4 Posted at: 9 hours ago -
#6777 Qwen/Qwen3-TTS-12Hz-1.7B-Base 该模型生成速度非常慢 一直克隆不出来 请问作者大大有解决办法吗...
💬 7[Last reply:13 hours ago] 无法读取您发送的图片内容,但根据您描述“0.6B 模型克隆不按照参考文本、经常自己多生成一段”的现象,核心原因通常是:克隆时参考音频质量不可控,或参考文本与参考音频内容不一致,导致模型无法准确循着参考文本生成。请按以下步骤排查和解决:优先使用本地参考音频,而不是动态裁切原视频自动 clone 模式会根据每条字幕的起止时间,从原视频中动态裁切参考音频,这个片段可能时长不合适、有背景噪声、开头结尾中断...166.88.**1 Posted at: 13 hours ago -
#6778 语音识别阶段出错[faster-whisper(内置)] [Errno 28] No space left on device:Traceback (most recent call last): File...
💬 1[Last reply:13 hours ago] 这是磁盘空间不足导致的错误(No space left on device),在语音识别阶段写临时文件/字幕文件时磁盘已满,与翻译渠道、CUDA 无关。你的软件、临时目录(D:/sp/tmp/...)和输出目录(D:/123downloads/_video_out/...)都位于 D 盘,说明 D 盘可用空间已耗尽。解决方案:检查 D 盘剩余空间:打开"此电脑"确认 D 盘是否已满。语音识别 la...113.128.**5 Posted at: 13 hours ago -
#6776 语音识别阶段出错[faster-whisper(内置)] No transcription results returned. Please check the original audio/video [info.duration_after_vad=0.0s].info=TranscriptionInfo(language='en', language_...
💬 1[Last reply:13 hours ago] 这是 VAD(语音活动检测)阶段未从该音视频中检测到任何人类语音片段所致(duration_after_vad=0.0s),因此没有有效语音可供 faster-whisper 转录。处理建议如下:先用播放器打开原视频,确认其中确实存在清晰、可辨的人声;若只有背景音乐/纯画面,则该文件超出软件处理范围,无法翻译。检查“发音语言”是否正确:你当前选择的是“英语”,若视频实际说的是中文或其他语言,请改为...124.244.**9 Posted at: 13 hours ago -
#6775 The srt subtitles were not read. The file may be empty or the format does not conform to the SRT specification:srtfile='D:/yuanshipin/_video_out/motuo-mp4/zh-cn.srt'...
💬 11[Last reply:14 hours ago] 根据你的说明:原视频发音是中文,字幕也是中文。你实际是要把中文视频翻译成英文,并希望最终显示英文或不显示字幕,而不是显示中文字幕。正确设置如下:主界面“发音语言”选:简体中文;“目标语言”选:英语,这样会生成中文源字幕并翻译成英文字幕。“字幕嵌入类型”选:嵌入硬字幕 或 嵌入软字幕(不要选双语),最终视频就只显示英文字幕,不显示中文字幕。如果想完全不要任何字幕,选择“不嵌入字幕”。不要手动删空中文...2408:**:4585 Posted at: 14 hours ago -
#6774 The srt subtitles were not read. The file may be empty or the format does not conform to the SRT specification:srtfile='D:/chengpin/motuo-mp4/zh-cn.srt'...
💬 1[Last reply:14 hours ago] 问题根因:你勾选了主界面的「清理已生成」(日志中显示“已选 清理已存在”)。该选项会在开始任务时清空输出目录中已有的字幕文件,导致 D:/chengpin/motuo-mp4/zh-cn.srt 被清为空文件,随后读取失败。解决方法:取消勾选主界面「清理已生成」,然后重新执行。确认 D:/chengpin/motuo-mp4/zh-cn.srt 内容非空,且符合标准 SRT 格式(含行号、正确时间...2408:**:4585 Posted at: 14 hours ago -
#6773 The srt subtitles were not read. The file may be empty or the format does not conform to the SRT specification:srtfile='D:/Program Files/EV录制文件/_video_out/8月10日-mp4/zh-cn.srt'...
💬 1[Last reply:15 hours ago] 这是“语音识别阶段没有生成任何字幕”导致的。报错中的 zh-cn.srt 是源语言(简体中文)字幕文件,翻译阶段前它应该是非空文件;现在 content='' 表示文件为空,所以软件无法读取。请按以下顺序排查:检查 D:/Program Files/EV录制文件/_video_out/8月10日-mp4/zh-cn.srt 是否为 0KB。如果是 0KB,说明 ASR 没有识别...2408:**:4585 Posted at: 15 hours ago -
#6772 indextts 该渠道需另行部署并启动后可用self.api_url='http://127.0.0.1:8770'...
💬 1[Last reply:21 hours ago] 该报错的核心原因是:indextts 渠道需要你在本地另行部署并启动 Index-TTS 服务,但当前程序无法从 http://127.0.0.1:8770/ 获取到 Gradio 配置,即该服务未启动、未部署成功,或端口/地址不一致。解决方法:先单独部署并启动 Index-TTS 服务,确保其 Gradio WebUI 监听在 127.0.0.1:8770(默认端口,若你的服务使用了其他端口,需...120.245.**0 Posted at: 23 hours 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.