By admin , 25 九月, 2025

Coqui是一个支持多语言、效果出色的深度学习TTS。本人实现了粤语的支持,并发布了模型:https://huggingface.co/hgneng/coqui-cantonese-model,如有朋友训练出效果更好的模型,欢迎在huggingface上发布并留言。下面是使用方法:

 

  1. 下载源代码
git clone https://github.com/hgneng/TTS
  1. 确认Python版本
python -V

如果不满足python >= 3.9, < 3.12,请使用conda安装符合条件的Python环境

标签

By admin , 22 九月, 2025

1. 下载解压Ekho源代码

$ wget http://sourceforge.net/projects/e-guidedog/files/Ekho/9.0/ekho-9.0.tar.xz
$ tar xJvf ekho-9.0.tar.xz

 2. 下载解压藏语语音数据

$ cd ekho-9.0/ekho-data
$ wget https://sourceforge.net/projects/e-guidedog/files/Ekho-Voice-Data/0.2/tibetan-trinley-44100-wav-v1.tar.xz
$ tar xJvf tibetan-trinley-44100-wav-v1.tar.xz
$ ln -s tibetan-trinley-44100-wav tibetan

3. 编译运行

标签

By admin , 9 九月, 2025

PHP 7.2已经在中止支持,旧代码需要在下面链接下载:

https://php.watch/versions/7.2/releases/7.2.34

在安装PHP前,如果不是旧系统,自带的OpenSSL库会是3,需要先安装旧版OpenSSL库:

$ wget https://github.com/openssl/openssl/releases/download/OpenSSL_1_1_1w/openssl-1.1.1w.tar.gz
$ tar zxvf openssl-1.1.1w.tar.gz
$ cd openssl*
$ ./config --prefix=/usr/local/ssl --openssldir=/usr/local/ssl shared zlib
$ make
$ make test
$ make install

然后再安装PHP:

标签

最新内容