Latest | 0.1.8 |
---|---|
Homepage | https://github.com/colinhumber/HUMAudioRecorder |
License | MIT |
Platforms | ios 7.0, requires ARC |
Frameworks | AVFoundation |
Authors |
[](https://travis-ci.org/Colin Humber/HUMAudioRecorder)
Usage
To run the example project, clone the repo, and run pod install
from the Example directory first.
Requirements
Installation
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"
Usage
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.
Author
Colin Humber, [email protected]
License
HUMAudioRecorder is available under the MIT license. See the LICENSE file for more info.
Latest podspec
{ "name": "HUMAudioRecorder", "version": "0.1.8", "summary": "Drop in utility for recording and playing back audio, as well as listening to ambient sounds.", "description": "A simple utility for recording, playing back, and listening to ambient audio, when metering is needed.nProvides a simple wrapper around AVAudioRecorder and AVAudioPlayer and manages most of the standardntasks needed for audio recording and playback.", "homepage": "https://github.com/colinhumber/HUMAudioRecorder", "license": "MIT", "authors": { "Colin Humber": "[email protected]" }, "source": { "git": "https://github.com/colinhumber/HUMAudioRecorder.git", "tag": "0.1.8" }, "social_media_url": "https://twitter.com/colinhumber", "platforms": { "ios": "7.0" }, "requires_arc": true, "source_files": "Pod/Classes/**/*", "public_header_files": "Pod/Classes/**/*.h", "frameworks": "AVFoundation" }
Sat, 06 Jan 2018 06:40:04 +0000