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