Reputation: 1047
Are there any libraries that exist that take in a URL as input, and starts playing the audio of the file?
I've tried AudioStreamer, but I run into ARC problems. I've also tried a couple of other libraries, but they don't seem to allow AAC files (only mp3).
Upvotes: 1
Views: 1048
Reputation: 1712
<AVFoundation/AVAudioPlayer.h>
and AVPlayer can help you.
AVPlayer the best solution for playing file in queue.
Upvotes: 1