Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

41 lignes
1.0KB

  1. """
  2. voice factory
  3. """
  4. def create_voice(voice_type):
  5. """
  6. create a voice instance
  7. :param voice_type: voice type code
  8. :return: voice instance
  9. """
  10. if voice_type == "baidu":
  11. from voice.baidu.baidu_voice import BaiduVoice
  12. return BaiduVoice()
  13. elif voice_type == "google":
  14. from voice.google.google_voice import GoogleVoice
  15. return GoogleVoice()
  16. elif voice_type == "openai":
  17. from voice.openai.openai_voice import OpenaiVoice
  18. return OpenaiVoice()
  19. elif voice_type == "pytts":
  20. from voice.pytts.pytts_voice import PyttsVoice
  21. return PyttsVoice()
  22. elif voice_type == "azure":
  23. from voice.azure.azure_voice import AzureVoice
  24. return AzureVoice()
  25. elif voice_type == "elevenlabs":
  26. from voice.elevent.elevent_voice import ElevenLabsVoice
  27. return ElevenLabsVoice()
  28. elif voice_type == "linkai":
  29. from voice.linkai.linkai_voice import LinkAIVoice
  30. return LinkAIVoice()
  31. raise RuntimeError