public enum MixAudioSourceType extends java.lang.Enum<MixAudioSourceType>
| Enum Constant and Description |
|---|
MIX
混音(保留两条音轨)
v3.19.0 新增
|
Mute
静音
|
Original
原音频音轨
|
Recorded
录制音轨
|
| Modifier and Type | Method and Description |
|---|---|
static MixAudioSourceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MixAudioSourceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MixAudioSourceType Original
public static final MixAudioSourceType Recorded
public static final MixAudioSourceType Mute
public static final MixAudioSourceType MIX
public static MixAudioSourceType[] values()
for (MixAudioSourceType c : MixAudioSourceType.values()) System.out.println(c);
public static MixAudioSourceType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null