TCVideoEditViewController.h 961 B

1234567891011121314151617181920212223242526
  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 <AVFoundation/AVFoundation.h>
  10. #import "TCVideoRecordViewController.h"
  11. @interface TCVideoEditViewController : YBBaseViewController
  12. @property (strong,nonatomic) NSString *videoPath;
  13. @property (strong,nonatomic) AVAsset *videoAsset;
  14. @property(nonatomic,strong)NSString *musicPath;
  15. @property(nonatomic,strong)NSString *musicID; //选取音乐的ID
  16. @property(nonatomic,assign)BOOL haveBGM; //yes-开拍时候选择了音乐 no-未选择音乐直接开拍
  17. @property(nonatomic,assign)BOOL isAlbum; //是否是相册视频(相册视频不要添加倒放)
  18. @property(nonatomic,assign)RecordType recordType; //拍摄类型(普通拍摄--合拍 注意:拍摄同款属于普通拍摄)
  19. @property(nonatomic,assign)BOOL isTakeSame; //拍摄同款
  20. @end