menu
 

AudiokineticのコミュニティQ&Aは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 ! 

 

Yoann M. (230 ポイント) General Discussion

回答 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 !
...