YOUPAIVideoEditVC.h 520 B

12345678910111213141516171819202122232425262728
  1. //
  2. // YOUPAIVideoEditVC.h
  3. // VideoEditDemo
  4. //
  5. // Created by 刘志伟 on 2017/8/17.
  6. // Copyright © 2017年 刘志伟. All rights reserved.
  7. //
  8. /*
  9. *根据实际需求,可以判断如果总时长小于10秒或其他时长可以不用编辑
  10. */
  11. #import <UIKit/UIKit.h>
  12. @interface YOUPAIVideoEditVC : ZCBaseVC
  13. /*
  14. 待编辑视频的URL
  15. */
  16. @property (nonatomic, strong) NSURL *videoUrl;
  17. /**
  18. * 默认为YES NO:不显示视频帧并不可编辑剪切视频
  19. */
  20. @property (nonatomic, assign) BOOL isEdit;
  21. @end