Reputation: 3870
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
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
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