Create prepare.sh
Browse files- prepare.sh +8 -0
prepare.sh
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
pip install git+https://github.com/idiap/coqui-tts.git
|
| 2 |
+
sudo apt update && sudo apt install espeak -y
|
| 3 |
+
sudo apt install ffmpeg libavcodec-dev libavformat-dev libavutil-dev -y
|
| 4 |
+
pip install "coqui-tts[codec]"
|
| 5 |
+
wget https://data.keithito.com/data/speech/LJSpeech-1.1.tar.bz2
|
| 6 |
+
tar -xjf LJSpeech-1.1.tar.bz2
|
| 7 |
+
wget https://huggingface.co/LH-Tech-AI/Flare-TTS-28M/resolve/main/model.pth
|
| 8 |
+
wget https://huggingface.co/LH-Tech-AI/Flare-TTS-28M/resolve/main/config.json
|