GNOME Bugzilla – Bug 342325
Gnopernicus and Festival TTS working in Spanish regression in bug #141516
Last modified: 2006-07-01 16:17:56 UTC
+++ This bug was initially created as a clone of Bug #141516 +++ When the words are stress them are not pronounced,they are spelling no good. For example, the word 'Rat
Another restrictive change, may consits on applying the iso-8859-15 only to speaker's voices that needs it, but We would need to know these.
The UTF-8 encoding is set by hardcoding it in festivalsynthesisdriver.c at lines 485 and 489: d->channel_pipe = g_io_channel_unix_new(d->pipe); g_io_channel_set_encoding (d->channel_pipe, "UTF-8", NULL); g_io_add_watch (d->channel_pipe, G_IO_IN , festival_response_pipe, d); d->channel_sock = g_io_channel_unix_new(d->sock); g_io_channel_set_encoding (d->channel_sock, "UTF-8", NULL); g_io_add_watch (d->channel_sock, G_IO_IN, festival_response_sock, d); I wonder if there might be a way to pick up the character set encoding from the user's environment rather than hardcoding it?
*** This bug has been marked as a duplicate of 141516 ***