AliyunEffectMusic
@interface AliyunEffectMusic : AliyunEffect
* A model class that defines music effects.
-
* The start time of the music on the playback timeline.
Declaration
Objective-C
@property (nonatomic) CGFloat startTime;
-
* The playback duration of the music on the playback timeline.
Declaration
Objective-C
@property (nonatomic) CGFloat duration;
-
* The start time of the music on the stream timeline.
Declaration
Objective-C
@property (nonatomic) CGFloat streamStartTime;
-
* The playback duration of the music on the stream timeline.
Declaration
Objective-C
@property (nonatomic) CGFloat streamDuration;
-
* The volume of the music.
Valid values: [0, 100]
Declaration
Objective-C
@property (nonatomic) int audioMixWeight;
-
* The denoise of the music.
Valid values: [0, 100], closed if 0
Declaration
Objective-C
@property (nonatomic) int audioDenoiseWeight;
-
Deprecated
use audioDenoiseWeight
* Whether to denoise the music.
Deprecated. Replaced by audioDenoiseWeight.
Declaration
Objective-C
@property (nonatomic) BOOL denoise;
-
* The sound effects.
Declaration
Objective-C
@property (nonatomic, strong) NSMutableArray<AliyunAudioEffect *> *audioEffects;
-
* API_AVAILABLE(3.20.0) The fade in model.
Declaration
Objective-C
@property (nonatomic, strong) AliyunAudioFade *fadeIn;
-
* API_AVAILABLE(3.20.0) The fade out model.
Declaration
Objective-C
@property (nonatomic, strong) AliyunAudioFade *fadeOut;