Interface AudioStream.AudioMappingOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AudioStream.AudioMapping
,AudioStream.AudioMapping.Builder
- Enclosing class:
- AudioStream
public static interface AudioStream.AudioMappingOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getAtomKey()
Required.com.google.protobuf.ByteString
getAtomKeyBytes()
Required.double
getGainDb()
Audio volume control in dB.int
getInputChannel()
Required.String
getInputKey()
Required.com.google.protobuf.ByteString
getInputKeyBytes()
Required.int
getInputTrack()
Required.int
getOutputChannel()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getAtomKey
String getAtomKey()
Required. The `EditAtom.key` that references the atom with audio inputs in the `Job.edit_list`.
string atom_key = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The atomKey.
-
getAtomKeyBytes
com.google.protobuf.ByteString getAtomKeyBytes()
Required. The `EditAtom.key` that references the atom with audio inputs in the `Job.edit_list`.
string atom_key = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for atomKey.
-
getInputKey
String getInputKey()
Required. The `Input.key` that identifies the input file.
string input_key = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The inputKey.
-
getInputKeyBytes
com.google.protobuf.ByteString getInputKeyBytes()
Required. The `Input.key` that identifies the input file.
string input_key = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for inputKey.
-
getInputTrack
int getInputTrack()
Required. The zero-based index of the track in the input file.
int32 input_track = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The inputTrack.
-
getInputChannel
int getInputChannel()
Required. The zero-based index of the channel in the input audio stream.
int32 input_channel = 4 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The inputChannel.
-
getOutputChannel
int getOutputChannel()
Required. The zero-based index of the channel in the output audio stream.
int32 output_channel = 5 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The outputChannel.
-
getGainDb
double getGainDb()
Audio volume control in dB. Negative values decrease volume, positive values increase. The default is 0.
double gain_db = 6;
- Returns:
- The gainDb.
-
-