menu
 

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

0 투표
I want to have a music playlist containing several tracks playing randomly one after the other and have random silence between each track. Let's say I want to set silence with a duration between 10s and 30s that Wwise will determine randomly. Thanks in advance!
General Discussion Kim D. (100 포인트) 로 부터

1 답변

+1 투표
Create a music segment with no audio.  You could for example make it a 1 second segment and have it loop 10-30 times.
Monty M. (2.7k 포인트) 로 부터
Thanks a lot, it's working like a charm :)
This was helpful for me to figure out how to get a random interval of silence into a music playlist, thank you.

To expand on your answer and to address the other part of Kim's question, if you want to have this silence play after each randomly selected track in the playlist, you can use nested groups within the Music Playlist editor.

For example, if you have two tracks you want to randomly select with a random length silence after them:

Random Continuous Group (Top parent) - Loop Count Infinite
    Sequence Continuous Group (Weight 50, loop count 1):
       Track 1 Segment
       Randomized Silence Segment
    Sequence Continuous Group (Weight 50, loop count 1):
       Track 2 Segment
       Randomized Silence Segment

You can add new groups in the right-most column of the Music Playlist Editor of WWISE 2019.2.13. I assume similar in other versions. Then you can use these groups hierarchically like in the above example to achieve the desired design.
...