AEPEffectTimeTrack

@interface AEPEffectTimeTrack : AEPEffectTrack

Undocumented

  • ** Timeline effect types.

    Declaration

    Objective-C

    @property (nonatomic, readonly) AEPEffectTimeType timeType;
  • * The parameter of the timeline effect.

    1. Indicates the playback speed if the timeline effect is set to TimeFilterTypeSpeed. It is recommended to set a value between 0.5 to 2.
    2. Indicates the number of repeats if the timeline effect is set to TimeFilterTypeRepeat.

    Declaration

    Objective-C

    @property (nonatomic, readonly) float timeParam;
  • * The start time on timeline. (second)

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSTimeInterval timelineIn;
  • * The end time on timeline. (second)

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSTimeInterval timelineOut;
  • * Whether to keep the original duration of the playback timeline.

    For example, if a 10-second video is played at half of the original speed, the playback timeline duration is 10 seconds if originDuration is set to YES and 20 seconds if originDuration is set to NO.

    Declaration

    Objective-C

    @property (nonatomic, readonly) BOOL needOriginDuration;
  • * The effect obj for editor

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) AliyunEffectTimeFilter *editorEffect;