Audiokinetic의 커뮤니티 Q&A는 사용자가 Wwise와 Strata 커뮤니티 내에서 서로 질문과 답변을 하는 포럼입니다. Audiokinetic의 기술 지원팀에게 문의하고 싶으신 경우 지원 티켓 페이지를 사용해주세요.

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

+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 ! 

 

문의 2017 9월 20 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
            };
답변 2017 9월 21 Bernard R. (Audiokinetic) (35,110 포인트) 로 부터
선택됨 2017 9월 25 Yoann M. 로 부터
Wokrs like a charm thank you !
...