1

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.

Joe
  • 59
  • 8

2 Answers2

1

The most trivial solution would be the use of MPMoviePlayerController for the playback of streaming audio via HTTP.

Cœur
  • 37,241
  • 25
  • 195
  • 267
Till
  • 27,559
  • 13
  • 88
  • 122
  • 1
    Hi Till, I finally figured out the Audio Queue is what I need. Thank you for your reply. – Joe Jan 16 '12 at 18:54
1

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

user1080731
  • 171
  • 1
  • 1
  • 11