
tts
List of commands for tts:
-
tts:tldr:27dca tts: Run your own text-to-speech model (using the Griffin-Lim vocoder).$ tts --text "${text}" --model_path ${path-to-model-pth} --config_path ${path-to-config-json} --out_path ${filename-wav}try on your machineexplain this command
-
tts:tldr:36118 tts: List provided models.$ tts --list_modelstry on your machineexplain this command
-
tts:tldr:47c9a tts: Run a text-to-speech model with its default vocoder model.$ tts --text "${text}" --model_name ${model_type-language-dataset-model_name}try on your machineexplain this command
-
tts:tldr:6ab48 tts: Query info for a model by name.$ tts --model_info_by_name ${model_type-language-dataset-model_name}try on your machineexplain this command
-
tts:tldr:7d8a2 tts: Query info for a model by idx.$ tts --model_info_by_idx ${model_type-model_query_idx}try on your machineexplain this command
-
tts:tldr:bc485 tts: Run text-to-speech with the default models, writing the output to "tts_output.wav".$ tts --text "${text}"try on your machineexplain this command