接口类名 | 描述 |
TAVEditor | SDK 操作入口类。 |
/// 设置特效/// - Parameters:/// - path: 特效素材路径/// - timeRange: 特效对应的时间区域/// - return:特效id- (int)addMotionEffect:(NSString *)path timeRange:(CMTimeRange)timeRange;
/// 更新特效播放时间/// - Parameters:/// - effectId: 创建特效时生成的id/// - timeRange: 特效展示区间- (void)updateMotionEffect:(int)effectId playRange:(CMTimeRange)timeRange;
/// 删除特效/// - Parameter effectId: 创建特效时生成的id- (void)removeMotionEffect:(int)effectId;/// 删除所有特效- (void)removeAllMotion;
文档反馈