【发布时间】:2011-06-19 19:21:42
【问题描述】:
我正在使用以下设置使用 AVAudioRecorder 以 .mp3 格式录制音频文件。
NSDictionary *recordSettings = [[NSDictionary alloc] initWithObjectsAndKeys:
[NSNumber numberWithFloat: 44100.0],AVSampleRateKey,
[NSNumber numberWithInt: kAudioFormatMPEGLayer3],AVFormatIDKey,
[NSNumber numberWithInt: 1], AVNumberOfChannelsKey,
[NSNumber numberWithInt: AVAudioQualityMax],AVEncoderAudioQualityKey,nil];
但无法用这些记录。 我为此搜索了很多,但无法获得一些相关的帖子。 有些帖子说这是不可能的。如果不可能,那为什么会这样? 请回答。
【问题讨论】:
标签: iphone objective-c audio core-audio avaudiorecorder