目前我正在使用AurioTouch并从麦克风获取声音。但是我在缓冲一首长歌时遇到了麻烦…… Novocaine似乎可以很好地处理音频播放,并且拥有我需要的一切,除了我无法弄清楚如何在特定频率下检索声音幅度(分贝)。
NSURL *inputFileURL = [[NSBundle mainBundle] URLForResource:@"TLC" withExtension:@"mp3"];
fileReader = [[AudioFileReader alloc]
initWithAudioFileURL:inputFileURL
samplingRate:audioManager.samplingRate
numChannels:audioManager.numOutputChannels];
[fileReader play];
[audioManager setOutputBlock:^(float *data, UInt32 numFrames, UInt32 numChannels)
{
[fileReader retrieveFreshAudio:data numFrames:numFrames numChannels:numChannels];
// i believe here should lay the code for detecting the amplitude at 1000 HZ
}];
我对声音分析太笨了,欢迎任何帮助!