A client had a question this morning about loading a WAV file over the web and playing it from within an iPhone app.
Turns out it’s not too difficult to do:
// Grab the sound we wish to play from across the web
NSData * data = [NSData dataWithContentsOfURL:[NSURL URLWithString:@”http://www.dailywav.com/0510/worstSunburn.wav”%5D%5D;
// Load the data into an AVAudioPlayer object
AVAudioPlayer * theAudio = [[AVAudioPlayer alloc] initWithData:data error:NULL];
// Play the sound file
[theAudio play];
Easy, Peasy.
Advertisements