Reputation: 59
I am trying to write an iPhone app that playback mp3 audio streamed by our audio server over http socket. I am just wondering if there is any easy solutions that play the mp3 directly over the socket without any local buffering and conversion? I found same posts about streaming mp3 files over HTTP connection but with no luck to find anything useful about the socket streaming.
Thank you in advance.
Upvotes: 1
Views: 535
Reputation: 27597
The most trivial solution would be the use of MPMoviePlayerController
for the playback of streaming audio via HTTP.
Upvotes: 1
Reputation: 171
May be what you could do is impliment a mini server on the iPhone here is a one then simply stream the mp3 from there
Upvotes: 1