Interface PreprocessingConfig.AudioOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
PreprocessingConfig.Audio
,PreprocessingConfig.Audio.Builder
- Enclosing class:
- PreprocessingConfig
public static interface PreprocessingConfig.AudioOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getHighBoost()
Enable boosting high frequency components.boolean
getLowBoost()
Enable boosting low frequency components.double
getLufs()
Specify audio loudness normalization in loudness units relative to full scale (LUFS).-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getLufs
double getLufs()
Specify audio loudness normalization in loudness units relative to full scale (LUFS). Enter a value between -24 and 0 (the default), where: * -24 is the Advanced Television Systems Committee (ATSC A/85) standard * -23 is the EU R128 broadcast standard * -19 is the prior standard for online mono audio * -18 is the ReplayGain standard * -16 is the prior standard for stereo audio * -14 is the new online audio standard recommended by Spotify, as well as Amazon Echo * 0 disables normalization
double lufs = 1;
- Returns:
- The lufs.
-
getHighBoost
boolean getHighBoost()
Enable boosting high frequency components. The default is `false`. **Note:** This field is not supported.
bool high_boost = 2;
- Returns:
- The highBoost.
-
getLowBoost
boolean getLowBoost()
Enable boosting low frequency components. The default is `false`. **Note:** This field is not supported.
bool low_boost = 3;
- Returns:
- The lowBoost.
-
-