Swift AVAudioRecorder 踩坑记录 recor

2022-08-19  本文已影响0人  Cerko

配置settings,不能直接返回 AVAudioQuality.low,要返回AVAudioQuality.low.rawValue !!!
var settings: [String: Any] {
[
AVFormatIDKey: Int(kAudioFormatMPEG4AAC),
AVSampleRateKey: 44100,
AVEncoderBitRateKey: 64000,
AVNumberOfChannelsKey: 1,
AVLinearPCMBitDepthKey: 16,
AVEncoderAudioQualityKey: AVAudioQuality.low.rawValue,
]

上一篇下一篇

猜你喜欢

热点阅读