user1330691
user1330691

Reputation: 1047

How do I play a stream of an online M4A/AAC audio file in iOS?

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

Answers (1)

Eugene Biryukov
Eugene Biryukov

Reputation: 1712

<AVFoundation/AVAudioPlayer.h> and AVPlayer can help you. AVPlayer the best solution for playing file in queue.

Upvotes: 1

Related Questions