Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My Problem is the following. I got this code and i guess a corrupt NSURL since the AVAudioPlayer is nil after initializing:

NSString *dummyURLString = @"http://a825.phobos.apple.com/us/r2000/005/Music/d8/a8/d2/mzi.jelhjoev.aac.p.m4p";
NSError *error;
NSURL *url = [NSURL URLWithString:dummyURLString]; 
AVAudioPlayer *player = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:&error];
[player play];

Any suggestions what is going wrong here?

The &error shows this:

Error Domain=NSOSStatusErrorDomain Code=-43 "Operation could not be completed. (OSStatus error -43.)"
share|improve this question
Where did the URL come from? – mahboudz Oct 22 '09 at 9:26

3 Answers

up vote 5 down vote accepted

I tried this first but got error 2003334207:

NSData *soundData = [NSData dataWithContentsOfURL:URL];
AVAudioPlayer *player = [[AVAudioPlayer alloc] initWithData:soundData error:&error];

Seems that AVAudioPlayer really wants a file. So I put the data into a file first:

NSURL *url = [NSURL URLWithString:@"http://a825.phobos.apple.com/us/r2000/005/Music/d8/a8/d2/mzi.jelhjoev.aac.p.m4p"]; 
NSData *soundData = [NSData dataWithContentsOfURL:url];
NSString *filePath = [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,
						NSUserDomainMask, YES) objectAtIndex:0] 
						stringByAppendingPathComponent:@"sound.caf"];
[soundData writeToFile:filePath atomically:YES];
player = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL
				fileURLWithPath:filePath] error:NULL];  
NSLog(@"error %@", error);
share|improve this answer
Thanks a lot, this solved the first step :) But it seems to me the AVAudioPlayer cannot play back the m4p-file :( ... it does not start to play or respond to any delegate-method :( – tommy Oct 22 '09 at 10:34
Give the new code a try. I got it to play for a brief moment and then it stopped. Still investigating. Where is the URL from? – mahboudz Oct 22 '09 at 10:40
Thanks to your fantastic answer, I can fix it a similar problem. – yusaku Nov 11 '12 at 9:30

AVAudioPlayer only works with local URL's. It must be a File URL (file://)

See Apple's Technical Q&A QA1634

share|improve this answer

Thanks for the try with saving to a file, but it still did not play at all... I guess its because you save the m4p as a wav file and there is an encoding error...?! But even saving it as m4p does not work at all :(

The link is a pre-listening link to an song provided by a customer ;)

Thanks for investigating!!!!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.