by Josh Scholar » Wed Aug 22, 2007 9:28 pm
As far as I can tell (and I'm just a beginning student) Show and Miyu seem to pronounce the Kanji correctly, but when they're reading pure hiragana they don't glide the vowels together when reading だい, so it always sounds a bit wrong.
Once again, I've only taken a couple of classes so I don't know if it's always wrong to pronounce "だい" as "だ、い" instead of 大, but that's what they do.
Another problem with all of the Japanese voices I've used is that they turn each whitespace character into a long pause, so if you try to read an all hiragana conversation, you'll have a problem because people DO put spaces between words when they're not using Kanji.
It would be useful to have an option to drop the spaces (including those wide japanese spaces) before dumping the text to the reader.
In fact I altered a version of the speakit plugin for firefox so that it does delete the whitespace before sending the text to the speech engine.
(Firefox plugins are zip files of javascript source code, so you can change them with some effort). I also altered the RikaiChan popup Japanese English dictionary to speak each word it looks up.
By the way, if NextUp wants it's plugin to have that feature, the Javascript to delete the whitespace from a string is:
aString = aString.replace(/\s+/g,'');
Josh Scholar