menu
 

在 Audiokinetic 社区问答论坛上,用户可对 Wwise 和 Strata 相关问题进行提问和解答。如需从 Audiokinetic 技术支持团队获取答复,请务必使用技术支持申请单页面。

+1 投票

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 ! 

 

分类:General Discussion | 用户: Yoann M. (230 分)

1个回答

+1 投票
 
已采纳

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
            };
用户: Bernard R. (Audiokinetic) (35.8k 分)
采纳于 用户:Yoann M.
Wokrs like a charm thank you !
...