DontMind
DontMind

Reputation: 99

Stream live audio to mobile devices

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

Answers (1)

Brad
Brad

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

Related Questions