mirror of
https://github.com/purplecabbage/phonegap-plugins.git
synced 2026-01-15 01:08:17 -05:00
21 lines
432 B
Objective-C
21 lines
432 B
Objective-C
//
|
|
// AudioEncode.h
|
|
//
|
|
// By Lyle Pratt, September 2011.
|
|
// Updated Oct 2012 by Keenan Wyrobek for Cordova 2.1.0
|
|
// MIT licensed
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <AVFoundation/AVFoundation.h>
|
|
#import <Cordova/CDV.h>
|
|
|
|
@interface AudioEncode : CDVPlugin{
|
|
NSString* callbackId;
|
|
}
|
|
|
|
@property (nonatomic, retain) NSString* callbackId;
|
|
|
|
- (void)encodeAudio:(NSArray*)arguments withDict:(NSDictionary*)options;
|
|
@end
|