相关链接
友链
| 站点 | 地址 | 说明 |
|---|---|---|
| gh-proxy.cn | https://gh-proxy.cn | GitHub 国内加速服务,拉代码 / Release / raw 文件都很快 |
| www.gh-proxy.cn | https://www.gh-proxy.cn/ | 上面这个加速站的使用帮助页,讲怎么加前缀、支持哪些地址 |
本站点以及整个 voice-tts-system 项目都从这个加速站受益,在此特别致谢。
怎么用:在任意 GitHub 地址前面加上 https://gh-proxy.cn/ 即可。例如拉本项目的代码:
bash
# 直连
git clone https://github.com/yake1145141/voice-tts-system.git
# 国内加速
git clone https://gh-proxy.cn/https://github.com/yake1145141/voice-tts-system.git本项目
依赖的上游项目
| 项目 | 作用 | 地址 |
|---|---|---|
| tts-with-rvc | Edge TTS + RVC 一体化推理库 | https://github.com/Atm4x/tts-with-rvc |
| AstrBot | 支持多平台的消息机器人框架 | https://github.com/AstrBotDevs/AstrBot |
| PyTorch | 推理框架 | https://pytorch.org/ |
| FFmpeg | 音频读写与分段拼接 | https://ffmpeg.org/ |
| FastAPI | HTTP 服务框架 | https://fastapi.tiangolo.com/ |
| edge-tts | 微软 Edge 朗读接口的 Python 封装 | https://github.com/rany2/edge-tts |
| espeak-ng | Linux 上的离线语音兜底 | https://github.com/espeak-ng/espeak-ng |
| VitePress | 本文档站用的静态站点生成器 | https://vitepress.dev/ |
相关概念
| 概念 | 是什么 | 参考 |
|---|---|---|
| RVC | 基于检索的语音转换,只换音色不改内容 | https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI |
| CUDA 计算能力 | 显卡架构代号,决定了 PyTorch 要装哪个版本 | https://developer.nvidia.com/cuda-gpus |
| CUDA 二进制兼容 | 为什么 sm_61 能复用 sm_60 内核 | https://docs.nvidia.com/cuda/cuda-c-programming-guide/#application-compatibility |
| HUBERT | RVC 用来提取语音特征的预训练模型 | https://github.com/facebookresearch/fairseq/tree/main/examples/hubert |
| RMVPE | 目前音质最好的音高提取算法 | — |
同类项目 / 参考
| 项目 | 说明 |
|---|---|
| NapCat 文档 | 本文档站的样式参考 |
| AstrBot 官方文档 | AstrBot 的安装与插件开发 |