[![CI Status](http://img.shields.io/travis/Colin Humber/HUMAudioRecorder.svg?style=flat)](https://travis-ci.org/Colin Humber/HUMAudioRecorder)
To run the example project, clone the repo, and run pod install
from the Example directory first.
HUMAudioRecorder is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "HUMAudioRecorder"
Or, if you're using Carthage, simply add HUMAudioRecorder to your Cartfile
:
github "colinhumber/HUMAudioRecorder"
Using HUMAudioRecorder is super easy! Just make a URL where you want the file to live, setup your audio session settings, and create a new HUMAudioRecorder instance.
For a list of AVFoundation settings, go here.
NSURL *url = [NSURL fileURLWithPath:[NSTemporaryDirectory() stringByAppendingPathComponent:[NSString stringWithFormat:@"%@.m4a", [NSUUID UUID].UUIDString]]];
NSDictionary *settings = @{ AVFormatIDKey : @(kAudioFormatMPEG4AAC),
AVSampleRateKey : @44100,
AVNumberOfChannelsKey : @1,
AVEncoderAudioQualityKey : @(AVAudioQualityHigh)};
HUMAudioRecorder *audioRecorder = [[HUMAudioRecorder alloc] initWithURL:url settings:settings];
The header is well documented, so check it out for a list of properties and methods. There are well defined states that can be used when this is used as the backing recorder/player for your UI.
Colin Humber, [email protected]
HUMAudioRecorder is available under the MIT license. See the LICENSE file for more info.