KKVideoInfo.h 309 B

123456789101112131415161718
  1. //
  2. // Created by Caijinglong on 2019-03-15.
  3. //
  4. #import <Foundation/Foundation.h>
  5. @interface KKVideoInfo : NSObject
  6. @property(nonatomic, assign) NSTimeInterval duration;
  7. @property(nonatomic, assign) NSTimeInterval currentPosition;
  8. @property(nonatomic, assign) CGSize size;
  9. - (NSDictionary *)toMap;
  10. @end