forked from len0rd/rockbox
Don't over-quote additional command line options for external TTS.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18189 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
036e617b35
commit
038eb36643
1 changed files with 3 additions and 3 deletions
|
|
@ -91,9 +91,9 @@ TTSExes::TTSExes(QString name) : TTSBase()
|
|||
{
|
||||
m_name = name;
|
||||
|
||||
m_TemplateMap["espeak"] = "\"%exe\" \"%options\" -w \"%wavfile\" \"%text\"";
|
||||
m_TemplateMap["flite"] = "\"%exe\" \"%options\" -o \"%wavfile\" \"%text\"";
|
||||
m_TemplateMap["swift"] = "\"%exe\" \"%options\" -o \"%wavfile\" \"%text\"";
|
||||
m_TemplateMap["espeak"] = "\"%exe\" %options -w \"%wavfile\" \"%text\"";
|
||||
m_TemplateMap["flite"] = "\"%exe\" %options -o \"%wavfile\" \"%text\"";
|
||||
m_TemplateMap["swift"] = "\"%exe\" %options -o \"%wavfile\" \"%text\"";
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue