mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-18 19:40:19 +00:00
18 lines
629 B
Objective-C
18 lines
629 B
Objective-C
#import <LegacyComponents/TGMediaPickerGalleryItem.h>
|
|
#import <LegacyComponents/TGModernGallerySelectableItem.h>
|
|
#import <LegacyComponents/TGModernGalleryEditableItem.h>
|
|
#import <AVFoundation/AVFoundation.h>
|
|
|
|
@protocol TGMediaEditAdjustments;
|
|
|
|
@interface TGMediaPickerGalleryVideoItem : TGMediaPickerGalleryItem <TGModernGallerySelectableItem, TGModernGalleryEditableItem>
|
|
|
|
@property (nonatomic, readonly) AVURLAsset *avAsset;
|
|
@property (nonatomic, readonly) CGSize dimensions;
|
|
|
|
- (instancetype)initWithFileURL:(NSURL *)fileURL dimensions:(CGSize)dimensions duration:(NSTimeInterval)duration;
|
|
|
|
- (SSignal *)durationSignal;
|
|
|
|
@end
|