AVAudioRecorder默认记录设置

时间:2014-03-28 10:52:50

标签: ios avfoundation avaudiorecorder recording

我正在使用AVAudioRecorder录制音频。我使用以下代码:

[[AVAudioRecorder alloc] initWithURL:outputFileURL settings:recordSetting error:NULL];

我想知道如果我将recordSetting传递为nil,那么此刻录机使用的默认记录设置是什么。我的意思是如果我们将settings参数传递为nil,AVFormatIDKey,AVSampleRateKey,AVEncoderBitRateKey,AVNumberOfChannelsKey和AVAudioQualityMax的值将是什么。

我需要这些键的默认值。

我将不胜感激。

2 个答案:

答案 0 :(得分:0)

以下是您可以设置的默认录像机设置。

NSMutableDictionary recordSetting = [[NSMutableDictionary alloc] init];

[recordSetting setValue:[NSNumber numberWithInt:kAudioFormatMPEG4AAC] forKey:AVFormatIDKey];
[recordSetting setValue:[NSNumber numberWithFloat:44100.0] forKey:AVSampleRateKey];
[recordSetting setValue:[NSNumber numberWithInt: 2] forKey:AVNumberOfChannelsKey];

答案 1 :(得分:0)

默认AVAudioRecorder设置如下;

defaultSettings =     {
    AVFormatIDKey = 1768775988;
    AVLinearPCMBitDepthKey = 16;
    AVLinearPCMIsBigEndianKey = 0;
    AVLinearPCMIsFloatKey = 0;
    AVNumberOfChannelsKey = 2;
    AVSampleRateKey = 44100;
};