# Connect few group channels to master channel group

**URL:** https://qa.fmod.com/t/connect-few-group-channels-to-master-channel-group/16353
**Category:** FMOD Engine
**Tags:** csharp
**Created:** [October 26, 2020, 1:44pm UTC](https://qa.fmod.com/t/connect-few-group-channels-to-master-channel-group/16353 "2020-10-26T13:44:03Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![LoVic](https://avatars.discourse-cdn.com/v4/letter/l/77aa72/32.png) [@LoVic](https://qa.fmod.com/u/LoVic)
#### Post date: [October 26, 2020, 1:44pm UTC](https://qa.fmod.com/t/connect-few-group-channels-to-master-channel-group/16353/1 "2020-10-26T13:44:03Z")

</div>

Hello. How i can make this?

```
Speaker<-- Master Channel <------------ Group Wav
           Group (MCG) \ /
                             Group A <-------- Group Mic          

1. Group Wav to MCG and to Group A
2. Group Mic to Group A
3. Group A to MCG
```

---

<div class="post-metadata">

### Author: ![mathew](https://yyz2.discourse-cdn.com/flex036/user_avatar/qa.fmod.com/mathew/32/431_2.png) [@mathew](https://qa.fmod.com/u/mathew)
#### Post date: [October 27, 2020, 3:12am UTC](https://qa.fmod.com/t/connect-few-group-channels-to-master-channel-group/16353/2 "2020-10-27T03:12:43Z")

</div>

You should be able to set most of that up with simply creating ChannelGroups and using addGroup. The second output from Group Wav to Group A will require manually adding a connection between the head DSP of Group Wav and the tail DSP of Group A.

Have you seen the dsp\_effect\_per\_speaker example we ship? It demonstrates how to do these kind of connections.

---

<div class="post-metadata">

### Author: ![LoVic](https://avatars.discourse-cdn.com/v4/letter/l/77aa72/32.png) [@LoVic](https://qa.fmod.com/u/LoVic)
#### Post date: [October 27, 2020, 7:15am UTC](https://qa.fmod.com/t/connect-few-group-channels-to-master-channel-group/16353/3 "2020-10-27T07:15:46Z")

</div>

Thanks.
