Skip to content

Commit

Permalink
Amazon Transcribe Service Update: Amazon Transcribe now supports auto…
Browse files Browse the repository at this point in the history
…matic language identification, which enables you to transcribe audio files without needing to know the language in advance.
  • Loading branch information
AWS committed Sep 15, 2020
1 parent 606c527 commit 076e92b
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"type": "feature",
"category": "Amazon Transcribe Service",
"description": "Amazon Transcribe now supports automatic language identification, which enables you to transcribe audio files without needing to know the language in advance."
}
Original file line number Diff line number Diff line change
Expand Up @@ -905,6 +905,7 @@
}
}
},
"IdentifiedLanguageScore":{"type":"float"},
"InputDataConfig":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -1039,6 +1040,11 @@
},
"documentation":"<p>The structure used to describe a custom language model.</p>"
},
"LanguageOptions":{
"type":"list",
"member":{"shape":"LanguageCode"},
"min":2
},
"LimitExceededException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -1630,7 +1636,6 @@
"type":"structure",
"required":[
"TranscriptionJobName",
"LanguageCode",
"Media"
],
"members":{
Expand Down Expand Up @@ -1677,6 +1682,14 @@
"ContentRedaction":{
"shape":"ContentRedaction",
"documentation":"<p>An object that contains the request parameters for content redaction.</p>"
},
"IdentifyLanguage":{
"shape":"Boolean",
"documentation":"<p>Set this field to <code>true</code> to enable automatic language identification. Automatic language identification is disabled by default. You receive a <code>BadRequestException</code> error if you enter a value for a <code>LanguageCode</code>.</p>"
},
"LanguageOptions":{
"shape":"LanguageOptions",
"documentation":"<p>An object containing a list of languages that might be present in your collection of audio files. Automatic language identification chooses a language that best matches the source audio from that list.</p>"
}
}
},
Expand Down Expand Up @@ -1766,6 +1779,18 @@
"ContentRedaction":{
"shape":"ContentRedaction",
"documentation":"<p>An object that describes content redaction settings for the transcription job.</p>"
},
"IdentifyLanguage":{
"shape":"Boolean",
"documentation":"<p>A value that shows if automatic language identification was enabled for a transcription job.</p>"
},
"LanguageOptions":{
"shape":"LanguageOptions",
"documentation":"<p>An object that shows the optional array of languages inputted for transcription jobs with automatic language identification enabled.</p>"
},
"IdentifiedLanguageScore":{
"shape":"IdentifiedLanguageScore",
"documentation":"<p>The score that Amazon Transcribe gives for the predominant language that it identified in your collection of source audio files. This score reflects the confidence that the language that Amazon Transcribe identified is the correct language.</p>"
}
},
"documentation":"<p>Describes an asynchronous transcription job that was created with the <code>StartTranscriptionJob</code> operation. </p>"
Expand Down Expand Up @@ -1828,7 +1853,15 @@
"shape":"ContentRedaction",
"documentation":"<p>The content redaction settings of the transcription job.</p>"
},
"ModelSettings":{"shape":"ModelSettings"}
"ModelSettings":{"shape":"ModelSettings"},
"IdentifyLanguage":{
"shape":"Boolean",
"documentation":"<p>Whether automatic language identification was enabled for a transcription job.</p>"
},
"IdentifiedLanguageScore":{
"shape":"IdentifiedLanguageScore",
"documentation":"<p>A value between zero and one that Amazon Transcribe assigned to the language it identified in the source audio. A higher score indicates that Amazon Transcribe is more confident in the language it identified.</p>"
}
},
"documentation":"<p>Provides a summary of information about a transcription job.</p>"
},
Expand Down

0 comments on commit 076e92b

Please sign in to comment.