Wdrażam nagranie audio. Działa dobrze z formatem caf
& . Problem polega jednak na tym, że rozmiar pliku jest zbyt duży.iOS: Format pliku zapisu dźwięku
Czy ktoś może mi pomóc w nagrywaniu dźwięku z formatem, który również był odtwarzany w oknie? Rozmiar pliku jest niewiele niższy.
Kod Próbowałem jest poniżej:
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];
}
duplikat http://stackoverflow.com/questions/4279311/how-to-record-voice-in-m4a-format? – nneonneo
Nagrywanie w formacie m4a (MPEG-4 AAC). Szczegółowe informacje można znaleźć na stronie http://stackoverflow.com/questions/4279311/how-to-record-voice-in-m4a-format. – nneonneo