iOS - AVAudioRecorder - запись с использованием ADPCM или IMA
Используя эти настройки записи, я могу заставить AVAudioRecorder работать:
recordSetting = [NSDictionary dictionaryWithObjectsAndKeys:
// [NSNumber numberWithFloat:2048.0f],AVSampleRateKey,
// [NSNumber numberWithInt:1],AVNumberOfChannelsKey,
// [NSNumber numberWithInt:8],AVLinearPCMBitDepthKey,
[NSNumber numberWithInt:kAudioFormatLinearPCM],AVFormatIDKey,
// [NSNumber numberWithBool:NO], AVLinearPCMIsFloatKey,
// [NSNumber numberWithBool:0], AVLinearPCMIsBigEndianKey,
// [NSNumber numberWithBool:NO], AVLinearPCMIsNonInterleaved,
// [NSNumber numberWithInt:256], AVEncoderBitRateKey,
[NSData data], AVChannelLayoutKey, nil];
recorder = [[ AVAudioRecorder alloc] initWithURL:url settings:recordSetting error:&err];
if(!recorder){
NSLog(@"recorder: %@ %d %@", [err domain], [err code], [[err userInfo] description]);
UIAlertView *alert =
[[UIAlertView alloc] initWithTitle: @"Warning"
message: [err localizedDescription]
delegate: nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alert show];
return;
}
Как только я изменю это:
[NSNumber numberWithInt:kAudioFormatLinearPCM],AVFormatIDKey,
к этому:
[NSNumber numberWithInt:kAudioFormatAppleIMA4],AVFormatIDKey,
Я получаю следующую ошибку:
recorder: NSOSStatusErrorDomain 1718449215 {
}
То есть аудиоформат не поддерживается. kAudioFormatUnsupportedDataFormatError
Что мне нужно сделать, чтобы ADPCM или IMA работали с AVAudioRecorder?
1 ответ
1) Убедитесь, что вы правильно установили сеанс для записи (или) воспроизведения (или) обоих (т. Е. VOIP) следующим образом:
[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryRecord error:nil];
2) Используйте следующий код, так как он отлично работает для меня (я сжимаю до низкого качества, так как у меня есть приложение для обмена сообщениями):
NSDictionary *AudioSettings = [[NSDictionary alloc] initWithObjectsAndKeys:
[NSNumber numberWithInt:kAudioFormatAppleIMA4], AVFormatIDKey
, [NSNumber numberWithFloat:11025.00], AVSampleRateKey
, [NSNumber numberWithInt:1], AVNumberOfChannelsKey
, [NSNumber numberWithInt:11025], AVEncoderBitRateKey
, [NSNumber numberWithInt:8], AVLinearPCMBitDepthKey
, [NSNumber numberWithInt:AVAudioQualityMin], AVEncoderAudioQualityKey
, [NSNumber numberWithInt:1], AVNumberOfChannelsKey
, nil
];
С уважением Хайдер Сати