iOS5上的跳跃/不正确的光谱仪

Posted

技术标签:

【中文标题】iOS5上的跳跃/不正确的光谱仪【英文标题】:Jumpy/incorrect looking spectrograph on iOS5 【发布时间】:2012-03-08 01:28:17 【问题描述】:

我编写了一个函数来对包含 1024 个样本的数组执行 FFT。我正在尝试使用此函数的输出来绘制频谱图。

图表的输入非常不一致,大部分时间都在 0 处,而当它显示某些内容时,似乎与音乐几乎没有关系。我已经包含了两个屏幕截图来演示。

我已经包含了几个屏幕截图,以及用于执行 FFT 的代码。有没有人知道为什么产生的输出如此糟糕?

另外,我注意到频谱图的低端是“尖峰”,因为它喜欢跳跃很多。

奇怪的输出:

无输出(出现在所有绘制帧的 1/2 到 2/3 之间):

代码:

// Get the samples

AudiosampleType *samples = [_songModel nextSamplesWithLength: _fftN];
if (samples == nil)
    return nil;

// Convert AudioSampleTypes (SInt16s) into floats between -1.0 and 1.0 
// (required by the DSP library).

for (int i = 0; i < _fftN; i++)
    _inputReal[i] = (samples[i] + 0.5) / 32767.5;

// Window the input

vDSP_vmul(_inputReal, 1, _hanningWindow, 1, _windowedReal, 1, _fftN);

// Convert our real input into even-odd form

vDSP_ctoz((COMPLEX *)_windowedReal, 2, &_fourierOutput, 1, _fftHalfN);

// Perform the fast fourier transform

vDSP_fft_zrip(_fftSetup, &_fourierOutput, 1, _fftLog2n, FFT_FORWARD);

// Calculate magnitudes (will output to the real part of the COMPLEX_SPLIT)

vDSP_zvmags(&_fourierOutput, 1, _fourierOutput.realp, 1, _fftHalfN);

// Build and return the input and output of the analysis

return [[FrequencyData alloc] initWithSignal:_inputReal 
                                signalLength:_fftN  
                         frequencyMagnitudes:_fourierOutput.realp
                             magnitudeLength:_fftHalfN];

编辑

设置代码:

_fftN = 1 << _fftLog2n;
_fftHalfN = _fftN / 2;
_stride = 1;

_fourierOutput.realp = (float *) malloc(_fftHalfN * sizeof(float));
_fourierOutput.imagp = (float *) malloc(_fftHalfN * sizeof(float));

_hanningWindow = (float *) malloc(_fftN * sizeof(float));    
vDSP_hann_window(_hanningWindow, _fftN, 0);

_inputReal = (float *) malloc(_fftN * sizeof(float));
_windowedReal = (float *) malloc(_fftN * sizeof(float));
_fftSetup = vDSP_create_fftsetup(_fftLog2n, FFT_RADIX2);

【问题讨论】:

要调试,您可以尝试用已知频率的正弦波发生器替换您的歌曲模型,和/或绘制波形和频谱。 这是一个绝妙的主意。谢谢。 【参考方案1】:

没有输出的结果可能是由于代码中其他地方的错误(可能在歌曲阅读或绘图代码中)。

“奇怪的输出”可能是录制音乐的正确 FFT 结果,因为有趣的发声乐器和声音的完整音频频谱可能与仅标注的音高频率有很大不同。

【讨论】:

以上是关于iOS5上的跳跃/不正确的光谱仪的主要内容,如果未能解决你的问题,请参考以下文章

IOS5中的Safari不兼容Javascript中的Date问题

ios中safari浏览器中date问题

new Date() iso不支持兼容性问题

NSJSONSerialization 不更新数据

iPhone4 iOS5 NSFetchedResultsController 如何在子类中正确设置委托?

webview加载pdf在ios5中损坏