Interface AudioTrackSelection.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AudioTrackSelection.Builder,AudioTrackSelection>,SdkBuilder<AudioTrackSelection.Builder,AudioTrackSelection>,SdkPojo
- Enclosing class:
- AudioTrackSelection
public static interface AudioTrackSelection.Builder extends SdkPojo, CopyableBuilder<AudioTrackSelection.Builder,AudioTrackSelection>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default AudioTrackSelection.BuilderdolbyEDecode(Consumer<AudioDolbyEDecode.Builder> dolbyEDecode)Configure decoding options for Dolby E streams - these should be Dolby E frames carried in PCM streams tagged with SMPTE-337 This is a convenience method that creates an instance of theAudioDolbyEDecode.Builderavoiding the need to create one manually viaAudioDolbyEDecode.builder().AudioTrackSelection.BuilderdolbyEDecode(AudioDolbyEDecode dolbyEDecode)Configure decoding options for Dolby E streams - these should be Dolby E frames carried in PCM streams tagged with SMPTE-337AudioTrackSelection.Buildertracks(Collection<AudioTrack> tracks)Selects one or more unique audio tracks from within a source.AudioTrackSelection.Buildertracks(Consumer<AudioTrack.Builder>... tracks)Selects one or more unique audio tracks from within a source.AudioTrackSelection.Buildertracks(AudioTrack... tracks)Selects one or more unique audio tracks from within a source.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
tracks
AudioTrackSelection.Builder tracks(Collection<AudioTrack> tracks)
Selects one or more unique audio tracks from within a source.- Parameters:
tracks- Selects one or more unique audio tracks from within a source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tracks
AudioTrackSelection.Builder tracks(AudioTrack... tracks)
Selects one or more unique audio tracks from within a source.- Parameters:
tracks- Selects one or more unique audio tracks from within a source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tracks
AudioTrackSelection.Builder tracks(Consumer<AudioTrack.Builder>... tracks)
Selects one or more unique audio tracks from within a source. This is a convenience method that creates an instance of theAudioTrack.Builderavoiding the need to create one manually viaAudioTrack.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tracks(List.) - Parameters:
tracks- a consumer that will call methods onAudioTrack.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tracks(java.util.Collection)
-
dolbyEDecode
AudioTrackSelection.Builder dolbyEDecode(AudioDolbyEDecode dolbyEDecode)
Configure decoding options for Dolby E streams - these should be Dolby E frames carried in PCM streams tagged with SMPTE-337- Parameters:
dolbyEDecode- Configure decoding options for Dolby E streams - these should be Dolby E frames carried in PCM streams tagged with SMPTE-337- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dolbyEDecode
default AudioTrackSelection.Builder dolbyEDecode(Consumer<AudioDolbyEDecode.Builder> dolbyEDecode)
Configure decoding options for Dolby E streams - these should be Dolby E frames carried in PCM streams tagged with SMPTE-337 This is a convenience method that creates an instance of theAudioDolbyEDecode.Builderavoiding the need to create one manually viaAudioDolbyEDecode.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todolbyEDecode(AudioDolbyEDecode).- Parameters:
dolbyEDecode- a consumer that will call methods onAudioDolbyEDecode.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
dolbyEDecode(AudioDolbyEDecode)
-
-