Arun Sharma
Arun Sharma

Reputation: 230

How i play Mp3 from server from avaudioplayer

I am new in iPhone,Anyone tell me please how i play audio uploaded on server. in my application some songs are from local and some others are from Server,Locally i play songs successfully but how i play a audio file from server from AVAudioplayer.

Thanks, Arun

Upvotes: 1

Views: 1525

Answers (3)

Timur Mustafaev
Timur Mustafaev

Reputation: 4929

AVAudioPlayer plays file when it loads. To stream audio you should try use AVPlayer. It can play audio from web servers without UI freezing.

Upvotes: 1

cem
cem

Reputation: 3321

As documented:

AVAudioPlayer *player = [AVAudioPlayer initWithContentsOfUrl:urlToAudioResource];
[player play];

Upvotes: 1

Related Questions