AEPAudioTrackClip

@interface AEPAudioTrackClip : NSObject

/****
 The Media id
 */
@property (nonatomic, assign, readonly) int mediaId;

/****
 The type of audio track clip
 */
@property (nonatomic, assign, readonly) AEPAudioTrackClipType type;

/****
 The resource of audio
 */
@property (nonatomic, strong, readonly) AEPSource *source;

/****
 The start time on stream. (second)
 */
@property (nonatomic, assign, readonly) NSTimeInterval clipIn;
/****
 The end time on stream. (second)
 */
@property (nonatomic, assign, readonly) NSTimeInterval clipOut;

/****
 The duration of clip.(second)
 */
@property (nonatomic, assign, readonly) NSTimeInterval clipDuration;
/****
 The duration of timeline. (second)
 */
@property (nonatomic, assign, readonly) NSTimeInterval duration;
/****
 The start time on timeline. (second)
 */
@property (nonatomic, assign, readonly) NSTimeInterval timelineIn;
/****
 The end time on timeline. (second)
 */
@property (nonatomic, assign, readonly) NSTimeInterval timelineOut;

/****
 The weight of mix volume
 */
@property (nonatomic, assign, readonly) int mixWeight;
/****
 The weight of denoise
 */
@property (nonatomic, assign, readonly) int denoiseWeight;

/****
 The effect of audio
 */
@property (nonatomic, strong, readonly) AEPAudioEffect *audioEffect;
/****
 The fade in effect of audio
 */
@property (nonatomic, strong, readonly) AEPAudioFadeEffect *fadeInEffect;
/****
 The fade out effect of audio
 */
@property (nonatomic, strong, readonly) AEPAudioFadeEffect *fadeOutEffect;
/****
 The clip obj for editor
 */
@property (nonatomic, strong, readonly) AliyunEffectMusic *editorClip;

@end

Undocumented

  • * The Media id

    Declaration

    Objective-C

    @property (nonatomic, readonly) int mediaId;
  • * The type of audio track clip

    Declaration

    Objective-C

    @property (nonatomic, readonly) AEPAudioTrackClipType type;
  • * The resource of audio

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) AEPSource *source;
  • * The start time on stream. (second)

    Declaration

    Objective-C

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

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSTimeInterval clipOut;
  • * The duration of clip.(second)

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSTimeInterval clipDuration;
  • * The duration of timeline. (second)

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSTimeInterval duration;
  • * 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;
  • * The weight of mix volume

    Declaration

    Objective-C

    @property (nonatomic, readonly) int mixWeight;
  • * The weight of denoise

    Declaration

    Objective-C

    @property (nonatomic, readonly) int denoiseWeight;
  • * The effect of audio

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) AEPAudioEffect *audioEffect;
  • * The fade in effect of audio

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) AEPAudioFadeEffect *fadeInEffect;
  • * The fade out effect of audio

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) AEPAudioFadeEffect *fadeOutEffect;
  • * The clip obj for editor

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) AliyunEffectMusic *editorClip;