ClimaxSegment
The climax parts of the music.
public class ClimaxSegment {
public int startTimeMs;
public int endTimeMs;
@CalledByNative
public ClimaxSegment(int startTimeMs, int endTimeMs) {
this.startTimeMs = startTimeMs;
this.endTimeMs = endTimeMs;
}
@CalledByNative
public int getStartTimeMs() {
return startTimeMs;
}
@CalledByNative
public int getEndTimeMs() {
return endTimeMs;
}
}
- Since
- v4.1.0
Attributes
- startTimeMs
- The time (ms) when the climax part begins.
- endTimeMs
- The time (ms) when the climax part ends.