HTMp3Audio 0.0.3

HTMp3Audio 0.0.3

HarveyTsang 维护。



  • HarveyTsang

HTMp3Audio

在 iOS 平台上记录 mp3 格式音频。

安装

使用 CocoaPods 安装

在 Podfile 中指定它

pod 'HTMp3Audio'

用法

创建录音实例

NSMutableDictionary *settings = [NSMutableDictionary dictionary];
settings[AVSampleRateKey] = @16000;
settings[AVNumberOfChannelsKey] = @1;
HTMp3AudioRecorder *recorder = [[HTMp3AudioRecorder alloc] initWithURL:fileURL settings:settings];

录音

[recorder record];
// [recorder recordForDuration:60];