0

I am trying to implement multicast on a red5 server specific to an application called Bigbluebutton. It uses RTMP for audio, video and texts.

problem: I cant use flash media server to implement the multicast as the software has some ties with RED5.

Is there any other way to implement multicasting on application layer level using these two protocol within a local network?

Regards, B

1 Answers1

0

RTMP does not allow multicast natively and it will be a very painful project to implement multicasting by yourself on client side. But there are two solutions :

  1. You could try RTMFP multicast serverless solution. Here is a good example explained by Tom Krcha : http://tomkrcha.com/?p=1803 (just add a NetStream and attach the camera to it),
  2. Otherwise you could try Adobe Media Server or MonaServer (our open source server) to use NetGroup and RTMFP. I think that re-implementing the server part of Bigbluebutton should be easy.

EDIT: RTMFP with NetGroup is the only simple solution to have multicast (P2P broadcasting) on the internet.

thomas
  • 116