mirror of https://github.com/coqui-ai/TTS.git
Test synthesize api separately
This commit is contained in:
parent
0de12ec5aa
commit
1652598a33
|
@ -0,0 +1,15 @@
|
||||||
|
import os
|
||||||
|
|
||||||
|
from tests import get_tests_output_path, run_cli
|
||||||
|
|
||||||
|
|
||||||
|
def test_synthesize():
|
||||||
|
"""Test synthesize.py with diffent arguments."""
|
||||||
|
output_path = os.path.join(get_tests_output_path(), "output.wav")
|
||||||
|
|
||||||
|
# 🐸 Coqui studio model
|
||||||
|
run_cli(
|
||||||
|
'tts --model_name "coqui_studio/en/Torcull Diarmuid/coqui_studio" '
|
||||||
|
'--text "This is it" '
|
||||||
|
f'--out_path "{output_path}"'
|
||||||
|
)
|
|
@ -18,10 +18,3 @@ def test_synthesize():
|
||||||
"--vocoder_name vocoder_models/en/ljspeech/multiband-melgan "
|
"--vocoder_name vocoder_models/en/ljspeech/multiband-melgan "
|
||||||
f'--text "This is an example." --out_path "{output_path}"'
|
f'--text "This is an example." --out_path "{output_path}"'
|
||||||
)
|
)
|
||||||
|
|
||||||
# 🐸 Coqui studio model
|
|
||||||
run_cli(
|
|
||||||
'tts --model_name "coqui_studio/en/Torcull Diarmuid/coqui_studio" '
|
|
||||||
'--text "This is it" '
|
|
||||||
f'--out_path "{output_path}"'
|
|
||||||
)
|
|
||||||
|
|
Loading…
Reference in New Issue