Некоторые коды клавиш:
Код: Выделить всё
self.audioSettings = @{
AVFormatIDKey: @(kAudioFormatMPEG4AAC),
AVNumberOfChannelsKey: @2,
AVSampleRateKey: @44100,
AVEncoderBitRateKey: @128000,
};
[self.audioInput requestMediaDataWhenReadyOnQueue:self.inputQueue usingBlock:^ {
while (input.isReadyForMoreMediaData) {
CMSampleBufferRef sampleBuffer = [output copyNextSampleBuffer];
if (sampleBuffer) {
if ([input appendSampleBuffer:sampleBuffer]) {
// Something went wrong here!
}
}
}
}];
Код: Выделить всё
Error Domain=AVFoundationErrorDomain Code=-11800 "This operation cannot be completed" UserInfo={
NSLocalizedFailureReason=An unknown error occurred(-12780),
NSLocalizedDescription=This operation cannot be completed,
NSUnderlyingError=0x3023db8a0 {
Error Domain=NSOSStatusErrorDomain Code=-12780 "(null)"
}
}
Подробнее здесь: https://stackoverflow.com/questions/791 ... 16-pro-max
Мобильная версия