KKVideoInfo.h 355 B

1234567891011121314151617181920
  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. @property(nonatomic, assign) BOOL isPlaying;
  10. - (NSDictionary *)toMap;
  11. @end