Skip to content

Commit a8c0952

Browse files
author
AWS
committed
Amazon Transcribe Service Update: This release adds support for subtitling with Amazon Transcribe batch jobs.
1 parent d78151f commit a8c0952

File tree

2 files changed

+53
-0
lines changed

2 files changed

+53
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "Amazon Transcribe Service",
4+
"contributor": "",
5+
"description": "This release adds support for subtitling with Amazon Transcribe batch jobs."
6+
}

services/transcribe/src/main/resources/codegen-resources/service-2.json

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2571,6 +2571,10 @@
25712571
"shape":"LanguageOptions",
25722572
"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> <p>To transcribe speech in Modern Standard Arabic (ar-SA), your audio or video file must be encoded at a sample rate of 16,000 Hz or higher.</p>"
25732573
},
2574+
"Subtitles":{
2575+
"shape":"Subtitles",
2576+
"documentation":"<p>Add subtitles to your batch transcription job.</p>"
2577+
},
25742578
"Tags":{
25752579
"shape":"TagList",
25762580
"documentation":"<p>Add tags to an Amazon Transcribe transcription job.</p>"
@@ -2592,6 +2596,45 @@
25922596
"member":{"shape":"NonEmptyString"},
25932597
"min":1
25942598
},
2599+
"SubtitleFileUris":{
2600+
"type":"list",
2601+
"member":{"shape":"Uri"}
2602+
},
2603+
"SubtitleFormat":{
2604+
"type":"string",
2605+
"enum":[
2606+
"vtt",
2607+
"srt"
2608+
]
2609+
},
2610+
"SubtitleFormats":{
2611+
"type":"list",
2612+
"member":{"shape":"SubtitleFormat"}
2613+
},
2614+
"Subtitles":{
2615+
"type":"structure",
2616+
"members":{
2617+
"Formats":{
2618+
"shape":"SubtitleFormats",
2619+
"documentation":"<p>Specify the output format for your subtitle file.</p>"
2620+
}
2621+
},
2622+
"documentation":"<p>Generate subtitles for your batch transcription job.</p>"
2623+
},
2624+
"SubtitlesOutput":{
2625+
"type":"structure",
2626+
"members":{
2627+
"Formats":{
2628+
"shape":"SubtitleFormats",
2629+
"documentation":"<p>Specify the output format for your subtitle file; if you select both SRT and VTT formats, two output files are genereated.</p>"
2630+
},
2631+
"SubtitleFileUris":{
2632+
"shape":"SubtitleFileUris",
2633+
"documentation":"<p>Choose the output location for your subtitle file. This location must be an S3 bucket.</p>"
2634+
}
2635+
},
2636+
"documentation":"<p>Specify the output format for your subtitle file.</p>"
2637+
},
25952638
"Tag":{
25962639
"type":"structure",
25972640
"required":[
@@ -2795,6 +2838,10 @@
27952838
"Tags":{
27962839
"shape":"TagList",
27972840
"documentation":"<p>A key:value pair assigned to a given transcription job.</p>"
2841+
},
2842+
"Subtitles":{
2843+
"shape":"SubtitlesOutput",
2844+
"documentation":"<p>Generate subtitles for your batch transcription job.</p>"
27982845
}
27992846
},
28002847
"documentation":"<p>Describes an asynchronous transcription job that was created with the <code>StartTranscriptionJob</code> operation. </p>"

0 commit comments

Comments
 (0)