mirror of https://github.com/coqui-ai/TTS.git
fix(bin.synthesize): return speakers names only (#147)
This commit is contained in:
parent
e18f7da973
commit
540e8d6cf2
|
@ -429,7 +429,7 @@ def main():
|
||||||
logger.info(
|
logger.info(
|
||||||
"Available speaker ids: (Set --speaker_idx flag to one of these values to use the multi-speaker model."
|
"Available speaker ids: (Set --speaker_idx flag to one of these values to use the multi-speaker model."
|
||||||
)
|
)
|
||||||
logger.info(synthesizer.tts_model.speaker_manager.name_to_id)
|
logger.info(list(synthesizer.tts_model.speaker_manager.name_to_id.keys()))
|
||||||
return
|
return
|
||||||
|
|
||||||
# query langauge ids of a multi-lingual model.
|
# query langauge ids of a multi-lingual model.
|
||||||
|
|
Loading…
Reference in New Issue