首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
社区首页 >问答首页 >如何将.caf文件转换为.mp3文件?

如何将.caf文件转换为.mp3文件?
EN

Stack Overflow用户
提问于 2015-12-17 16:25:05
回答 2查看 2.5K关注 0票数 5

我已经使用以下方法在Document文件夹中录制了一些声音

代码语言:javascript
运行
复制
 func record() {
    self.prepareToRecord()
    if let recorder = self.audioRecorder {
        recorder.record()
    }
}

    let recordSettings = [
    AVSampleRateKey : NSNumber(float: Float(44100.0)),
    AVFormatIDKey : NSNumber(int: Int32(kAudioFormatAppleLossless)),
    AVNumberOfChannelsKey : NSNumber(int: 2),
    AVEncoderAudioQualityKey : NSNumber(int: Int32(AVAudioQuality.Medium.rawValue)),
    AVEncoderBitRateKey : NSNumber(int: Int32(320000))
]

    func prepareToRecord() {

    let documentsPath = NSSearchPathForDirectoriesInDomains(.DocumentDirectory, .UserDomainMask, true)[0] as NSString
    let soundFileURL: NSURL? = NSURL.fileURLWithPath("\(documentsPath)/recording.caf")
    print("\(soundFileURL)")

    self.audioRecorder = try! AVAudioRecorder(URL: soundFileURL!, settings: recordSettings)

    if let recorder = self.audioRecorder {
        recorder.prepareToRecord()
    }
}

此方法将音频文件作为recording.caf保存到文档目录中,但我希望将此recording.caf文件转换为mp3以便进一步操作。

如何在swift中将此.caf文件转换为.mp3?

EN

回答 2

Stack Overflow用户

发布于 2015-12-17 16:43:16

由于可用编解码器列表中的版税,AVAudioRecorder不支持mp3编解码器:

kAudioFormatMPEG4AAC

kAudioFormatAppleLossless

kAudioFormatAppleIMA4

kAudioFormatiLBC

kAudioFormatULaw

kAudioFormatLinearPCM

您可以在此处找到详细信息How do I record audio on iPhone with AVAudioRecorder?

票数 4
EN

Stack Overflow用户

发布于 2015-12-21 18:12:04

为此,您需要使用Lame Encoder

这里是栈溢出链接,它解释了如何在swift中做到这一点。

wav to mp3 in swift

票数 -1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/34329816

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档