CoolVideoInfo.h 522 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // Created by Caijinglong on 2019-03-15.
  3. //
  4. #import <Foundation/Foundation.h>
  5. @interface CoolVideoInfo : 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. @property(nonatomic, assign) int degree;
  11. /**
  12. * Unit is Byte.
  13. */
  14. @property(nonatomic, assign) int64_t tcpSpeed;
  15. @property(nonatomic, assign) CGFloat outputFps;
  16. - (NSDictionary *)toMap;
  17. @end