这似乎是个免费、支持极多语言、非常好用、的TTS。不过不是离线的。
pip3 install edge-tts
这似乎是个免费、支持极多语言、非常好用、的TTS。不过不是离线的。
pip3 install edge-tts
源码:https://github.com/festvox/flite
使用文档:http://www.festvox.org/flite/doc/flite_7.html#C-example
示例代码:
#include "flite.h"
cst_voice *register_cmu_us_kal(const char *voxdir); // 注意这一行和官方文档不同,官方文档的会报错。int main(int argc, char **argv)
{
cst_voice *v;if (argc != 2)
{
fprintf(stderr,"usage: flite_test FILE\n");
exit(-1);
}
🐸(青蛙)TTS
https://github.com/coqui-ai/TTS
文档:https://tts.readthedocs.io/en/latest/tutorial_for_nervous_beginners.html
For the first time, tts need to download a data model. If the download fails, it will fail for the second time. We need to remove empty data model folder from path below to make it do a retry download:
/home/hgneng/.local/share/tts/
https://rhvoice.org/languages/
Swift推荐的一款俄罗斯人开发的用AI训练出来的TTS引擎。
https://github.com/espeak-ng/sonic
这个是Bill Cox项目的源链接,espeak-ng那个可能没有及时更新:https://github.com/waywardgeek/sonic
https://juejin.im/post/5aa40ff6f265da239866e12c
(还是没有把核心技术解释清楚)
这是一个看上去很有用的信号处理库,可以做快速傅里叶变换,把信号转换成容易分析的形式(MFCC、HFCC,暂时不知道是什么)。
http://aquila-dsp.org/features/
代码托管在Github:https://github.com/zsiciarz/aquila
最新评论