Audiokinetic's Community Q&A is the forum where users can ask and answer questions within the Wwise and Strata communities. If you would like to get an answer from Audiokinetic's Technical support team, make sure you use the Support Tickets page.

Text-to-speech using Wwise Authoring API - Problem with Sound Voice only !

+1 vote

Hello, 

I successfully reproduced what is said in this blog post for TTS using the WAAPI. Working well when using Sound SFX container.  But whenever I use a Sound Voice as the original container, I can see the script window opening and closing as usual, but then Wwise freezes and closes.  

I looked into the code source in ""index.ts" and I can see this : 

 var args = {
                "importOperation": "useExisting",
                "default": {
                    "importLanguage": "SFX"
                },
                "imports": result
            };


I was wondering if it has something to do with my error, if I should replace "SFX" by "English" or something else.  

I am no programmer, so a little bit of help on this would be amazing ! 

Thanks ! 

 

asked Sep 20, 2017 in General Discussion by Yoann M. (230 points)

1 Answer

+1 vote
 
Best answer

Yes, you need to specify the language. But the syntax must be exactly the same as Wwise, so: English(US)            

            var args = {
                "importOperation": "useExisting",
                "default": {
                    "importLanguage": "English(US)"
                },
                "imports": result
            };
answered Sep 21, 2017 by Bernard R. (Audiokinetic) (35,110 points)
selected Sep 25, 2017 by Yoann M.
Wokrs like a charm thank you !
...