-
#6001 Whisper.net recognition failed: Method not found: 'System.TimeSpan System.TimeSpan.FromMilliseconds(Int64)'. at Whisper.net.WhisperProcessor.OnNewSegment(IntPtr state)...
💬 3[Last reply:1 month ago] pynini 构建失败是因为 MSVC 编译器不支持 GCC 风格的 /Wno-register 编译选项。问题出在 wetextprocessing 需要 pynini,而后者在 Windows 上需要特殊编译环境。推荐方案:直接使用 Windows 预打包版。官方提供的完整版压缩包(约 2.6 GB)已经包含了 Whisper.net 及其所有依赖(包括编译好的 pynini 二进制),无需源...240e**c951 Posted at: 1 month ago -
#6000 Failed to initialize pythonnetTraceback (most recent call last):...
💬 1[Last reply:1 month ago] Failed to initialize pythonnet 的原因:Whisper.NET 渠道依赖 pythonnet 库,但尚未安装或初始化失败。解决方案:在源码目录下执行以下命令安装 Whisper.NET 所需依赖:uv sync --extra dotnet如果不需要 Whisper.NET,建议更换为其他语音识别渠道(如 faster-whisper(本地内置)),此渠道更稳定且无需...240e**c951 Posted at: 1 month ago -
#5999 decoding subtitles: Invalid data found when processing input number -1145393733 occurred) number -1145393733 occurred)...
💬 1[Last reply:1 month ago] 这个错误通常是由于输入的视频/音频文件损坏、格式不兼容或路径中包含特殊字符,导致FFmpeg在解码字幕时无法正确处理数据。请按以下步骤排查:检查源文件:确认视频/音频文件是否可以正常播放,是否有完整的数据。简化路径:将文件移到浅层目录(如 D:\test.mp4),且路径中不要包含中文、空格或特殊符号。尝试重新转换文件格式:先用其他工具(如格式工厂)将视频转换为标准H.264/MP4格式再导入。查...113.89**6 Posted at: 1 month ago -
#5998 [Clone-Voice] 该渠道需另行部署并启动后可用self.api_url='http://127.0.0.1:9988'...
💬 1[Last reply:1 month ago] 这是由于本地 API 配音渠道 clone-voice 尚未部署或未启动导致的连接失败。软件尝试连接 http://127.0.0.1:9988,但服务不存在。解决方法:部署并启动 clone-voice 服务 前往 clone-voice 的官方仓库(例如 GitHub),按照其文档完成本地部署并启动 API 服务。默认监听端口为 9988,启动后应保持运行。确认 API 地址正确 在软件菜...2600**58b Posted at: 1 month ago -
#5997 Whisper.net recognition failed: Method not found: 'System.TimeSpan System.TimeSpan.FromMilliseconds(Int64)'. at Whisper.net.WhisperProcessor.OnNewSegment(IntPtr state)...
💬 1[Last reply:1 month ago] Whisper.net 报错 Method not found: 'System.TimeSpan System.TimeSpan.FromMilliseconds(Int64)' 的根本原因是系统中安装的 .NET 运行时版本过低,缺少该 API 重载(该方法在 .NET 6+ 中才支持 Int64 参数)。解决方案:安装 .NET 8.0 Runtime(推荐) 前往 h...240e**f36b Posted at: 1 month ago -
#5996 Command not found: ffmpeg. Ensure FFmpeg is installed and in your PATH.Traceback (most recent call last):...
💬 1[Last reply:1 month ago] 该错误表明系统找不到 ffmpeg/ffprobe 可执行文件。源码部署的 Windows 环境需要手动下载 ffmpeg 并放置在指定位置。解决方案下载 FFmpeg(≥ 6.0)Windows 完整版(包含 ffmpeg.exe 和 ffprobe.exe): https://www.gyan.dev/ffmpeg/builds/ffmpeg-release-full.7z将下载的压缩包解压,...240e**f36b Posted at: 1 month ago -
#5995 No CUDA detected. Check NVIDIA GPU/Drivers. See Help -> CUDA....
💬 1[Last reply:1 month ago] This error indicates the software cannot find a compatible CUDA environment, which is required for GPU acceleration with NVIDIA graphics cards.Possible causes and solutions:Not an NVIDIA GPU – CUDA on...175.176**3 Posted at: 1 month ago -
#5994 参考音频: zh_female_cn.wav 不在 H:/pyvideotrans/f5-tts 文件夹内,请确保参考音频为 wav格式并保存到该文件夹内...
💬 1[Last reply:1 month ago] 错误原因:zh_female_cn.wav 未放置在 H:/pyvideotrans/f5-tts 文件夹内。请按以下步骤操作:准备一段清晰的 3-10 秒 WAV 格式单声道音频(背景噪音越少越好),确保文件名完全匹配 zh_female_cn.wav。将该文件复制到 H:/pyvideotrans/f5-tts 文件夹中(注意:是 f5-tts,而非 models 或其他目录)。打开菜单 TT...240e**f36b Posted at: 1 month ago -
#5993 系统错误 (None):NoneTraceback (most recent call last):...
💬 1[Last reply:1 month ago] OSError: cannot load library 'libsndfile.dylib' — 您的 macOS 系统缺少 libsndfile 库,导致 soundfile 模块无法加载。解决方案(任选其一):安装 libsndfile(推荐) 打开终端,执行:brew install libsndfile然后重新启动软件。若已安装但仍报错,请确保虚拟环境重新链接该动态...240e**7ba Posted at: 1 month ago -
#5992 系统错误 (None):NoneTraceback (most recent call last):...
💬 1[Last reply:1 month ago] 这是由于 macOS 系统缺少底层音频处理库 libsndfile 导致的。在 macOS 上源码部署 pyVideoTrans 前,必须按文档先安装 libsndfile。请在终端执行以下命令安装:brew install libsndfile如果已经安装过但仍报错,可尝试重新链接:brew reinstall libsndfile brew link --overwrite libsndfil...240e**7ba Posted at: 1 month ago -
#5991 系统错误 (None):NoneTraceback (most recent call last):...
💬 1[Last reply:1 month ago] 这是由于 macOS 系统缺少 libsndfile 动态库导致的。请执行以下命令安装:brew install libsndfile安装完成后重新启动软件即可。如果仍报错,请检查是否已安装 Homebrew(brew 命令),若未安装请先安装 Homebrew。请查阅相关文档:macOS/Linux 源码部署...240e**7ba Posted at: 1 month ago -
#5990 现在打不开,提示拒绝启动,给火绒加了白名单也打不开,双击exe程序之后,突然跳一个弹窗然后闪退,之前还能打开,现在不行了...
💬 1[Last reply:1 month ago] 根据描述,软件突然无法启动,考虑配置文件损坏或杀毒软件残留拦截。解决方法:彻底重置配置 进入软件根目录下的 videotrans/ 文件夹,删除以下文件(可先备份):params.jsoncfg.jsoncodec.jsonass.json 重新双击 sp.exe 启动。检查路径是否符合要求 确认软件所在路径不包含中文、空格、特殊符号(例如 D:\pyVideoTrans 为佳)。如不符,移...203.27**8 Posted at: 1 month ago -
#5988 The server [DeepSeek] returned an error message: Insufficient balance. Please log in to the platform to view your balance information. Current API: https://api.deepseek.com/v1/...
💬 1[Last reply:1 month ago] This error occurs because your DeepSeek API account has run out of credits (balance insufficient). The API key you entered in 'Menu → Translation Settings → DeepSeek' is valid but has no remaining bal...115.76**4 Posted at: 1 month ago -
#5986 Dubbing Error [Gemini TTS] Network connection failedTraceback (most recent call last):...
💬 1[Last reply:1 month ago] This error is caused by exceeding the free tier quota for the Gemini TTS API. You received a 429 RESOURCE_EXHAUSTED error because the model gemini-3.1-flash-tts has a daily limit of 10 requests on the...115.76**4 Posted at: 1 month ago -
#5985 (base) a1-6@MacBook-Pro-2 pyvideotrans-main % uv sync --index https://mirrors.aliyun.com/pypi/simple/ × Failed to downl......
💬 1[Last reply:1 month ago] pynini 的 Windows 版 wheel 被错误地下载到了 macOS 上(链接中的文件名包含 win_amd64),这通常是因为 uv 的依赖解析出现了平台匹配错误,或者使用了错误的镜像源导致缓存/重定向问题。此外网络连接 GitHub 超时。解决步骤取消镜像代理,直接用默认源重试 多数国内用户访问 GitHub 需科学上网。请先关闭终端中的代理命令(如 unset http_prox...240e**bb0 Posted at: 1 month ago -
#5984 创建不含空格和中文的文件夹,在终端中进入该文件夹,具体如何操作...
💬 5[Last reply:1 month ago] 如果是刚刚在终端中创建了文件夹(如 mkdir myfolder),立即进入:cd myfolder。 如果文件夹已存在,使用 cd 文件夹路径 即可进入。 例如:cd /d D:\pyvideotrans(Windows)或 cd ~/pyvideotrans(macOS/Linux)。...2600**58b Posted at: 1 month ago -
#5983 headers: {'date': 'Tue, 21 Jul 2026 12:17:23 GMT', 'server': 'uvicorn', 'content-length': '269', 'content-type': 'application/json', 'vary': 'Accept-Language', 'access-control-allo...
💬 1[Last reply:1 month ago] ElevenLabs 账户余额不足导致的 401 quota_exceeded 错误。该请求需要 52 credits,但您的账户已耗尽。解决步骤:登录 ElevenLabs 官网 查看剩余 credits,并充值以恢复服务。若不想付费,请在主界面将“配音渠道”切换为免费的 Edge-TTS(无需配置,开箱即用),或使用其他本地内置 TTS 渠道(如 OmniVoice-TTS、Qwen3-TTS...8.218**4 Posted at: 1 month ago -
#5982 语音识别阶段出错[Huggingface_ASR(本地内置)] The expanded size of the tensor (3000) must match the existing size (4611) at non-singleton dimension 1. Target sizes: [128, 3000]. Tensor sizes: ...
💬 1[Last reply:1 month ago] 这个错误是因为 Huggingface ASR 模型(kotoba-whisper-v2.0)在处理较长的音频片段时,内部 padding 长度与实际特征长度不匹配导致的。常见原因是音频片段超过模型允许的最大输入长度(默认可能约 30 秒)。解决方法:缩短音频切片长度:打开 菜单 → 工具/选项 → 高级选项 → 语音识别参数,将 最长语音持续(秒) 设为 15 或更小(比如 10)。更换 ASR...240e**2fb6 Posted at: 1 month ago -
#5981 我的显卡是RTX4060Ti,8G显存,为啥我在transcribe batch阶段非常非常慢,一天才有5%的进度,并且显卡显示利用率95%,专用GPU内存2.4/8GB...
💬 9[Last reply:1 month ago] 显卡利用率 95% 且专用内存仅 2.4/8GB,说明 GPU 计算单元是满负荷的,但模型较小(medium 模型约 2.5GB),显存并未成为瓶颈。速度异常慢(一天 5%)的根本原因不是显卡性能不足,而是每单位时间内处理的音频片段太少,可能由以下参数或设置导致:语音识别渠道选错 – 如果用的是 openai-whisper(本地内置) 而非 faster-whisper(本地内置),速度会慢 3...43.153**6 Posted at: 1 month ago -
#5980 系统错误 (None):NoneTraceback (most recent call last):...
💬 1[Last reply:1 month ago] 这是 macOS 上缺少系统音频库 libsndfile 导致的,soundfile 依赖此库读写音频文件。解决方案安装 Homebrew(如果尚未安装):请先确认已从 brew.sh 安装 Homebrew。在终端执行安装命令:brew install libsndfile安装完成后,在 pyVideoTrans 的虚拟环境中重新同步依赖:uv sync或者重新安装 soundfile:uv a...2406**f429 Posted at: 1 month 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.