com.amazonaws.services.mediaconvert.model.AudioSelector Maven / Gradle / Ivy
/*
* Copyright 2013-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package com.amazonaws.services.mediaconvert.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
* Selector for Audio
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class AudioSelector implements Serializable, Cloneable, StructuredPojo {
private String defaultSelection;
/** Specifies audio data from an external file source. */
private String externalAudioFileInput;
/** Selects a specific language code from within an audio source. */
private String languageCode;
/** Specifies a time delta in milliseconds to offset the audio from the input video. */
private Integer offset;
/** Selects a specific PID from within an audio source (e.g. 257 selects PID 0x101). */
private java.util.List pids;
/**
* Applies only when input streams contain Dolby E. Enter the program ID (according to the metadata in the audio) of
* the Dolby E program to extract from the specified track. One program extracted per audio selector. To select
* multiple programs, create multiple selectors with the same Track and different Program numbers. "All channels"
* means to ignore the program IDs and include all the channels in this selector; useful if metadata is known to be
* incorrect.
*/
private Integer programSelection;
/** Advanced audio remixing settings. */
private RemixSettings remixSettings;
private String selectorType;
/**
* Identify the channel to include in this selector by entering the 1-based track index. To combine several tracks,
* enter a comma-separated list, e.g. "1,2,3" for tracks 1-3.
*/
private java.util.List tracks;
/**
* @param defaultSelection
* @see AudioDefaultSelection
*/
public void setDefaultSelection(String defaultSelection) {
this.defaultSelection = defaultSelection;
}
/**
* @return
* @see AudioDefaultSelection
*/
public String getDefaultSelection() {
return this.defaultSelection;
}
/**
* @param defaultSelection
* @return Returns a reference to this object so that method calls can be chained together.
* @see AudioDefaultSelection
*/
public AudioSelector withDefaultSelection(String defaultSelection) {
setDefaultSelection(defaultSelection);
return this;
}
/**
* @param defaultSelection
* @return Returns a reference to this object so that method calls can be chained together.
* @see AudioDefaultSelection
*/
public AudioSelector withDefaultSelection(AudioDefaultSelection defaultSelection) {
this.defaultSelection = defaultSelection.toString();
return this;
}
/**
* Specifies audio data from an external file source.
*
* @param externalAudioFileInput
* Specifies audio data from an external file source.
*/
public void setExternalAudioFileInput(String externalAudioFileInput) {
this.externalAudioFileInput = externalAudioFileInput;
}
/**
* Specifies audio data from an external file source.
*
* @return Specifies audio data from an external file source.
*/
public String getExternalAudioFileInput() {
return this.externalAudioFileInput;
}
/**
* Specifies audio data from an external file source.
*
* @param externalAudioFileInput
* Specifies audio data from an external file source.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AudioSelector withExternalAudioFileInput(String externalAudioFileInput) {
setExternalAudioFileInput(externalAudioFileInput);
return this;
}
/**
* Selects a specific language code from within an audio source.
*
* @param languageCode
* Selects a specific language code from within an audio source.
* @see LanguageCode
*/
public void setLanguageCode(String languageCode) {
this.languageCode = languageCode;
}
/**
* Selects a specific language code from within an audio source.
*
* @return Selects a specific language code from within an audio source.
* @see LanguageCode
*/
public String getLanguageCode() {
return this.languageCode;
}
/**
* Selects a specific language code from within an audio source.
*
* @param languageCode
* Selects a specific language code from within an audio source.
* @return Returns a reference to this object so that method calls can be chained together.
* @see LanguageCode
*/
public AudioSelector withLanguageCode(String languageCode) {
setLanguageCode(languageCode);
return this;
}
/**
* Selects a specific language code from within an audio source.
*
* @param languageCode
* Selects a specific language code from within an audio source.
* @return Returns a reference to this object so that method calls can be chained together.
* @see LanguageCode
*/
public AudioSelector withLanguageCode(LanguageCode languageCode) {
this.languageCode = languageCode.toString();
return this;
}
/**
* Specifies a time delta in milliseconds to offset the audio from the input video.
*
* @param offset
* Specifies a time delta in milliseconds to offset the audio from the input video.
*/
public void setOffset(Integer offset) {
this.offset = offset;
}
/**
* Specifies a time delta in milliseconds to offset the audio from the input video.
*
* @return Specifies a time delta in milliseconds to offset the audio from the input video.
*/
public Integer getOffset() {
return this.offset;
}
/**
* Specifies a time delta in milliseconds to offset the audio from the input video.
*
* @param offset
* Specifies a time delta in milliseconds to offset the audio from the input video.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AudioSelector withOffset(Integer offset) {
setOffset(offset);
return this;
}
/**
* Selects a specific PID from within an audio source (e.g. 257 selects PID 0x101).
*
* @return Selects a specific PID from within an audio source (e.g. 257 selects PID 0x101).
*/
public java.util.List getPids() {
return pids;
}
/**
* Selects a specific PID from within an audio source (e.g. 257 selects PID 0x101).
*
* @param pids
* Selects a specific PID from within an audio source (e.g. 257 selects PID 0x101).
*/
public void setPids(java.util.Collection pids) {
if (pids == null) {
this.pids = null;
return;
}
this.pids = new java.util.ArrayList(pids);
}
/**
* Selects a specific PID from within an audio source (e.g. 257 selects PID 0x101).
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setPids(java.util.Collection)} or {@link #withPids(java.util.Collection)} if you want to override the
* existing values.
*
*
* @param pids
* Selects a specific PID from within an audio source (e.g. 257 selects PID 0x101).
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AudioSelector withPids(Integer... pids) {
if (this.pids == null) {
setPids(new java.util.ArrayList(pids.length));
}
for (Integer ele : pids) {
this.pids.add(ele);
}
return this;
}
/**
* Selects a specific PID from within an audio source (e.g. 257 selects PID 0x101).
*
* @param pids
* Selects a specific PID from within an audio source (e.g. 257 selects PID 0x101).
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AudioSelector withPids(java.util.Collection pids) {
setPids(pids);
return this;
}
/**
* Applies only when input streams contain Dolby E. Enter the program ID (according to the metadata in the audio) of
* the Dolby E program to extract from the specified track. One program extracted per audio selector. To select
* multiple programs, create multiple selectors with the same Track and different Program numbers. "All channels"
* means to ignore the program IDs and include all the channels in this selector; useful if metadata is known to be
* incorrect.
*
* @param programSelection
* Applies only when input streams contain Dolby E. Enter the program ID (according to the metadata in the
* audio) of the Dolby E program to extract from the specified track. One program extracted per audio
* selector. To select multiple programs, create multiple selectors with the same Track and different Program
* numbers. "All channels" means to ignore the program IDs and include all the channels in this selector;
* useful if metadata is known to be incorrect.
*/
public void setProgramSelection(Integer programSelection) {
this.programSelection = programSelection;
}
/**
* Applies only when input streams contain Dolby E. Enter the program ID (according to the metadata in the audio) of
* the Dolby E program to extract from the specified track. One program extracted per audio selector. To select
* multiple programs, create multiple selectors with the same Track and different Program numbers. "All channels"
* means to ignore the program IDs and include all the channels in this selector; useful if metadata is known to be
* incorrect.
*
* @return Applies only when input streams contain Dolby E. Enter the program ID (according to the metadata in the
* audio) of the Dolby E program to extract from the specified track. One program extracted per audio
* selector. To select multiple programs, create multiple selectors with the same Track and different
* Program numbers. "All channels" means to ignore the program IDs and include all the channels in this
* selector; useful if metadata is known to be incorrect.
*/
public Integer getProgramSelection() {
return this.programSelection;
}
/**
* Applies only when input streams contain Dolby E. Enter the program ID (according to the metadata in the audio) of
* the Dolby E program to extract from the specified track. One program extracted per audio selector. To select
* multiple programs, create multiple selectors with the same Track and different Program numbers. "All channels"
* means to ignore the program IDs and include all the channels in this selector; useful if metadata is known to be
* incorrect.
*
* @param programSelection
* Applies only when input streams contain Dolby E. Enter the program ID (according to the metadata in the
* audio) of the Dolby E program to extract from the specified track. One program extracted per audio
* selector. To select multiple programs, create multiple selectors with the same Track and different Program
* numbers. "All channels" means to ignore the program IDs and include all the channels in this selector;
* useful if metadata is known to be incorrect.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AudioSelector withProgramSelection(Integer programSelection) {
setProgramSelection(programSelection);
return this;
}
/**
* Advanced audio remixing settings.
*
* @param remixSettings
* Advanced audio remixing settings.
*/
public void setRemixSettings(RemixSettings remixSettings) {
this.remixSettings = remixSettings;
}
/**
* Advanced audio remixing settings.
*
* @return Advanced audio remixing settings.
*/
public RemixSettings getRemixSettings() {
return this.remixSettings;
}
/**
* Advanced audio remixing settings.
*
* @param remixSettings
* Advanced audio remixing settings.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AudioSelector withRemixSettings(RemixSettings remixSettings) {
setRemixSettings(remixSettings);
return this;
}
/**
* @param selectorType
* @see AudioSelectorType
*/
public void setSelectorType(String selectorType) {
this.selectorType = selectorType;
}
/**
* @return
* @see AudioSelectorType
*/
public String getSelectorType() {
return this.selectorType;
}
/**
* @param selectorType
* @return Returns a reference to this object so that method calls can be chained together.
* @see AudioSelectorType
*/
public AudioSelector withSelectorType(String selectorType) {
setSelectorType(selectorType);
return this;
}
/**
* @param selectorType
* @return Returns a reference to this object so that method calls can be chained together.
* @see AudioSelectorType
*/
public AudioSelector withSelectorType(AudioSelectorType selectorType) {
this.selectorType = selectorType.toString();
return this;
}
/**
* Identify the channel to include in this selector by entering the 1-based track index. To combine several tracks,
* enter a comma-separated list, e.g. "1,2,3" for tracks 1-3.
*
* @return Identify the channel to include in this selector by entering the 1-based track index. To combine several
* tracks, enter a comma-separated list, e.g. "1,2,3" for tracks 1-3.
*/
public java.util.List getTracks() {
return tracks;
}
/**
* Identify the channel to include in this selector by entering the 1-based track index. To combine several tracks,
* enter a comma-separated list, e.g. "1,2,3" for tracks 1-3.
*
* @param tracks
* Identify the channel to include in this selector by entering the 1-based track index. To combine several
* tracks, enter a comma-separated list, e.g. "1,2,3" for tracks 1-3.
*/
public void setTracks(java.util.Collection tracks) {
if (tracks == null) {
this.tracks = null;
return;
}
this.tracks = new java.util.ArrayList(tracks);
}
/**
* Identify the channel to include in this selector by entering the 1-based track index. To combine several tracks,
* enter a comma-separated list, e.g. "1,2,3" for tracks 1-3.
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setTracks(java.util.Collection)} or {@link #withTracks(java.util.Collection)} if you want to override the
* existing values.
*
*
* @param tracks
* Identify the channel to include in this selector by entering the 1-based track index. To combine several
* tracks, enter a comma-separated list, e.g. "1,2,3" for tracks 1-3.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AudioSelector withTracks(Integer... tracks) {
if (this.tracks == null) {
setTracks(new java.util.ArrayList(tracks.length));
}
for (Integer ele : tracks) {
this.tracks.add(ele);
}
return this;
}
/**
* Identify the channel to include in this selector by entering the 1-based track index. To combine several tracks,
* enter a comma-separated list, e.g. "1,2,3" for tracks 1-3.
*
* @param tracks
* Identify the channel to include in this selector by entering the 1-based track index. To combine several
* tracks, enter a comma-separated list, e.g. "1,2,3" for tracks 1-3.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AudioSelector withTracks(java.util.Collection tracks) {
setTracks(tracks);
return this;
}
/**
* Returns a string representation of this object; useful for testing and debugging.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getDefaultSelection() != null)
sb.append("DefaultSelection: ").append(getDefaultSelection()).append(",");
if (getExternalAudioFileInput() != null)
sb.append("ExternalAudioFileInput: ").append(getExternalAudioFileInput()).append(",");
if (getLanguageCode() != null)
sb.append("LanguageCode: ").append(getLanguageCode()).append(",");
if (getOffset() != null)
sb.append("Offset: ").append(getOffset()).append(",");
if (getPids() != null)
sb.append("Pids: ").append(getPids()).append(",");
if (getProgramSelection() != null)
sb.append("ProgramSelection: ").append(getProgramSelection()).append(",");
if (getRemixSettings() != null)
sb.append("RemixSettings: ").append(getRemixSettings()).append(",");
if (getSelectorType() != null)
sb.append("SelectorType: ").append(getSelectorType()).append(",");
if (getTracks() != null)
sb.append("Tracks: ").append(getTracks());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof AudioSelector == false)
return false;
AudioSelector other = (AudioSelector) obj;
if (other.getDefaultSelection() == null ^ this.getDefaultSelection() == null)
return false;
if (other.getDefaultSelection() != null && other.getDefaultSelection().equals(this.getDefaultSelection()) == false)
return false;
if (other.getExternalAudioFileInput() == null ^ this.getExternalAudioFileInput() == null)
return false;
if (other.getExternalAudioFileInput() != null && other.getExternalAudioFileInput().equals(this.getExternalAudioFileInput()) == false)
return false;
if (other.getLanguageCode() == null ^ this.getLanguageCode() == null)
return false;
if (other.getLanguageCode() != null && other.getLanguageCode().equals(this.getLanguageCode()) == false)
return false;
if (other.getOffset() == null ^ this.getOffset() == null)
return false;
if (other.getOffset() != null && other.getOffset().equals(this.getOffset()) == false)
return false;
if (other.getPids() == null ^ this.getPids() == null)
return false;
if (other.getPids() != null && other.getPids().equals(this.getPids()) == false)
return false;
if (other.getProgramSelection() == null ^ this.getProgramSelection() == null)
return false;
if (other.getProgramSelection() != null && other.getProgramSelection().equals(this.getProgramSelection()) == false)
return false;
if (other.getRemixSettings() == null ^ this.getRemixSettings() == null)
return false;
if (other.getRemixSettings() != null && other.getRemixSettings().equals(this.getRemixSettings()) == false)
return false;
if (other.getSelectorType() == null ^ this.getSelectorType() == null)
return false;
if (other.getSelectorType() != null && other.getSelectorType().equals(this.getSelectorType()) == false)
return false;
if (other.getTracks() == null ^ this.getTracks() == null)
return false;
if (other.getTracks() != null && other.getTracks().equals(this.getTracks()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getDefaultSelection() == null) ? 0 : getDefaultSelection().hashCode());
hashCode = prime * hashCode + ((getExternalAudioFileInput() == null) ? 0 : getExternalAudioFileInput().hashCode());
hashCode = prime * hashCode + ((getLanguageCode() == null) ? 0 : getLanguageCode().hashCode());
hashCode = prime * hashCode + ((getOffset() == null) ? 0 : getOffset().hashCode());
hashCode = prime * hashCode + ((getPids() == null) ? 0 : getPids().hashCode());
hashCode = prime * hashCode + ((getProgramSelection() == null) ? 0 : getProgramSelection().hashCode());
hashCode = prime * hashCode + ((getRemixSettings() == null) ? 0 : getRemixSettings().hashCode());
hashCode = prime * hashCode + ((getSelectorType() == null) ? 0 : getSelectorType().hashCode());
hashCode = prime * hashCode + ((getTracks() == null) ? 0 : getTracks().hashCode());
return hashCode;
}
@Override
public AudioSelector clone() {
try {
return (AudioSelector) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
@com.amazonaws.annotation.SdkInternalApi
@Override
public void marshall(ProtocolMarshaller protocolMarshaller) {
com.amazonaws.services.mediaconvert.model.transform.AudioSelectorMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy