1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
9 * Copyright (C) 2009 by Dominik Wenger
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied.
19 ****************************************************************************/
24 #include <QTemporaryFile>
27 class TTSFestival
: public TTSBase
39 TTSFestival(QObject
* parent
=NULL
) : TTSBase(parent
) {}
41 bool start(QString
*errStr
);
43 TTSStatus
voice(QString text
,QString wavfile
, QString
*errStr
);
44 QString
voiceVendor(void) { return QString(); }
45 Capabilities
capabilities();
49 void generateSettings();
53 void updateVoiceList();
54 void updateVoiceDescription();
55 void clearVoiceDescription();
57 QTemporaryFile prologFile
;
60 QStringList
getVoiceList();
61 QString
getVoiceInfo(QString voice
);
63 inline void startServer();
64 inline bool ensureServerRunning();
65 QString
queryServer(QString query
, int timeout
= -1);
66 QProcess serverProcess
;
68 QMap
<QString
, QString
> voiceDescriptions
;