Reputation: 99
I would like to gather some thoughts on real-time audio streaming. I want to stream audio from a live source (like a mic) to mobile devices. I thought about doing it via browser on the client side to keep it simple. A major concern of mine is the delay I might face. I would like to stream to multiple devices with little to none delay, so the phones would be almost synchronous when playing. I was thinking of using WebRTC, but I'm not too sure about that. Any experience or thoughts someone would like to share on this topic?
Upvotes: 0
Views: 716
Reputation: 163262
Because of your latency requirement, WebRTC is essentially the only good option for you.
Yes, WebRTC does support multiple users at the same time.
Look into OpenTok for iOS.
Upvotes: 1