NSString *soundFileURL=[[NSBundle mainBundle]pathForResource:@"noise" ofType:@"wma"];

self.noise=[[AVAudioPlayer alloc]initWithContentsOfURL:[NSURL fileURLWithPath:soundFileURL] error:nil];

[self.noise play];

then the main.m have mistake. When I use short media about 1 sec it would work.

有帮助吗?

解决方案

Because AVFoundation can't play Windows Media audio (WMA). Convert your "noise" to a supported format, such as MP3 or AAC.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top