gpt4 book ai didi

iphone - iPhone 中的录音格式是什么?

转载 作者:行者123 更新时间:2023-12-03 21:11:15 28 4
gpt4 key购买 nike

在 iPhone 录音中我应该考虑哪种录音格式,因为下一步是将录音格式转换为 WAV 。请指导我 iPhone 中的哪种录音格式有库可以转换为 WAV 格式?

谢谢。

最佳答案

AVAudioRecorder使音频录制比以前的 SDK 版本简单得多。您可以在录制之前对其进行配置以满足您的需要。

以下设置应将其配置为 WAV 文件:

NSMutableDictionary* recordSetting = [[NSMutableDictionary alloc] init];
[recordSetting setValue :[NSNumber numberWithInt:kAudioFormatLinearPCM] forKey:AVFormatIDKey];
[recordSetting setValue:[NSNumber numberWithFloat:44100.0] forKey:AVSampleRateKey];
[recordSetting setValue:[NSNumber numberWithInt: 2] forKey:AVNumberOfChannelsKey];

这在初始化期间用作记录器:

recorder = [[ AVAudioRecorder alloc] initWithURL:fileURL settings:recordSetting error:&error];

关于iphone - iPhone 中的录音格式是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3193342/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com