Config.in 1006 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. comment "mimic needs a toolchain w/ wchar"
  2. depends on !BR2_USE_WCHAR
  3. config BR2_PACKAGE_MIMIC
  4. bool "mimic"
  5. depends on BR2_USE_WCHAR
  6. help
  7. Mimic is a fast, lightweight Text-to-speech engine developed
  8. by Mycroft A.I. and VocaliD, based on Carnegie Mellon
  9. University's Flite (Festival-Lite) software. Mimic takes in
  10. text and reads it out loud to create a high quality voice.
  11. https://github.com/MycroftAI/mimic
  12. if BR2_PACKAGE_MIMIC
  13. choice
  14. prompt "audio backend"
  15. default BR2_PACKAGE_MIMIC_AUDIO_BACKEND_NONE
  16. config BR2_PACKAGE_MIMIC_AUDIO_BACKEND_NONE
  17. bool "none"
  18. help
  19. With no backend, mimic will only be able to produce .wav
  20. files.
  21. config BR2_PACKAGE_MIMIC_AUDIO_BACKEND_ALSA
  22. bool "alsa"
  23. depends on BR2_PACKAGE_ALSA_LIB
  24. config BR2_PACKAGE_MIMIC_AUDIO_BACKEND_PORTAUDIO
  25. bool "alsa via portaudio"
  26. depends on BR2_PACKAGE_PORTAUDIO
  27. config BR2_PACKAGE_MIMIC_AUDIO_BACKEND_PULSEAUDIO
  28. bool "pulseaudio"
  29. depends on BR2_PACKAGE_PULSEAUDIO
  30. endchoice
  31. endif # BR2_PACKAGE_MIMIC