1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-04 10:27:46 +01:00
Telegram/Telegraph/TGAudioRecorder.h

39 lines
1.0 KiB
C
Raw Normal View History

2014-07-10 16:11:09 +02:00
/*
* This is the source code of Telegram for iOS v. 1.1
* It is licensed under GNU GPL v. 2 or later.
* You should have received a copy of the license in this archive (see LICENSE).
*
* Copyright Peter Iakovlev, 2013.
*/
#import <Foundation/Foundation.h>
@class TGAudioRecorder;
@class TGLiveUploadActorData;
2015-10-01 18:19:52 +02:00
@class TGDataItem;
2016-02-25 01:03:51 +01:00
@class TGAudioWaveform;
2014-07-10 16:11:09 +02:00
@protocol TGAudioRecorderDelegate <NSObject>
@optional
- (void)audioRecorderDidStartRecording:(TGAudioRecorder *)audioRecorder;
@end
@interface TGAudioRecorder : NSObject
@property (nonatomic, weak) id<TGAudioRecorderDelegate> delegate;
2015-10-01 18:19:52 +02:00
@property (nonatomic, strong) id activityHolder;
2016-02-25 01:03:51 +01:00
@property (nonatomic, copy) void (^pauseRecording)();
@property (nonatomic, copy) void (^micLevel)(CGFloat);
2014-07-10 16:11:09 +02:00
- (instancetype)initWithFileEncryption:(bool)fileEncryption;
2016-02-25 01:03:51 +01:00
- (void)startWithSpeaker:(bool)speaker completion:(void (^)())completion;
2014-07-10 16:11:09 +02:00
- (NSTimeInterval)currentDuration;
- (void)cancel;
2016-02-25 01:03:51 +01:00
- (void)finish:(void (^)(TGDataItem *, NSTimeInterval, TGLiveUploadActorData *, TGAudioWaveform *))completion;
2014-07-10 16:11:09 +02:00
@end