LGAudioStreamHelper
LGAudioStreamHelper copied to clipboard
iOS helper for easy recording audio stream, getting metadata and type of stream
LGAudioStreamHelper
iOS helper for easy recording audio stream, getting metadata and type of stream.
- LGAudioStreamMetadataGetter helps to get metadata of audio stream.
- LGAudioStreamContentTypeGetter helps to get type of audio stream.
- LGAudioStreamRecorder helps to record audio stream.
Installation
With source code
Download repository, then add LGAudioStreamHelper directory to your project.
With CocoaPods
CocoaPods is a dependency manager for Objective-C, which automates and simplifies the process of using 3rd-party libraries in your projects. To install with cocoaPods, follow the "Get Started" section on CocoaPods.
Podfile
platform :ios, '6.0'
pod 'LGAudioStreamHelper', '~> 1.0.0'
With Carthage
Carthage is a lightweight dependency manager for Swift and Objective-C. It leverages CocoaTouch modules and is less invasive than CocoaPods. To install with carthage, follow the instruction on Carthage.
Cartfile
github "Friend-LGA/LGAudioStreamHelper" ~> 1.0.0
Usage
In the source files where you need to use the library, import the header file:
#import "LGAudioStreamHelper.h"
Or you can use sublibraries separately, depend of your needs:
#import "LGAudioStreamMetadataGetter.h" // helps to get metadata of audio stream
#import "LGAudioStreamContentTypeGetter.h" // helps to get type of audio stream
#import "LGAudioStreamRecorder.h" // helps to record audio stream
More
For more details see files:
License
LGAudioStreamHelper is released under the MIT license. See LICENSE for details.