menu
 

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

0 투표
Unity's own sound engine provides:
 
float[] f = new float[1024];
AudioListener.GetSpectrumData(f, 0, FFTWindow.Hamming);
 
This doesn't seem to work for accessing sounds played through Wwise (which makes sense enough). 
 
Anyone have a method of spectral analysis for Unity incorporation?
 
Thanks!
General Discussion andymule (280 포인트) 로 부터

2 답변

+1 투표
 
우수 답변
Not out of the box.  The only way would be to write your own native Wwise plugin and add it to the Unity+Wwise plugin by recompiling.  You can check the SDK doc in the section "Going Further", we detail the steps to write a Wwise plugin.
Mathieu J. (Audiokinetic) (7.1k 포인트) 로 부터
선택됨 andymule 로 부터
0 투표
Hi andymule,

Did you succeed in your quest of the spectrum ? I'm looking for the same feature and would like to know if you find another solution than the plugin one as I would like to avoid native code as much as possible to keep the project cross platform.

Thanks for your time,

Sebastien C.
Sébastien C. (760 포인트) 로 부터
...