Swiftgram/LegacyComponents/TGCameraCapturedVideo.h
Ilya Laktyushin 04a9ce1abb no message
2018-02-21 14:46:20 +03:00

15 lines
398 B
Objective-C

#import <UIKit/UIKit.h>
#import <LegacyComponents/TGMediaEditingContext.h>
#import <LegacyComponents/TGMediaSelectionContext.h>
@class AVURLAsset;
@interface TGCameraCapturedVideo : NSObject <TGMediaEditableItem, TGMediaSelectableItem>
@property (nonatomic, readonly) AVURLAsset *avAsset;
@property (nonatomic, readonly) NSTimeInterval duration;
- (instancetype)initWithURL:(NSURL *)url;
@end