Getting Master Channel from Event

How can I get the master channel from a concrete event? I’m trying to change the frequency of the entire event.

Thanks

You can change the pitch of an entire Event using: EventInstance::setPitch

Manually digging in to the channels and changing frequency isn’t really advised as it can wreak havoc on the playback system, especially if you are trying to play things backwards with a negative frequency.

Using setPitch doesn’t solve my problem. I need setFrequency because I want it to go really slowmotion, and setPitch only allows me like +/-24st. Please let me know if it’s possible to get the master channel and change its frequency.

Thanks

To get the master channel of an Event, you can use:

EventInstance::getChannelGroup

For further discussion on Event frequency see this post.