Estoy implementando la grabación de audio. Funciona bien con el formato caf
& wave
. Pero el problema es que el tamaño del archivo es demasiado grande.iOS: Formato de archivo de grabación de audio
Entonces, ¿alguien me puede ayudar a grabar audio con formato que también se reproduce en la ventana & el tamaño del archivo es poco bajo.
El código que he intentado es a continuación:
dirPaths = NSSearchPathForDirectoriesInDomains(
NSDocumentDirectory, NSUserDomainMask, YES);
docsDir = [dirPaths objectAtIndex:0];
NSString *soundFilePath = [docsDir
stringByAppendingPathComponent:@"sound.wave"];
NSLog(@"%@",soundFilePath);
NSURL *soundFileURL = [NSURL fileURLWithPath:soundFilePath];
NSDictionary *recordSettings = [NSDictionary
dictionaryWithObjectsAndKeys:
[NSNumber numberWithInt:AVAudioQualityMin],
AVEncoderAudioQualityKey,
[NSNumber numberWithInt:16],
AVEncoderBitRateKey,
[NSNumber numberWithInt: 2],
AVNumberOfChannelsKey,
[NSNumber numberWithFloat:8000.0], AVSampleRateKey,
[NSNumber numberWithInt:8], AVLinearPCMBitDepthKey,
nil];
NSError *error = nil;
audioRecorder = [[AVAudioRecorder alloc]
initWithURL:soundFileURL
settings:recordSettings
error:&error];
if (error)
{
NSLog(@"error: %@", [error localizedDescription]);
} else {
[audioRecorder prepareToRecord];
}
duplicado de http://stackoverflow.com/questions/4279311/how-to-record-voice-in-m4a-format? – nneonneo
Grabe en formato m4a (MPEG-4 AAC). Consulte http://stackoverflow.com/questions/4279311/how-to-record-voice-in-m4a-format para obtener más detalles. – nneonneo