TCVideoEditViewController.h 608 B

123456789101112131415161718192021222324252627
  1. //
  2. // TCVideoEditViewController.h
  3. // TCLVBIMDemo
  4. //
  5. // Created by xiang zhang on 2017/4/10.
  6. // Copyright © 2017年 tencent. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "music_obj.h"
  10. @interface TCVideoEditViewController : UIViewController
  11. @property (strong,nonatomic) NSString *videoPath;
  12. @property (strong,nonatomic) AVAsset *videoAsset;
  13. @property (strong,nonatomic)music_obj *element;
  14. //从剪切过来
  15. @property (assign,nonatomic) BOOL isFromCut;
  16. //从合唱过来
  17. @property (assign,nonatomic) BOOL isFromChorus;
  18. @property (assign, nonatomic) int renderRotation;
  19. @end