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

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

[self.noise play];

然后 main.m 有错误。当我使用大约 1 秒的短媒体时,它会起作用。

4

1 回答 1

2

因为AVFoundation无法播放 Windows Media 音频 (WMA)。将您的“噪音”转换为支持的格式,例如 MP3 或 AAC。

于 2012-08-20T03:53:47.007 回答