Raphael Petegrosso
Raphael Petegrosso

Reputation: 3870

iPhone Audio Streaming

I would like to know how to start creating an Audio Streaming Player to iPhone (a radio streaming).

I read that I have to use AudioToolbox and AudioQueue. Is there any easy solution? Anybody has an advice?

Thanks!

Upvotes: 1

Views: 1792

Answers (2)

Kemal Taskin
Kemal Taskin

Reputation: 481

Recent versions of the iOS SDK allow you to use AVPlayer which can also play remote mp3 audio streams. AVPlayer is easier to use and way more high-level than the AudioQueue API.

Upvotes: 1

Martin Adoue
Martin Adoue

Reputation: 66

Take a look at http://cocoawithlove.com/2010/03/streaming-mp3aac-audio-again.html for a very complete audio streaming example.

Upvotes: 1

Related Questions