美文网首页
Swift AVAudioRecorder 踩坑记录 recor

Swift AVAudioRecorder 踩坑记录 recor

作者: Cerko | 来源:发表于2022-08-19 21:08 被阅读0次

    配置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,
    ]

    相关文章

      网友评论

          本文标题:Swift AVAudioRecorder 踩坑记录 recor

          本文链接:https://www.haomeiwen.com/subject/crymgrtx.html