public static interface Settings.Builder extends SdkPojo, CopyableBuilder<Settings.Builder,Settings>
Modifier and Type | Method and Description |
---|---|
Settings.Builder |
channelIdentification(Boolean channelIdentification)
Instructs Amazon Transcribe to process each audio channel separately and then merge the transcription output
of each channel into a single transcription.
|
Settings.Builder |
maxSpeakerLabels(Integer maxSpeakerLabels)
The maximum number of speakers to identify in the input audio.
|
Settings.Builder |
showSpeakerLabels(Boolean showSpeakerLabels)
Determines whether the transcription job uses speaker recognition to identify different speakers in the input
audio.
|
Settings.Builder |
vocabularyName(String vocabularyName)
The name of a vocabulary to use when processing the transcription job.
|
copy
applyMutation, build
Settings.Builder vocabularyName(String vocabularyName)
The name of a vocabulary to use when processing the transcription job.
vocabularyName
- The name of a vocabulary to use when processing the transcription job.Settings.Builder showSpeakerLabels(Boolean showSpeakerLabels)
Determines whether the transcription job uses speaker recognition to identify different speakers in the input
audio. Speaker recognition labels individual speakers in the audio file. If you set the
ShowSpeakerLabels
field to true, you must also set the maximum number of speaker labels
MaxSpeakerLabels
field.
You can't set both ShowSpeakerLabels
and ChannelIdentification
in the same request.
If you set both, your request returns a BadRequestException
.
showSpeakerLabels
- Determines whether the transcription job uses speaker recognition to identify different speakers in
the input audio. Speaker recognition labels individual speakers in the audio file. If you set the
ShowSpeakerLabels
field to true, you must also set the maximum number of speaker labels
MaxSpeakerLabels
field.
You can't set both ShowSpeakerLabels
and ChannelIdentification
in the same
request. If you set both, your request returns a BadRequestException
.
Settings.Builder maxSpeakerLabels(Integer maxSpeakerLabels)
The maximum number of speakers to identify in the input audio. If there are more speakers in the audio than
this number, multiple speakers will be identified as a single speaker. If you specify the
MaxSpeakerLabels
field, you must set the ShowSpeakerLabels
field to true.
maxSpeakerLabels
- The maximum number of speakers to identify in the input audio. If there are more speakers in the audio
than this number, multiple speakers will be identified as a single speaker. If you specify the
MaxSpeakerLabels
field, you must set the ShowSpeakerLabels
field to true.Settings.Builder channelIdentification(Boolean channelIdentification)
Instructs Amazon Transcribe to process each audio channel separately and then merge the transcription output of each channel into a single transcription.
Amazon Transcribe also produces a transcription of each item detected on an audio channel, including the start time and end time of the item and alternative transcriptions of the item including the confidence that Amazon Transcribe has in the transcription.
You can't set both ShowSpeakerLabels
and ChannelIdentification
in the same request.
If you set both, your request returns a BadRequestException
.
channelIdentification
- Instructs Amazon Transcribe to process each audio channel separately and then merge the transcription
output of each channel into a single transcription.
Amazon Transcribe also produces a transcription of each item detected on an audio channel, including the start time and end time of the item and alternative transcriptions of the item including the confidence that Amazon Transcribe has in the transcription.
You can't set both ShowSpeakerLabels
and ChannelIdentification
in the same
request. If you set both, your request returns a BadRequestException
.
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.