Hi Ray,
Inside our own subnet, we had no problems with one client broadcasting it's audio/video to 14 other clients. We were quite amazed. My suspicion is that the encoding gets done once and that result is shared across all the outgoing streams. So, if your administrator (the guy everybody wants to see) has sufficient upload bandwidth (figure on 300Kbs per connection), you may not need an MCU for small numbers. The only trick to one-way transmission is the non-sending parties make the following calls before calling the administrator:
easyrtc.enableAudio(false);
easyrtc.enableVideo(false);
Remote muting is pretty easy, the administrator just sends a message to the other guy who then interprets it.
That said, we don't currently support an MCU. However, take a look at
http://lynckia.com/licode . They supply an open source MCU. It doesn't appear to handle anything except the fan-out issue, but if that is all you need, then it would be sufficient.
In our upcoming enterprise branch, we do plan to support an MCU but it will probably be a commercially provided one because we haven't seen an open source one that supported the feature set we want: resolution changing (useful for mobile), vp8 <-> h.264, and recording.
Eric.