486219ff23
Signed-off-by: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> [Thomas: - Rewrap Config.in help text - Use "depends on" rather than "select" for the audio backend options - Slightly simplify some of the prompts for the audio backend selection - Remove MIMIC_INSTALL_STAGING = NO, that's the default - Use += when assigning MIMIC_DEPENDENCIES - Remove double quotes when setting --with-audio=.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
38 lines
951 B
Plaintext
38 lines
951 B
Plaintext
config BR2_PACKAGE_MIMIC
|
|
bool "mimic"
|
|
help
|
|
Mimic is a fast, lightweight Text-to-speech engine developed
|
|
by Mycroft A.I. and VocaliD, based on Carnegie Mellon
|
|
University's Flite (Festival-Lite) software. Mimic takes in
|
|
text and reads it out loud to create a high quality voice.
|
|
|
|
https://github.com/MycroftAI/mimic
|
|
|
|
if BR2_PACKAGE_MIMIC
|
|
|
|
choice
|
|
prompt "audio backend"
|
|
default BR2_PACKAGE_MIMIC_AUDIO_BACKEND_NONE
|
|
|
|
config BR2_PACKAGE_MIMIC_AUDIO_BACKEND_NONE
|
|
bool "none"
|
|
help
|
|
With no backend, mimic will only be able to produce .wav
|
|
files.
|
|
|
|
config BR2_PACKAGE_MIMIC_AUDIO_BACKEND_ALSA
|
|
bool "alsa"
|
|
depends on BR2_PACKAGE_ALSA_LIB
|
|
|
|
config BR2_PACKAGE_MIMIC_AUDIO_BACKEND_PORTAUDIO
|
|
bool "alsa via portaudio"
|
|
depends on BR2_PACKAGE_PORTAUDIO
|
|
|
|
config BR2_PACKAGE_MIMIC_AUDIO_BACKEND_PULSEAUDIO
|
|
bool "pulseaudio"
|
|
depends on BR2_PACKAGE_PULSEAUDIO
|
|
|
|
endchoice
|
|
|
|
endif # BR2_PACKAGE_MIMIC
|