Press ESC to close

Machine voice the unvoiced parts of a visual novel

Click on this area to view external content from YouTube. By clicking on this area, you consent to the transfer of personal data to YouTube. You can find more details about this in our privacy policy.

^ Machine voicing the parts in a visual novel that are unvoiced. Very helpful for anime listeners who haven’t mastered reading yet. The emphasis in the sentences is wrong, but it’s still remarkably good I think. Note that the above video is from 2008, so I imagine there are even better solutions now? Anyone have a guide?

Tay

I'm the Fuwanovel community admin and a big fan of Visual Novels. The easiest way to get a hold of me is via a PM on the Fuwanovel Forums, by twitter (@ArchmageTay), or by email.

Subscribe
Notify of
guest

5 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
cicilia
10 years ago

WOw that’s picture and animation in that video is good! May I know the name of it? I want to download the visual novel.

Aaeru
10 years ago

old game called time leap http://vndb.org/v759

it even got a xbox360 and ps3 port

Giorgio
10 years ago

interesting!

Dinx
10 years ago

There is two ways to go about inserting voice to games.

devOSD: http://www.hongfire.com/forum/showthread.php/139063-devOSD-transparent-eroge-translation-overlay
Has voice support if you want to run it in parallel with Translation Aggregator.
It is harder to filter what is said with the voice with regex.
Use (?:regex) patern to capture lines that you want to skip for example (?:【莉々子】.*) will skip the voice.
Use | to add multiple patterns to a regex line.
(regex) voices that capture.
This is how it will look final.
(?:【莉々子】.*)|(?:【紗夜】.*)|(?:【雪乃】.*)|(?:【琴音】.*)|(?:【.*】)?(.*)
The last (?:【.*】)?(.*) will skip voicing the names.
Different games need different rules.
You might also want to add a pattern with d+ to skip for stat heavy screens.
You might also want to add (?:.*) at the end if you want to skip anything that you haven’t explicitly captured.
.*(?:(|「)(.*)(?:」|))|(?:.*)

The second is to use visual novel reader which is a more simple solution.
http://www.hongfire.com/forum/showthread.php/410340-An-ITH-based-Galgame-Translator-Annotator
You add patterns with the speech target in the shared dictionary.
You can add how many patterns you want and can make them specific to a game.

The quality of voice is dependent on the voicepack you use.
I would recommend finding voices with clarity in mind rather then the games protagonist’s sex.
I am currently using voiceware Misaki.
I’m not sure exactly what kind of voicepacks are compatible but if the Microsoft TTS can use it,it will probably work.

Aaeru
Reply to  Dinx
10 years ago

^ nice.