Last active
August 29, 2015 14:05
-
-
Save ivanlesko/8766694b77c7becb6508 to your computer and use it in GitHub Desktop.
Audio Tap Processor
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
File: MYAudioTapProcessor.h | |
Abstract: Audio tap processor using MTAudioProcessingTap for audio visualization and processing. | |
Version: 1.0.1 | |
*/ | |
#import <Foundation/Foundation.h> | |
@class AVAudioMix; | |
@class AVAssetTrack; | |
@interface AudioTapProcessor : NSObject | |
// Designated initializer. | |
- (id)initWithAudioAssetTrack:(AVAssetTrack *)audioAssetTrack; | |
// Properties | |
@property (readonly, nonatomic) AVAssetTrack *audioAssetTrack; | |
@property (readonly, nonatomic) AVAudioMix *audioMix; | |
@property (nonatomic, getter = isAudioProcessingEnabled) BOOL enableAudioProcessing; | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment