使用音频会话录制时如何减少录制噪音?
Posted
技术标签:
【中文标题】使用音频会话录制时如何减少录制噪音?【英文标题】:How to reduce recording noise when recording with audio sessions? 【发布时间】:2012-08-15 06:53:54 【问题描述】:我的一些录音代码正常工作,但录制的音频(来自 iPod touch 内置麦克风)非常嘈杂。
这是我的配置:
AVAudiosession *audioSession = [AVAudioSession sharedInstance];
NSError *err = nil;
[audioSession setCategory:AVAudioSessionCategoryPlayAndRecord error:&err];
if (err)
NSLog(@"audioSession: %@ %d %@", [err domain], [err code], [[err userInfo] description]);
return;
[audioSession setActive:YES error:&err];
err = nil;
if (err)
NSLog(@"audioSession: %@ %d %@", [err domain], [err code], [[err userInfo] description]);
return;
recordSetting = [[NSMutableDictionary alloc] init];
// We can use kAudioFormatAppleIMA4 (4:1 compression) or kAudioFormatLinearPCM for nocompression
[recordSetting setValue:[NSNumber kAudioFormatLinearPCM] forKey:AVFormatIDKey];
// We can use 44100, 32000, 24000, 16000 or 12000 depending on sound quality
[recordSetting setValue:[NSNumber numberWithFloat:44100.0] forKey:AVSampleRateKey];
// We can use 2 (if using additional h/w) or 1 (iPhone only has one microphone)
[recordSetting setValue:[NSNumber numberWithInt:1] forKey:AVNumberOfChannelsKey];
// These settings are used if we are using kAudioFormatLinearPCM format
[recordSetting setValue:[NSNumber numberWithInt:16] forKey:AVLinearPCMBitDepthKey];
[recordSetting setValue:[NSNumber numberWithBool:NO] forKey:AVLinearPCMIsBigEndianKey];
[recordSetting setValue:[NSNumber numberWithBool:NO] forKey:AVLinearPCMIsFloatKey];
我这里的配置是否错误,或者是否有其他方法可以减少录制音频中的噪音?据我所知,有一些录音机应用程序没有噪音。
【问题讨论】:
你在这方面有什么发现吗?我也在从事这种类型的项目。任何帮助将不胜感激。 【参考方案1】:为此,您必须进行一些数字信号处理。您必须在没有任何东西进入麦克风时创建您听到的噪音的特征。换句话说,您必须指定正在记录或拾取的白噪声。您可以使用数字声音处理 (DSP) 进行所有这些表征。然后你可以录制你的音频并减去你之前描述的白噪声。
【讨论】:
以上是关于使用音频会话录制时如何减少录制噪音?的主要内容,如果未能解决你的问题,请参考以下文章