# Pause/time interval modulation

**URL:** https://qa.fmod.com/t/pause-time-interval-modulation/20988
**Category:** FMOD Studio
**Created:** [December 13, 2023, 12:17pm UTC](https://qa.fmod.com/t/pause-time-interval-modulation/20988 "2023-12-13T12:17:59Z")
**Posts on this page:** 7
**Page:** 1

<div class="post-metadata">

### Author: ![trjaudio](https://avatars.discourse-cdn.com/v4/letter/t/ea666f/32.png) [@trjaudio](https://qa.fmod.com/u/trjaudio)
#### Post date: [December 13, 2023, 12:17pm UTC](https://qa.fmod.com/t/pause-time-interval-modulation/20988/1 "2023-12-13T12:17:59Z")

</div>

Hi. I am having problems coming up with a good solution for this.  
let’s say I have a crowd. They chant these seperated words: “A, B, C”. with 1 sec interval in between each word. I always need the order ABC. It should never end up being BAC or whatever.  
I want to be able to vary the time (1 sec) with a parameter. Let’s call the parameter “chant\_speed”  
So something like this:  
If chant\_speed=1 set time interval to 1 sec. If chant\_speed=2, set time interval to 2 sec, if chant\_speed=3, then set interval to 3 sec.

I want to be able to modulate the decay part of an ADSR, depending on chant\_speed. So if the chant is slow, there is a long decay between each word. If the chant is fast, the decay is faster, so to not muddy up the next word with the tail of the word that came before.

I thought about using scatterer instruments, but I don’t know how to set them up so sequentially, so the B won’t start before A and so on.

Any ideas? I’m sure there is a very easy solution that is staring me in the face, but I can’t see it at the moment.

---

<div class="post-metadata">

### Author: ![Johanenglund](https://avatars.discourse-cdn.com/v4/letter/j/7ea924/32.png) [@Johanenglund](https://qa.fmod.com/u/Johanenglund)
#### Post date: [December 14, 2023, 12:23am UTC](https://qa.fmod.com/t/pause-time-interval-modulation/20988/2 "2023-12-14T00:23:08Z")

</div>

How about 3 loop regions each with the ABC but with increasingly more space between the samples eg 1 sec, 2, 3, a transition for each and a parameter that moves them between the different “speed” loops. Use the same parameter to module the decay of an envelope.

Best

J

---

<div class="post-metadata">

### Author: ![joseph](https://yyz2.discourse-cdn.com/flex036/user_avatar/qa.fmod.com/joseph/32/264_2.png) [@joseph](https://qa.fmod.com/u/joseph)
#### Post date: [December 14, 2023, 3:17am UTC](https://qa.fmod.com/t/pause-time-interval-modulation/20988/3 "2023-12-14T03:17:00Z")

</div>

> [@trjaudio](#):
>
> I thought about using scatterer instruments, but I don’t know how to set them up so sequentially, so the B won’t start before A and so on.

This is fairly easy to do:

1. Select the scatterer instrument so that its panel is displayed in the deck.
2. Just above the “Playlist” section of the scatterer, you should see a drop-down menu that’s set to “Shuffle” by default. Click on this menu, and select “Sequential - Local Scope.”

This will ensure that the scatterer instrument always selects items from its playlist in sequential order: First the first entry, than the second, then the third, and so on; when it reaches the end of the playlist, it’ll start selecting from the top of the playlist again.

The count is reset each time you start a new instance of the event. (If you’d prefer it to be maintained globally, you should use “Sequential - Global Scope” instead.)

Johanenglund’s suggestion would also work, but would require more work to set up.

---

<div class="post-metadata">

### Author: ![trjaudio](https://avatars.discourse-cdn.com/v4/letter/t/ea666f/32.png) [@trjaudio](https://qa.fmod.com/u/trjaudio)
#### Post date: [December 14, 2023, 9:10am UTC](https://qa.fmod.com/t/pause-time-interval-modulation/20988/4 "2023-12-14T09:10:58Z")

</div>

Thanks. Forgot to say one thing:  
I would like to randomise between different takes of A and different takes of B and different takes of C.

The scatterer instrument solution will not work with different takes (I think).

---

<div class="post-metadata">

### Author: ![trjaudio](https://avatars.discourse-cdn.com/v4/letter/t/ea666f/32.png) [@trjaudio](https://qa.fmod.com/u/trjaudio)
#### Post date: [December 14, 2023, 9:12am UTC](https://qa.fmod.com/t/pause-time-interval-modulation/20988/5 "2023-12-14T09:12:07Z")

</div>

That is the solution I am actually making myself now. But I would like a more simple/elegant solution if possible. But thanks 🙂

---

<div class="post-metadata">

### Author: ![joseph](https://yyz2.discourse-cdn.com/flex036/user_avatar/qa.fmod.com/joseph/32/264_2.png) [@joseph](https://qa.fmod.com/u/joseph)
#### Post date: [December 15, 2023, 1:07am UTC](https://qa.fmod.com/t/pause-time-interval-modulation/20988/6 "2023-12-15T01:07:22Z")

</div>

> [@trjaudio](#):
>
> I would like to randomise between different takes of A and different takes of B and different takes of C.
> 
> The scatterer instrument solution will not work with different takes (I think).

Oh, you can do that with a scatterer by using nested multi instruments:

1. Create a scatterer instrument and set its playlist selection mode to “Sequential - Local Scope” as I described in my above post.
2. Add three multi instruments to the scatterer instrument’s playlist. Name them “A,” “B,” and “C.”
3. Add your variants of the A, B, and C words to the appropriate multi instruments’ playlists.

Even though the scatterer instrument’s playlist is set to sequential, the multi instruments’ playlist will each be set to “shuffle.” The result will be that the scatterer instrument cycles through “A,” “B,” and “C” words in that fixed order, but that each time it plays one of those words it will randomly select one of that word’s variants to play.

---

<div class="post-metadata">

### Author: ![trjaudio](https://avatars.discourse-cdn.com/v4/letter/t/ea666f/32.png) [@trjaudio](https://qa.fmod.com/u/trjaudio)
#### Post date: [December 15, 2023, 8:26am UTC](https://qa.fmod.com/t/pause-time-interval-modulation/20988/7 "2023-12-15T08:26:18Z")

</div>

Ok great.

I experimented a bit with that approach and while the logic works, sound wise, it just doesn’t sound natural. So I will go with my initial approach.

But it’s great to know about this functionality.

EDIT:  
NO! I replicated the exact sound using your technique instead. And your approach is much more flexible and allows for smooth transitions.  
Thanks! 🙂
