Posts

Post not yet marked as solved
0 Replies
511 Views
The audio setting i have used is NSDictionary* sampleRateDict = @{ AVSampleRateKey: @(44100), AVFormatIDKey: @(kAudioFormatLinearPCM) }; This works completely fine with iOS 13 and below but not in iOS 14. I managed to identify the issue and when i change my settings as NSDictionary* sampleRateDict = @{ AVSampleRateKey: @(44100), AVFormatIDKey: @(kAudioFormatLinearPCM), AVLinearPCMBitDepthKey: [NSNumber numberWithInt:16], AVLinearPCMIsFloatKey: [NSNumber numberWithBool:NO] }; AVAssetReaderAudioMixOutput* audioOutput = [[AVAssetReaderAudioMixOutput alloc] initWithAudioTracks:audioTracks audioSettings:sampleRateDict]; This works charm in iOS 14 and below. Is there any official change document for this from apple ?
Posted Last updated
.
Post not yet marked as solved
1 Replies
492 Views
Apple defines kSecTrustCertificateTransparency is available from starting iOS 9.SecTrustCopyResult value return kSecTrustCertificateTransparency value only later iOS 12.1.For iOS 9 , 10 and 11 kSecTrustCertificateTransparency is missing even for secure server which has Certificate Transparency Log.Tried by Enabling NSRequireCertificateTransparency Key on Plist as well. Very Hard to find out related resource and implementation.
Posted Last updated
.