Convert Amazon Transcribe JSON format to SRT subtitles with configurable segmentation
Word break threshold:words
Subtitles will break at sentence boundaries or when reaching this word count
SRT Output
Example JSON Input
{
"text": "Hello world. This is a test transcription. We're going to demonstrate how this converter works with multiple sentences and different timing segments. Each sentence should ideally become its own subtitle segment.",
"chunks": [
{
"text": "Hello world.",
"start": 0.0,
"end": 1.2
},
{
"text": "This is a test transcription.",
"start": 1.2,
"end": 3.5
},
{
"text": "We're going to demonstrate",
"start": 3.5,
"end": 5.8
},
{
"text": "how this converter works",
"start": 5.8,
"end": 7.2
},
{
"text": "with multiple sentences",
"start": 7.2,
"end": 8.9
},
{
"text": "and different timing segments.",
"start": 8.9,
"end": 10.5
},
{
"text": "Each sentence should ideally become its own subtitle segment.",
"start": 10.5,
"end": 13.8
}
]
}