Skip to content

Instantly share code, notes, and snippets.

@dannguyen
Last active October 26, 2022 15:40
Show Gist options
  • Star 31 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save dannguyen/9b8c51f5bb853209f19f1a0f18f0f74c to your computer and use it in GitHub Desktop.
Save dannguyen/9b8c51f5bb853209f19f1a0f18f0f74c to your computer and use it in GitHub Desktop.
An example of how to use command-line tools to transcribe a viral video of Cardi B

Transcribing Cardi B's political speech with AWS Transcribe and command-line tools

Inspired by the following exchange on Twitter, in which someone captures and posts a valuable video onto Twitter, but doesn't have the resources to easily transcribe it for the hearing-impaired, I thought it'd be fun to try out Amazon's AWS Transcribe service to help with this problem, and to see if I could do it all from the bash command-line like a Unix dork.

Screencap of @jordanuhl's video tweet, followed by a request for a transcript

The instructions and code below show how to use command-line tools/scripting and Amazon's Transcribe service to transcribe the audio from online video. tl;dr: AWS Transcribe is a pretty amazing service!

tl:dr AWS Transcribe is surprisingly accurate and efficient. It took about 2 minutes for it to process a 57-second clip at a cost of less than 2.5 cents. It beats the pants off of what I remember IBM Watson was capable of doing (albeit, from a few years ago).

See the transcribed text here, and the full prettified JSON response here.

Requirements

And install the following tools (using homebrew, pip, and what-have-you)

  • youtube-dl - for fetching video files from social media services
  • awscli - for accessing various AWS services, specfically S3 (for storing the video and its processed transcription) and Transcribe
  • curl - for downloading from URLs
  • jq - for parsing JSON data
  • ffmpeg - for media file conversion, e.g. extracting mp3 audio from video

The steps

The best way to learn-and-use the command-line is to practice the UNIX philosophy of do one thing and do it well, which requires breaking the process down into individual steps:

The script

So obviously you should not do this as a big ol bash script (or even bash/CLI at all). But I wrote this example up for a talk on how you can learn the CLI by messing around for fun, and this is an elaborate example of the pain you can put yourself through. Maybe later I'll show how to approach it as a novice but this is what it looks like if you're trying to not care too much, but also not wanting it to be too painful:

# Fetch that video and save it to the working directory 
# as `cardib-shutdown.mp4`
youtube-dl --output cardib-shutdown.mp4 \
    https://twitter.com/JordanUhl/status/1085669288051175424

# extract the audio as a mp3 file
ffmpeg -i cardib-shutdown.mp4 \
    -acodec libmp3lame cardib-shutdown.mp3

# upload the mp3 file to a S3 bucket 
# (and optionally make it publicly readable)
aws s3 cp --acl public-read \
    cardib-shutdown.mp3 s3://data.danwin.com/tmp/cardib-shutdown.mp3 

# Start the transcription job and specify that the transcription result data
# be saved to a given bucket, e.g. data.danwin.com
aws transcribe start-transcription-job \
    --language-code 'en-US' \
    --media-format 'mp3' \
    --transcription-job-name 'cardib-shutdown' \
    --media '{"MediaFileUri": "s3://data.danwin.com/tmp/cardib-shutdown.mp3"}' \
    --output-bucket-name 'data.danwin.com'

# optionally: use this to check the status of the job before attempting
# to download the transcript
aws transcribe get-transcription-job  \
        --transcription-job-name cardib-shutdown 

# Download the JSON at the expected S3 URL, parse it with jq
# and spit it out as raw text
curl -s http://data.danwin.com/cardib-shutdown.json \
    | jq '.results.transcripts[0].transcript' --raw-output

Transcription results

Here's what Cardi B said, according to AWS Transcribe, which you can read along with the audio or the original tweet video. I've added some paragraph breaks for easier reading, but the period/sentence-breaks are all from the AWS Transcribe service:

Hey. Yeah. I just want to remind you because there's been a little bit over three weeks, okay? It's been a little bit over three weeks. Trump is now ordering as his some missing federal government workers to go back to work without getting paid.

Now, I don't want to hear your mother focus talking about all but Obama Shut down the government for seventeen days year bitch for health care. So your grandma could check her blood pressure and your business to go take a piss in the gynecologist with no motherfucking problem.

Now, I know a lot of guys don't care because I don't work for the government or your partner. They have a job, but this shit is really fucking serious, bro. This city is crazy. Like a country is in a hell hole right now. All for fucking war. And we really need to take this serious.

I feel that we need to take some action. I don't know what type of actual base because it is not what I do, but I'm scared. This is crazy. And I really feel bad for these people. They got to go to fucking work, to not get motherfucking paid.

For convenience's sake, here's a screenshot of a transcription tweet that @JordanUhl sent out later:

The verdict? Not bad! You can see the word-by-word confidence in the full transcript JSON, but I'm impressed with the simple text output, which contains capitalization of proper nouns (e.g. "Obama") and guesses at where sentences begin, nevermind pretty good understading of Cardi B's Bronx accent. It stumbles for very fast cuss words -- "yall mother fuckas" is "your mother focus" and "check that pussy" becomes "take a piss". But it also manages to accurately transcribe fast and unusual phrases like "in the gynecologist with no motherfucking problem".

How much did it cost? AWS Transcribe charges $0.0004 per second. This clip was 57 seconds. Not counting the S3 upload/stroage fee, the price for transcription comes out to about 2.3 cents

Update [2019-01-24]

Ran a Transcribe job on President Trump's presser today, regarding the shutdown and something about working with groceries and banks. Here's how Transcribe does with multiple speakers (e.g. Trump, and the reporter):

Plaintext of the transcription, with leading/trailing words trimmed, and the reporter's question in italics -- it's pretty good, all things considered.

Ross said that he doesn't understand. What federal workers, we help getting food. You Can you understand that?

I haven't. I haven't heard the statement, but I do understand. And perhaps you should have said it differently. Local people know who they are when they go for groceries and everything else. And I think what Wilbur is probably trying to say is that they will work along. I know banks have working along. If you have mortgages, the mortgages and mortgage, the folks collecting the interest and all of those things, they work along. And that's what happens in time like this. They know the people. They've been dealing with them for years, and they work along the grocery store. And I think that's probably what Wilbur Ross. But I haven't seen a statement, but he's done a great job, I will tell you that.

Update 2019-01-24 Senate debate Sen. Michael Bennett

Thought it'd be worth trying the multiple-speaker identification on this other political video that's floating around Twitter today:

https://twitter.com/AuthorFarrah/status/1088565656327458817

The invocation, following the API's requirements that the max number of possible speakers be specified (I chose 4):

aws transcribe start-transcription-job --language-code 'en-US' --media-format mp3 \
    --settings '{"ShowSpeakerLabels": true, "MaxSpeakerLabels": 4}' \
    --transcription-job-name $FNAME  \
    --media "{\"MediaFileUri\": \"s3://data.danwin.com/tmp/${FNAME}.mp3\"}" \
    --output-bucket-name 'data.danwin.com' 

Resulting JSON output

Other stuff

{
"TranscriptionJob": {
"TranscriptionJobName": "cardib-shutdown",
"TranscriptionJobStatus": "COMPLETED",
"LanguageCode": "en-US",
"MediaSampleRateHertz": 44100,
"MediaFormat": "mp3",
"Media": {
"MediaFileUri": "s3://data.danwin.com/tmp/cardib-shutdown.mp3"
},
"Transcript": {
"TranscriptFileUri": "https://s3.amazonaws.com/data.danwin.com/cardib-shutdown.json"
},
"CreationTime": 1547795428.734,
"CompletionTime": 1547795570.152,
"Settings": {
"ChannelIdentification": false
}
}
}
{
"TranscriptionJob": {
"TranscriptionJobName": "cardib-shutdown",
"TranscriptionJobStatus": "IN_PROGRESS",
"LanguageCode": "en-US",
"MediaFormat": "mp3",
"Media": {
"MediaFileUri": "s3://data.danwin.com/tmp/cardib-shutdown.mp3"
},
"CreationTime": 1547795428.734
}
}
{
"jobName": "cardib-shutdown",
"accountId": "263510883111",
"results": {
"transcripts": [
{
"transcript": "Hey. Yeah. I just want to remind you because there's been a little bit over three weeks, okay? It's been a little bit over three weeks. Trump is now ordering as his some missing federal government workers to go back to work without getting paid. Now, I don't want to hear your mother focus talking about all but Obama Shut down the government for seventeen days year bitch for health care. So your grandma could check her blood pressure and your business to go take a piss in the gynecologist with no motherfucking problem. Now, I know a lot of guys don't care because I don't work for the government or your partner. They have a job, but this shit is really fucking serious, bro. This city is crazy. Like a country is in a hell hole right now. All for fucking war. And we really need to take this serious. I feel that we need to take some action. I don't know what type of actual base because it is not what I do, but I'm scared. This is crazy. And I really feel bad for these people. They got to go to fucking work, to not get motherfucking paid."
}
],
"items": [
{
"start_time": "0.09",
"end_time": "0.38",
"alternatives": [
{
"confidence": "0.9769",
"content": "Hey"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "0.38",
"end_time": "0.77",
"alternatives": [
{
"confidence": "1.0000",
"content": "Yeah"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "0.78",
"end_time": "0.89",
"alternatives": [
{
"confidence": "1.0000",
"content": "I"
}
],
"type": "pronunciation"
},
{
"start_time": "0.89",
"end_time": "1.09",
"alternatives": [
{
"confidence": "1.0000",
"content": "just"
}
],
"type": "pronunciation"
},
{
"start_time": "1.09",
"end_time": "1.24",
"alternatives": [
{
"confidence": "0.4934",
"content": "want"
}
],
"type": "pronunciation"
},
{
"start_time": "1.24",
"end_time": "1.3",
"alternatives": [
{
"confidence": "0.9752",
"content": "to"
}
],
"type": "pronunciation"
},
{
"start_time": "1.31",
"end_time": "1.74",
"alternatives": [
{
"confidence": "1.0000",
"content": "remind"
}
],
"type": "pronunciation"
},
{
"start_time": "1.74",
"end_time": "1.82",
"alternatives": [
{
"confidence": "0.9990",
"content": "you"
}
],
"type": "pronunciation"
},
{
"start_time": "1.83",
"end_time": "2.2",
"alternatives": [
{
"confidence": "1.0000",
"content": "because"
}
],
"type": "pronunciation"
},
{
"start_time": "2.2",
"end_time": "2.33",
"alternatives": [
{
"confidence": "0.9905",
"content": "there's"
}
],
"type": "pronunciation"
},
{
"start_time": "2.33",
"end_time": "2.52",
"alternatives": [
{
"confidence": "1.0000",
"content": "been"
}
],
"type": "pronunciation"
},
{
"start_time": "2.52",
"end_time": "2.59",
"alternatives": [
{
"confidence": "1.0000",
"content": "a"
}
],
"type": "pronunciation"
},
{
"start_time": "2.59",
"end_time": "2.81",
"alternatives": [
{
"confidence": "1.0000",
"content": "little"
}
],
"type": "pronunciation"
},
{
"start_time": "2.81",
"end_time": "2.97",
"alternatives": [
{
"confidence": "1.0000",
"content": "bit"
}
],
"type": "pronunciation"
},
{
"start_time": "2.97",
"end_time": "3.16",
"alternatives": [
{
"confidence": "1.0000",
"content": "over"
}
],
"type": "pronunciation"
},
{
"start_time": "3.16",
"end_time": "3.44",
"alternatives": [
{
"confidence": "1.0000",
"content": "three"
}
],
"type": "pronunciation"
},
{
"start_time": "3.44",
"end_time": "4.11",
"alternatives": [
{
"confidence": "1.0000",
"content": "weeks"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": ","
}
],
"type": "punctuation"
},
{
"start_time": "4.18",
"end_time": "4.72",
"alternatives": [
{
"confidence": "0.5594",
"content": "okay"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "?"
}
],
"type": "punctuation"
},
{
"start_time": "4.73",
"end_time": "4.91",
"alternatives": [
{
"confidence": "0.9994",
"content": "It's"
}
],
"type": "pronunciation"
},
{
"start_time": "4.91",
"end_time": "5.06",
"alternatives": [
{
"confidence": "1.0000",
"content": "been"
}
],
"type": "pronunciation"
},
{
"start_time": "5.06",
"end_time": "5.13",
"alternatives": [
{
"confidence": "1.0000",
"content": "a"
}
],
"type": "pronunciation"
},
{
"start_time": "5.13",
"end_time": "5.32",
"alternatives": [
{
"confidence": "1.0000",
"content": "little"
}
],
"type": "pronunciation"
},
{
"start_time": "5.32",
"end_time": "5.43",
"alternatives": [
{
"confidence": "0.5651",
"content": "bit"
}
],
"type": "pronunciation"
},
{
"start_time": "5.43",
"end_time": "5.59",
"alternatives": [
{
"confidence": "0.9845",
"content": "over"
}
],
"type": "pronunciation"
},
{
"start_time": "5.6",
"end_time": "5.82",
"alternatives": [
{
"confidence": "1.0000",
"content": "three"
}
],
"type": "pronunciation"
},
{
"start_time": "5.82",
"end_time": "6.15",
"alternatives": [
{
"confidence": "1.0000",
"content": "weeks"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "6.54",
"end_time": "7.15",
"alternatives": [
{
"confidence": "0.9779",
"content": "Trump"
}
],
"type": "pronunciation"
},
{
"start_time": "7.64",
"end_time": "7.86",
"alternatives": [
{
"confidence": "0.7704",
"content": "is"
}
],
"type": "pronunciation"
},
{
"start_time": "7.87",
"end_time": "8.3",
"alternatives": [
{
"confidence": "1.0000",
"content": "now"
}
],
"type": "pronunciation"
},
{
"start_time": "8.31",
"end_time": "8.94",
"alternatives": [
{
"confidence": "1.0000",
"content": "ordering"
}
],
"type": "pronunciation"
},
{
"start_time": "8.94",
"end_time": "9.11",
"alternatives": [
{
"confidence": "1.0000",
"content": "as"
}
],
"type": "pronunciation"
},
{
"start_time": "9.11",
"end_time": "9.28",
"alternatives": [
{
"confidence": "0.6055",
"content": "his"
}
],
"type": "pronunciation"
},
{
"start_time": "9.28",
"end_time": "9.54",
"alternatives": [
{
"confidence": "0.9152",
"content": "some"
}
],
"type": "pronunciation"
},
{
"start_time": "9.54",
"end_time": "10.1",
"alternatives": [
{
"confidence": "0.9541",
"content": "missing"
}
],
"type": "pronunciation"
},
{
"start_time": "10.43",
"end_time": "10.86",
"alternatives": [
{
"confidence": "1.0000",
"content": "federal"
}
],
"type": "pronunciation"
},
{
"start_time": "10.86",
"end_time": "11.37",
"alternatives": [
{
"confidence": "0.6420",
"content": "government"
}
],
"type": "pronunciation"
},
{
"start_time": "11.37",
"end_time": "11.72",
"alternatives": [
{
"confidence": "0.9982",
"content": "workers"
}
],
"type": "pronunciation"
},
{
"start_time": "11.72",
"end_time": "11.82",
"alternatives": [
{
"confidence": "0.9979",
"content": "to"
}
],
"type": "pronunciation"
},
{
"start_time": "11.82",
"end_time": "12.08",
"alternatives": [
{
"confidence": "1.0000",
"content": "go"
}
],
"type": "pronunciation"
},
{
"start_time": "12.08",
"end_time": "12.39",
"alternatives": [
{
"confidence": "0.9311",
"content": "back"
}
],
"type": "pronunciation"
},
{
"start_time": "12.39",
"end_time": "12.53",
"alternatives": [
{
"confidence": "0.9311",
"content": "to"
}
],
"type": "pronunciation"
},
{
"start_time": "12.53",
"end_time": "13.05",
"alternatives": [
{
"confidence": "1.0000",
"content": "work"
}
],
"type": "pronunciation"
},
{
"start_time": "13.73",
"end_time": "14.24",
"alternatives": [
{
"confidence": "0.9964",
"content": "without"
}
],
"type": "pronunciation"
},
{
"start_time": "14.24",
"end_time": "14.52",
"alternatives": [
{
"confidence": "1.0000",
"content": "getting"
}
],
"type": "pronunciation"
},
{
"start_time": "14.52",
"end_time": "14.95",
"alternatives": [
{
"confidence": "0.5376",
"content": "paid"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "15.14",
"end_time": "15.64",
"alternatives": [
{
"confidence": "1.0000",
"content": "Now"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": ","
}
],
"type": "punctuation"
},
{
"start_time": "15.65",
"end_time": "15.77",
"alternatives": [
{
"confidence": "0.9997",
"content": "I"
}
],
"type": "pronunciation"
},
{
"start_time": "15.77",
"end_time": "15.91",
"alternatives": [
{
"confidence": "0.9940",
"content": "don't"
}
],
"type": "pronunciation"
},
{
"start_time": "15.91",
"end_time": "16.04",
"alternatives": [
{
"confidence": "0.9951",
"content": "want"
}
],
"type": "pronunciation"
},
{
"start_time": "16.04",
"end_time": "16.1",
"alternatives": [
{
"confidence": "0.9992",
"content": "to"
}
],
"type": "pronunciation"
},
{
"start_time": "16.1",
"end_time": "16.21",
"alternatives": [
{
"confidence": "0.9996",
"content": "hear"
}
],
"type": "pronunciation"
},
{
"start_time": "16.21",
"end_time": "16.37",
"alternatives": [
{
"confidence": "0.6916",
"content": "your"
}
],
"type": "pronunciation"
},
{
"start_time": "16.37",
"end_time": "16.56",
"alternatives": [
{
"confidence": "0.3523",
"content": "mother"
}
],
"type": "pronunciation"
},
{
"start_time": "16.56",
"end_time": "16.84",
"alternatives": [
{
"confidence": "0.3799",
"content": "focus"
}
],
"type": "pronunciation"
},
{
"start_time": "16.84",
"end_time": "17.08",
"alternatives": [
{
"confidence": "0.9541",
"content": "talking"
}
],
"type": "pronunciation"
},
{
"start_time": "17.08",
"end_time": "17.25",
"alternatives": [
{
"confidence": "0.9243",
"content": "about"
}
],
"type": "pronunciation"
},
{
"start_time": "17.26",
"end_time": "17.54",
"alternatives": [
{
"confidence": "1.0000",
"content": "all"
}
],
"type": "pronunciation"
},
{
"start_time": "17.54",
"end_time": "17.71",
"alternatives": [
{
"confidence": "0.9833",
"content": "but"
}
],
"type": "pronunciation"
},
{
"start_time": "17.71",
"end_time": "18.13",
"alternatives": [
{
"confidence": "0.9066",
"content": "Obama"
}
],
"type": "pronunciation"
},
{
"start_time": "18.13",
"end_time": "18.34",
"alternatives": [
{
"confidence": "0.9986",
"content": "Shut"
}
],
"type": "pronunciation"
},
{
"start_time": "18.34",
"end_time": "18.51",
"alternatives": [
{
"confidence": "0.9986",
"content": "down"
}
],
"type": "pronunciation"
},
{
"start_time": "18.51",
"end_time": "18.6",
"alternatives": [
{
"confidence": "1.0000",
"content": "the"
}
],
"type": "pronunciation"
},
{
"start_time": "18.6",
"end_time": "19.0",
"alternatives": [
{
"confidence": "0.8789",
"content": "government"
}
],
"type": "pronunciation"
},
{
"start_time": "19.0",
"end_time": "19.08",
"alternatives": [
{
"confidence": "1.0000",
"content": "for"
}
],
"type": "pronunciation"
},
{
"start_time": "19.08",
"end_time": "19.46",
"alternatives": [
{
"confidence": "1.0000",
"content": "seventeen"
}
],
"type": "pronunciation"
},
{
"start_time": "19.46",
"end_time": "19.73",
"alternatives": [
{
"confidence": "1.0000",
"content": "days"
}
],
"type": "pronunciation"
},
{
"start_time": "19.87",
"end_time": "20.36",
"alternatives": [
{
"confidence": "0.6234",
"content": "year"
}
],
"type": "pronunciation"
},
{
"start_time": "20.36",
"end_time": "20.92",
"alternatives": [
{
"confidence": "1.0000",
"content": "bitch"
}
],
"type": "pronunciation"
},
{
"start_time": "21.18",
"end_time": "21.42",
"alternatives": [
{
"confidence": "1.0000",
"content": "for"
}
],
"type": "pronunciation"
},
{
"start_time": "21.42",
"end_time": "21.75",
"alternatives": [
{
"confidence": "0.7029",
"content": "health"
}
],
"type": "pronunciation"
},
{
"start_time": "21.76",
"end_time": "22.25",
"alternatives": [
{
"confidence": "0.7029",
"content": "care"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "22.32",
"end_time": "22.53",
"alternatives": [
{
"confidence": "0.9736",
"content": "So"
}
],
"type": "pronunciation"
},
{
"start_time": "22.53",
"end_time": "22.66",
"alternatives": [
{
"confidence": "0.8489",
"content": "your"
}
],
"type": "pronunciation"
},
{
"start_time": "22.66",
"end_time": "23.06",
"alternatives": [
{
"confidence": "0.7744",
"content": "grandma"
}
],
"type": "pronunciation"
},
{
"start_time": "23.06",
"end_time": "23.25",
"alternatives": [
{
"confidence": "0.9692",
"content": "could"
}
],
"type": "pronunciation"
},
{
"start_time": "23.25",
"end_time": "23.47",
"alternatives": [
{
"confidence": "0.9988",
"content": "check"
}
],
"type": "pronunciation"
},
{
"start_time": "23.47",
"end_time": "23.55",
"alternatives": [
{
"confidence": "0.7296",
"content": "her"
}
],
"type": "pronunciation"
},
{
"start_time": "23.55",
"end_time": "23.89",
"alternatives": [
{
"confidence": "1.0000",
"content": "blood"
}
],
"type": "pronunciation"
},
{
"start_time": "23.89",
"end_time": "24.51",
"alternatives": [
{
"confidence": "1.0000",
"content": "pressure"
}
],
"type": "pronunciation"
},
{
"start_time": "24.67",
"end_time": "24.79",
"alternatives": [
{
"confidence": "0.6264",
"content": "and"
}
],
"type": "pronunciation"
},
{
"start_time": "24.79",
"end_time": "24.92",
"alternatives": [
{
"confidence": "0.6246",
"content": "your"
}
],
"type": "pronunciation"
},
{
"start_time": "24.92",
"end_time": "25.2",
"alternatives": [
{
"confidence": "0.9947",
"content": "business"
}
],
"type": "pronunciation"
},
{
"start_time": "25.2",
"end_time": "25.31",
"alternatives": [
{
"confidence": "0.8231",
"content": "to"
}
],
"type": "pronunciation"
},
{
"start_time": "25.31",
"end_time": "25.48",
"alternatives": [
{
"confidence": "0.9360",
"content": "go"
}
],
"type": "pronunciation"
},
{
"start_time": "25.48",
"end_time": "25.73",
"alternatives": [
{
"confidence": "0.8723",
"content": "take"
}
],
"type": "pronunciation"
},
{
"start_time": "25.73",
"end_time": "25.85",
"alternatives": [
{
"confidence": "0.8261",
"content": "a"
}
],
"type": "pronunciation"
},
{
"start_time": "25.85",
"end_time": "26.04",
"alternatives": [
{
"confidence": "0.7526",
"content": "piss"
}
],
"type": "pronunciation"
},
{
"start_time": "26.04",
"end_time": "26.15",
"alternatives": [
{
"confidence": "0.9690",
"content": "in"
}
],
"type": "pronunciation"
},
{
"start_time": "26.15",
"end_time": "26.23",
"alternatives": [
{
"confidence": "0.9797",
"content": "the"
}
],
"type": "pronunciation"
},
{
"start_time": "26.23",
"end_time": "26.85",
"alternatives": [
{
"confidence": "0.7954",
"content": "gynecologist"
}
],
"type": "pronunciation"
},
{
"start_time": "26.85",
"end_time": "26.94",
"alternatives": [
{
"confidence": "0.4121",
"content": "with"
}
],
"type": "pronunciation"
},
{
"start_time": "26.94",
"end_time": "27.07",
"alternatives": [
{
"confidence": "0.9952",
"content": "no"
}
],
"type": "pronunciation"
},
{
"start_time": "27.07",
"end_time": "27.56",
"alternatives": [
{
"confidence": "0.9913",
"content": "motherfucking"
}
],
"type": "pronunciation"
},
{
"start_time": "27.57",
"end_time": "28.25",
"alternatives": [
{
"confidence": "1.0000",
"content": "problem"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "28.6",
"end_time": "29.21",
"alternatives": [
{
"confidence": "1.0000",
"content": "Now"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": ","
}
],
"type": "punctuation"
},
{
"start_time": "29.22",
"end_time": "29.39",
"alternatives": [
{
"confidence": "1.0000",
"content": "I"
}
],
"type": "pronunciation"
},
{
"start_time": "29.39",
"end_time": "29.6",
"alternatives": [
{
"confidence": "1.0000",
"content": "know"
}
],
"type": "pronunciation"
},
{
"start_time": "29.6",
"end_time": "29.65",
"alternatives": [
{
"confidence": "0.9913",
"content": "a"
}
],
"type": "pronunciation"
},
{
"start_time": "29.65",
"end_time": "29.82",
"alternatives": [
{
"confidence": "0.9913",
"content": "lot"
}
],
"type": "pronunciation"
},
{
"start_time": "29.82",
"end_time": "29.88",
"alternatives": [
{
"confidence": "0.9764",
"content": "of"
}
],
"type": "pronunciation"
},
{
"start_time": "29.88",
"end_time": "30.02",
"alternatives": [
{
"confidence": "0.6201",
"content": "guys"
}
],
"type": "pronunciation"
},
{
"start_time": "30.03",
"end_time": "30.25",
"alternatives": [
{
"confidence": "0.9986",
"content": "don't"
}
],
"type": "pronunciation"
},
{
"start_time": "30.25",
"end_time": "30.46",
"alternatives": [
{
"confidence": "1.0000",
"content": "care"
}
],
"type": "pronunciation"
},
{
"start_time": "30.46",
"end_time": "30.8",
"alternatives": [
{
"confidence": "1.0000",
"content": "because"
}
],
"type": "pronunciation"
},
{
"start_time": "30.81",
"end_time": "30.85",
"alternatives": [
{
"confidence": "0.8321",
"content": "I"
}
],
"type": "pronunciation"
},
{
"start_time": "30.85",
"end_time": "30.98",
"alternatives": [
{
"confidence": "0.9692",
"content": "don't"
}
],
"type": "pronunciation"
},
{
"start_time": "30.98",
"end_time": "31.16",
"alternatives": [
{
"confidence": "1.0000",
"content": "work"
}
],
"type": "pronunciation"
},
{
"start_time": "31.16",
"end_time": "31.25",
"alternatives": [
{
"confidence": "0.9996",
"content": "for"
}
],
"type": "pronunciation"
},
{
"start_time": "31.25",
"end_time": "31.35",
"alternatives": [
{
"confidence": "1.0000",
"content": "the"
}
],
"type": "pronunciation"
},
{
"start_time": "31.35",
"end_time": "31.77",
"alternatives": [
{
"confidence": "0.5647",
"content": "government"
}
],
"type": "pronunciation"
},
{
"start_time": "31.77",
"end_time": "31.87",
"alternatives": [
{
"confidence": "0.9998",
"content": "or"
}
],
"type": "pronunciation"
},
{
"start_time": "31.87",
"end_time": "32.03",
"alternatives": [
{
"confidence": "0.9808",
"content": "your"
}
],
"type": "pronunciation"
},
{
"start_time": "32.03",
"end_time": "32.41",
"alternatives": [
{
"confidence": "0.7594",
"content": "partner"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "32.41",
"end_time": "32.5",
"alternatives": [
{
"confidence": "0.8450",
"content": "They"
}
],
"type": "pronunciation"
},
{
"start_time": "32.5",
"end_time": "32.66",
"alternatives": [
{
"confidence": "1.0000",
"content": "have"
}
],
"type": "pronunciation"
},
{
"start_time": "32.66",
"end_time": "32.75",
"alternatives": [
{
"confidence": "1.0000",
"content": "a"
}
],
"type": "pronunciation"
},
{
"start_time": "32.75",
"end_time": "33.15",
"alternatives": [
{
"confidence": "1.0000",
"content": "job"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": ","
}
],
"type": "punctuation"
},
{
"start_time": "33.34",
"end_time": "33.51",
"alternatives": [
{
"confidence": "1.0000",
"content": "but"
}
],
"type": "pronunciation"
},
{
"start_time": "33.51",
"end_time": "33.67",
"alternatives": [
{
"confidence": "1.0000",
"content": "this"
}
],
"type": "pronunciation"
},
{
"start_time": "33.67",
"end_time": "33.82",
"alternatives": [
{
"confidence": "0.8953",
"content": "shit"
}
],
"type": "pronunciation"
},
{
"start_time": "33.82",
"end_time": "33.96",
"alternatives": [
{
"confidence": "0.9805",
"content": "is"
}
],
"type": "pronunciation"
},
{
"start_time": "33.96",
"end_time": "34.19",
"alternatives": [
{
"confidence": "0.8380",
"content": "really"
}
],
"type": "pronunciation"
},
{
"start_time": "34.2",
"end_time": "34.49",
"alternatives": [
{
"confidence": "0.9950",
"content": "fucking"
}
],
"type": "pronunciation"
},
{
"start_time": "34.5",
"end_time": "35.0",
"alternatives": [
{
"confidence": "0.9943",
"content": "serious"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": ","
}
],
"type": "punctuation"
},
{
"start_time": "35.0",
"end_time": "35.35",
"alternatives": [
{
"confidence": "0.9517",
"content": "bro"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "35.69",
"end_time": "35.91",
"alternatives": [
{
"confidence": "1.0000",
"content": "This"
}
],
"type": "pronunciation"
},
{
"start_time": "35.91",
"end_time": "36.11",
"alternatives": [
{
"confidence": "0.5930",
"content": "city"
}
],
"type": "pronunciation"
},
{
"start_time": "36.11",
"end_time": "36.21",
"alternatives": [
{
"confidence": "0.9769",
"content": "is"
}
],
"type": "pronunciation"
},
{
"start_time": "36.21",
"end_time": "36.74",
"alternatives": [
{
"confidence": "1.0000",
"content": "crazy"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "36.75",
"end_time": "37.02",
"alternatives": [
{
"confidence": "1.0000",
"content": "Like"
}
],
"type": "pronunciation"
},
{
"start_time": "37.03",
"end_time": "37.42",
"alternatives": [
{
"confidence": "1.0000",
"content": "a"
}
],
"type": "pronunciation"
},
{
"start_time": "37.43",
"end_time": "38.05",
"alternatives": [
{
"confidence": "1.0000",
"content": "country"
}
],
"type": "pronunciation"
},
{
"start_time": "38.84",
"end_time": "39.04",
"alternatives": [
{
"confidence": "0.8721",
"content": "is"
}
],
"type": "pronunciation"
},
{
"start_time": "39.04",
"end_time": "39.16",
"alternatives": [
{
"confidence": "0.8711",
"content": "in"
}
],
"type": "pronunciation"
},
{
"start_time": "39.16",
"end_time": "39.23",
"alternatives": [
{
"confidence": "0.9954",
"content": "a"
}
],
"type": "pronunciation"
},
{
"start_time": "39.23",
"end_time": "39.41",
"alternatives": [
{
"confidence": "0.8528",
"content": "hell"
}
],
"type": "pronunciation"
},
{
"start_time": "39.41",
"end_time": "39.6",
"alternatives": [
{
"confidence": "0.8528",
"content": "hole"
}
],
"type": "pronunciation"
},
{
"start_time": "39.61",
"end_time": "39.8",
"alternatives": [
{
"confidence": "1.0000",
"content": "right"
}
],
"type": "pronunciation"
},
{
"start_time": "39.8",
"end_time": "40.1",
"alternatives": [
{
"confidence": "1.0000",
"content": "now"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "40.11",
"end_time": "40.4",
"alternatives": [
{
"confidence": "1.0000",
"content": "All"
}
],
"type": "pronunciation"
},
{
"start_time": "40.4",
"end_time": "40.67",
"alternatives": [
{
"confidence": "0.4697",
"content": "for"
}
],
"type": "pronunciation"
},
{
"start_time": "40.67",
"end_time": "40.98",
"alternatives": [
{
"confidence": "0.9511",
"content": "fucking"
}
],
"type": "pronunciation"
},
{
"start_time": "40.98",
"end_time": "41.31",
"alternatives": [
{
"confidence": "1.0000",
"content": "war"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "41.69",
"end_time": "41.81",
"alternatives": [
{
"confidence": "0.8176",
"content": "And"
}
],
"type": "pronunciation"
},
{
"start_time": "41.81",
"end_time": "41.89",
"alternatives": [
{
"confidence": "0.9436",
"content": "we"
}
],
"type": "pronunciation"
},
{
"start_time": "41.89",
"end_time": "42.12",
"alternatives": [
{
"confidence": "0.8468",
"content": "really"
}
],
"type": "pronunciation"
},
{
"start_time": "42.12",
"end_time": "42.27",
"alternatives": [
{
"confidence": "1.0000",
"content": "need"
}
],
"type": "pronunciation"
},
{
"start_time": "42.27",
"end_time": "42.34",
"alternatives": [
{
"confidence": "1.0000",
"content": "to"
}
],
"type": "pronunciation"
},
{
"start_time": "42.34",
"end_time": "42.63",
"alternatives": [
{
"confidence": "1.0000",
"content": "take"
}
],
"type": "pronunciation"
},
{
"start_time": "42.63",
"end_time": "42.79",
"alternatives": [
{
"confidence": "1.0000",
"content": "this"
}
],
"type": "pronunciation"
},
{
"start_time": "42.79",
"end_time": "43.38",
"alternatives": [
{
"confidence": "0.7554",
"content": "serious"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "43.63",
"end_time": "43.77",
"alternatives": [
{
"confidence": "0.9593",
"content": "I"
}
],
"type": "pronunciation"
},
{
"start_time": "43.77",
"end_time": "43.92",
"alternatives": [
{
"confidence": "0.9835",
"content": "feel"
}
],
"type": "pronunciation"
},
{
"start_time": "43.92",
"end_time": "44.04",
"alternatives": [
{
"confidence": "0.5382",
"content": "that"
}
],
"type": "pronunciation"
},
{
"start_time": "44.04",
"end_time": "44.14",
"alternatives": [
{
"confidence": "0.9993",
"content": "we"
}
],
"type": "pronunciation"
},
{
"start_time": "44.14",
"end_time": "44.26",
"alternatives": [
{
"confidence": "1.0000",
"content": "need"
}
],
"type": "pronunciation"
},
{
"start_time": "44.26",
"end_time": "44.32",
"alternatives": [
{
"confidence": "1.0000",
"content": "to"
}
],
"type": "pronunciation"
},
{
"start_time": "44.33",
"end_time": "44.51",
"alternatives": [
{
"confidence": "1.0000",
"content": "take"
}
],
"type": "pronunciation"
},
{
"start_time": "44.51",
"end_time": "44.69",
"alternatives": [
{
"confidence": "1.0000",
"content": "some"
}
],
"type": "pronunciation"
},
{
"start_time": "44.69",
"end_time": "45.1",
"alternatives": [
{
"confidence": "0.9994",
"content": "action"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "45.22",
"end_time": "45.51",
"alternatives": [
{
"confidence": "1.0000",
"content": "I"
}
],
"type": "pronunciation"
},
{
"start_time": "45.51",
"end_time": "45.69",
"alternatives": [
{
"confidence": "0.9950",
"content": "don't"
}
],
"type": "pronunciation"
},
{
"start_time": "45.69",
"end_time": "45.87",
"alternatives": [
{
"confidence": "1.0000",
"content": "know"
}
],
"type": "pronunciation"
},
{
"start_time": "45.87",
"end_time": "46.17",
"alternatives": [
{
"confidence": "1.0000",
"content": "what"
}
],
"type": "pronunciation"
},
{
"start_time": "46.17",
"end_time": "46.41",
"alternatives": [
{
"confidence": "1.0000",
"content": "type"
}
],
"type": "pronunciation"
},
{
"start_time": "46.41",
"end_time": "46.48",
"alternatives": [
{
"confidence": "1.0000",
"content": "of"
}
],
"type": "pronunciation"
},
{
"start_time": "46.49",
"end_time": "46.83",
"alternatives": [
{
"confidence": "0.7523",
"content": "actual"
}
],
"type": "pronunciation"
},
{
"start_time": "46.83",
"end_time": "47.07",
"alternatives": [
{
"confidence": "0.2273",
"content": "base"
}
],
"type": "pronunciation"
},
{
"start_time": "47.07",
"end_time": "47.55",
"alternatives": [
{
"confidence": "0.9998",
"content": "because"
}
],
"type": "pronunciation"
},
{
"start_time": "48.24",
"end_time": "48.37",
"alternatives": [
{
"confidence": "0.8595",
"content": "it"
}
],
"type": "pronunciation"
},
{
"start_time": "48.37",
"end_time": "48.55",
"alternatives": [
{
"confidence": "1.0000",
"content": "is"
}
],
"type": "pronunciation"
},
{
"start_time": "48.55",
"end_time": "48.76",
"alternatives": [
{
"confidence": "0.9915",
"content": "not"
}
],
"type": "pronunciation"
},
{
"start_time": "48.76",
"end_time": "48.89",
"alternatives": [
{
"confidence": "1.0000",
"content": "what"
}
],
"type": "pronunciation"
},
{
"start_time": "48.89",
"end_time": "49.01",
"alternatives": [
{
"confidence": "1.0000",
"content": "I"
}
],
"type": "pronunciation"
},
{
"start_time": "49.02",
"end_time": "49.34",
"alternatives": [
{
"confidence": "1.0000",
"content": "do"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": ","
}
],
"type": "punctuation"
},
{
"start_time": "49.49",
"end_time": "50.06",
"alternatives": [
{
"confidence": "1.0000",
"content": "but"
}
],
"type": "pronunciation"
},
{
"start_time": "50.56",
"end_time": "50.71",
"alternatives": [
{
"confidence": "0.9841",
"content": "I'm"
}
],
"type": "pronunciation"
},
{
"start_time": "50.71",
"end_time": "51.25",
"alternatives": [
{
"confidence": "1.0000",
"content": "scared"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "52.04",
"end_time": "52.34",
"alternatives": [
{
"confidence": "1.0000",
"content": "This"
}
],
"type": "pronunciation"
},
{
"start_time": "52.34",
"end_time": "52.47",
"alternatives": [
{
"confidence": "1.0000",
"content": "is"
}
],
"type": "pronunciation"
},
{
"start_time": "52.47",
"end_time": "52.95",
"alternatives": [
{
"confidence": "1.0000",
"content": "crazy"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "52.95",
"end_time": "53.15",
"alternatives": [
{
"confidence": "1.0000",
"content": "And"
}
],
"type": "pronunciation"
},
{
"start_time": "53.15",
"end_time": "53.23",
"alternatives": [
{
"confidence": "0.9940",
"content": "I"
}
],
"type": "pronunciation"
},
{
"start_time": "53.24",
"end_time": "53.5",
"alternatives": [
{
"confidence": "0.9821",
"content": "really"
}
],
"type": "pronunciation"
},
{
"start_time": "53.5",
"end_time": "53.73",
"alternatives": [
{
"confidence": "1.0000",
"content": "feel"
}
],
"type": "pronunciation"
},
{
"start_time": "53.73",
"end_time": "54.15",
"alternatives": [
{
"confidence": "1.0000",
"content": "bad"
}
],
"type": "pronunciation"
},
{
"start_time": "54.3",
"end_time": "54.45",
"alternatives": [
{
"confidence": "1.0000",
"content": "for"
}
],
"type": "pronunciation"
},
{
"start_time": "54.45",
"end_time": "54.6",
"alternatives": [
{
"confidence": "1.0000",
"content": "these"
}
],
"type": "pronunciation"
},
{
"start_time": "54.6",
"end_time": "54.81",
"alternatives": [
{
"confidence": "1.0000",
"content": "people"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "54.81",
"end_time": "54.9",
"alternatives": [
{
"confidence": "0.7858",
"content": "They"
}
],
"type": "pronunciation"
},
{
"start_time": "54.9",
"end_time": "55.03",
"alternatives": [
{
"confidence": "0.7654",
"content": "got"
}
],
"type": "pronunciation"
},
{
"start_time": "55.03",
"end_time": "55.09",
"alternatives": [
{
"confidence": "0.7615",
"content": "to"
}
],
"type": "pronunciation"
},
{
"start_time": "55.1",
"end_time": "55.24",
"alternatives": [
{
"confidence": "1.0000",
"content": "go"
}
],
"type": "pronunciation"
},
{
"start_time": "55.24",
"end_time": "55.32",
"alternatives": [
{
"confidence": "1.0000",
"content": "to"
}
],
"type": "pronunciation"
},
{
"start_time": "55.32",
"end_time": "55.67",
"alternatives": [
{
"confidence": "1.0000",
"content": "fucking"
}
],
"type": "pronunciation"
},
{
"start_time": "55.68",
"end_time": "56.02",
"alternatives": [
{
"confidence": "1.0000",
"content": "work"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": ","
}
],
"type": "punctuation"
},
{
"start_time": "56.2",
"end_time": "56.35",
"alternatives": [
{
"confidence": "0.6794",
"content": "to"
}
],
"type": "pronunciation"
},
{
"start_time": "56.35",
"end_time": "56.57",
"alternatives": [
{
"confidence": "0.9940",
"content": "not"
}
],
"type": "pronunciation"
},
{
"start_time": "56.57",
"end_time": "56.75",
"alternatives": [
{
"confidence": "1.0000",
"content": "get"
}
],
"type": "pronunciation"
},
{
"start_time": "56.75",
"end_time": "57.32",
"alternatives": [
{
"confidence": "0.9937",
"content": "motherfucking"
}
],
"type": "pronunciation"
},
{
"start_time": "57.33",
"end_time": "57.65",
"alternatives": [
{
"confidence": "0.9516",
"content": "paid"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
}
]
},
"status": "COMPLETED"
}
{
"jobName": "cspan-senate-bennett-cruz-2019-01-24",
"accountId": "263510883111",
"results": {
"transcripts": [
{
"transcript": "Only thing that is necessary to pass a clean bill. Paying the salaries of every man and woman in the Coast Guard is for the Democratic senators to withdraw their objection. Is that correct? That's correct. Thanks. President, center from Colorado. President Seldom, um, you know, rise on this Florida contradict somebody on the other side. I've worked very hard over the years to work in a bipartisan way with the presiding officer with my Republican colleagues. But these crocodile tears and center from Texas is crying for first responders are too hard for me to take. They're too hard for me to take because when you when the senator from Texas shut this government down in twenty thirteen, my state was flooded, it was underwater. People were killed, people's houses were destroyed. They're small businesses were ruined forever. And because of the senator from Texas, this government was shut down for politics that he served two a second place finish in the Iowa caucuses but were of no help. To the first responders to the teachers to the students and schools were closed. With the federal government there was shut down because of the junior senator from Texas. Now it's his business, not my business. Why he supports the president, who wants to erect a medieval barrier on the border of Texas, who wants to use eminent domain to build that wall? Who wants to declare an unconstitutional emerging NT to build that wall? That's the business of the senator from Texas, I can assure you. Then in Colorado, if the president said he was eminent domain to erect a barrier across the state of Colorado across the Rocky mountains of Colorado, he was going to steal the property of our farmers and ranchers to build his medieval wall. There wouldn't be an elected leader from our state that would support that idea. Which goes to my final point. How ludicrous it is that this government is shut down over a promise the President United States couldn't keep. And then America is not interested in having him keep. This idea that he was gonna build a medieval wall across the southern border of Texas. Take it from the farmers and ranchers that were there and have Mexicans take for it is a drug. That's why we're here."
}
],
"speaker_labels": {
"speakers": 4,
"segments": [
{
"start_time": "0.09",
"speaker_label": "spk_0",
"end_time": "11.35",
"items": [
{
"start_time": "0.09",
"speaker_label": "spk_0",
"end_time": "0.55"
},
{
"start_time": "0.55",
"speaker_label": "spk_0",
"end_time": "0.92"
},
{
"start_time": "0.92",
"speaker_label": "spk_0",
"end_time": "1.07"
},
{
"start_time": "1.07",
"speaker_label": "spk_0",
"end_time": "1.21"
},
{
"start_time": "1.21",
"speaker_label": "spk_0",
"end_time": "1.85"
},
{
"start_time": "1.85",
"speaker_label": "spk_0",
"end_time": "1.94"
},
{
"start_time": "1.94",
"speaker_label": "spk_0",
"end_time": "2.42"
},
{
"start_time": "2.42",
"speaker_label": "spk_0",
"end_time": "2.57"
},
{
"start_time": "2.58",
"speaker_label": "spk_0",
"end_time": "3.15"
},
{
"start_time": "3.15",
"speaker_label": "spk_0",
"end_time": "3.64"
},
{
"start_time": "3.8",
"speaker_label": "spk_0",
"end_time": "4.25"
},
{
"start_time": "4.25",
"speaker_label": "spk_0",
"end_time": "4.34"
},
{
"start_time": "4.34",
"speaker_label": "spk_0",
"end_time": "5.07"
},
{
"start_time": "5.07",
"speaker_label": "spk_0",
"end_time": "5.16"
},
{
"start_time": "5.16",
"speaker_label": "spk_0",
"end_time": "5.39"
},
{
"start_time": "5.39",
"speaker_label": "spk_0",
"end_time": "5.59"
},
{
"start_time": "5.59",
"speaker_label": "spk_0",
"end_time": "5.69"
},
{
"start_time": "5.69",
"speaker_label": "spk_0",
"end_time": "5.9"
},
{
"start_time": "5.9",
"speaker_label": "spk_0",
"end_time": "5.96"
},
{
"start_time": "5.96",
"speaker_label": "spk_0",
"end_time": "6.04"
},
{
"start_time": "6.04",
"speaker_label": "spk_0",
"end_time": "6.35"
},
{
"start_time": "6.35",
"speaker_label": "spk_0",
"end_time": "6.75"
},
{
"start_time": "7.06",
"speaker_label": "spk_0",
"end_time": "7.26"
},
{
"start_time": "7.26",
"speaker_label": "spk_0",
"end_time": "7.38"
},
{
"start_time": "7.38",
"speaker_label": "spk_0",
"end_time": "7.48"
},
{
"start_time": "7.48",
"speaker_label": "spk_0",
"end_time": "8.03"
},
{
"start_time": "8.03",
"speaker_label": "spk_0",
"end_time": "8.49"
},
{
"start_time": "8.49",
"speaker_label": "spk_0",
"end_time": "8.6"
},
{
"start_time": "8.6",
"speaker_label": "spk_0",
"end_time": "9.01"
},
{
"start_time": "9.01",
"speaker_label": "spk_0",
"end_time": "9.19"
},
{
"start_time": "9.19",
"speaker_label": "spk_0",
"end_time": "9.66"
},
{
"start_time": "9.66",
"speaker_label": "spk_0",
"end_time": "9.75"
},
{
"start_time": "9.75",
"speaker_label": "spk_0",
"end_time": "9.9"
},
{
"start_time": "9.9",
"speaker_label": "spk_0",
"end_time": "10.23"
},
{
"start_time": "10.23",
"speaker_label": "spk_0",
"end_time": "10.42"
},
{
"start_time": "10.42",
"speaker_label": "spk_0",
"end_time": "10.83"
},
{
"start_time": "11.1",
"speaker_label": "spk_0",
"end_time": "11.35"
}
]
},
{
"start_time": "13.62",
"speaker_label": "spk_1",
"end_time": "17.55",
"items": [
{
"start_time": "13.62",
"speaker_label": "spk_1",
"end_time": "14.18"
},
{
"start_time": "14.19",
"speaker_label": "spk_1",
"end_time": "14.54"
},
{
"start_time": "14.54",
"speaker_label": "spk_1",
"end_time": "14.69"
},
{
"start_time": "14.69",
"speaker_label": "spk_1",
"end_time": "15.28"
},
{
"start_time": "15.29",
"speaker_label": "spk_1",
"end_time": "15.77"
},
{
"start_time": "15.77",
"speaker_label": "spk_1",
"end_time": "16.35"
},
{
"start_time": "16.74",
"speaker_label": "spk_1",
"end_time": "16.9"
},
{
"start_time": "16.91",
"speaker_label": "spk_1",
"end_time": "17.14"
},
{
"start_time": "17.14",
"speaker_label": "spk_1",
"end_time": "17.55"
}
]
},
{
"start_time": "18.54",
"speaker_label": "spk_1",
"end_time": "20.65",
"items": [
{
"start_time": "18.54",
"speaker_label": "spk_1",
"end_time": "19.24"
},
{
"start_time": "19.25",
"speaker_label": "spk_1",
"end_time": "19.42"
},
{
"start_time": "19.42",
"speaker_label": "spk_1",
"end_time": "19.6"
},
{
"start_time": "19.6",
"speaker_label": "spk_1",
"end_time": "19.92"
},
{
"start_time": "19.92",
"speaker_label": "spk_1",
"end_time": "20.65"
}
]
},
{
"start_time": "21.28",
"speaker_label": "spk_1",
"end_time": "27.15",
"items": [
{
"start_time": "21.28",
"speaker_label": "spk_1",
"end_time": "21.85"
},
{
"start_time": "21.85",
"speaker_label": "spk_1",
"end_time": "21.99"
},
{
"start_time": "21.99",
"speaker_label": "spk_1",
"end_time": "22.12"
},
{
"start_time": "22.12",
"speaker_label": "spk_1",
"end_time": "22.27"
},
{
"start_time": "22.27",
"speaker_label": "spk_1",
"end_time": "22.72"
},
{
"start_time": "22.72",
"speaker_label": "spk_1",
"end_time": "22.88"
},
{
"start_time": "23.17",
"speaker_label": "spk_1",
"end_time": "23.49"
},
{
"start_time": "23.49",
"speaker_label": "spk_1",
"end_time": "23.76"
},
{
"start_time": "23.76",
"speaker_label": "spk_1",
"end_time": "24.15"
},
{
"start_time": "24.64",
"speaker_label": "spk_1",
"end_time": "24.87"
},
{
"start_time": "24.87",
"speaker_label": "spk_1",
"end_time": "24.97"
},
{
"start_time": "24.97",
"speaker_label": "spk_1",
"end_time": "25.4"
},
{
"start_time": "25.41",
"speaker_label": "spk_1",
"end_time": "25.56"
},
{
"start_time": "25.57",
"speaker_label": "spk_1",
"end_time": "25.84"
},
{
"start_time": "25.84",
"speaker_label": "spk_1",
"end_time": "25.9"
},
{
"start_time": "25.9",
"speaker_label": "spk_1",
"end_time": "25.97"
},
{
"start_time": "25.98",
"speaker_label": "spk_1",
"end_time": "26.77"
},
{
"start_time": "26.77",
"speaker_label": "spk_1",
"end_time": "27.15"
}
]
},
{
"start_time": "27.74",
"speaker_label": "spk_1",
"end_time": "31.45",
"items": [
{
"start_time": "27.74",
"speaker_label": "spk_1",
"end_time": "27.87"
},
{
"start_time": "27.87",
"speaker_label": "spk_1",
"end_time": "27.96"
},
{
"start_time": "27.97",
"speaker_label": "spk_1",
"end_time": "28.49"
},
{
"start_time": "28.49",
"speaker_label": "spk_1",
"end_time": "29.15"
},
{
"start_time": "29.64",
"speaker_label": "spk_1",
"end_time": "29.92"
},
{
"start_time": "29.92",
"speaker_label": "spk_1",
"end_time": "30.04"
},
{
"start_time": "30.04",
"speaker_label": "spk_1",
"end_time": "30.67"
},
{
"start_time": "30.68",
"speaker_label": "spk_1",
"end_time": "31.24"
},
{
"start_time": "31.25",
"speaker_label": "spk_1",
"end_time": "31.45"
}
]
},
{
"start_time": "32.74",
"speaker_label": "spk_0",
"end_time": "39.05",
"items": [
{
"start_time": "32.74",
"speaker_label": "spk_0",
"end_time": "32.92"
},
{
"start_time": "32.92",
"speaker_label": "spk_0",
"end_time": "33.48"
},
{
"start_time": "33.48",
"speaker_label": "spk_0",
"end_time": "33.96"
},
{
"start_time": "33.96",
"speaker_label": "spk_0",
"end_time": "34.06"
},
{
"start_time": "34.07",
"speaker_label": "spk_0",
"end_time": "34.42"
},
{
"start_time": "34.42",
"speaker_label": "spk_0",
"end_time": "34.56"
},
{
"start_time": "34.56",
"speaker_label": "spk_0",
"end_time": "35.02"
},
{
"start_time": "35.02",
"speaker_label": "spk_0",
"end_time": "35.13"
},
{
"start_time": "35.13",
"speaker_label": "spk_0",
"end_time": "35.73"
},
{
"start_time": "35.74",
"speaker_label": "spk_0",
"end_time": "36.18"
},
{
"start_time": "36.47",
"speaker_label": "spk_0",
"end_time": "36.8"
},
{
"start_time": "36.8",
"speaker_label": "spk_0",
"end_time": "37.53"
},
{
"start_time": "37.53",
"speaker_label": "spk_0",
"end_time": "37.77"
},
{
"start_time": "37.78",
"speaker_label": "spk_0",
"end_time": "38.04"
},
{
"start_time": "38.04",
"speaker_label": "spk_0",
"end_time": "38.29"
},
{
"start_time": "38.29",
"speaker_label": "spk_0",
"end_time": "38.41"
},
{
"start_time": "38.41",
"speaker_label": "spk_0",
"end_time": "38.55"
},
{
"start_time": "38.55",
"speaker_label": "spk_0",
"end_time": "38.66"
},
{
"start_time": "38.66",
"speaker_label": "spk_0",
"end_time": "39.05"
}
]
},
{
"start_time": "40.14",
"speaker_label": "spk_0",
"end_time": "41.35",
"items": [
{
"start_time": "40.14",
"speaker_label": "spk_0",
"end_time": "40.29"
},
{
"start_time": "40.29",
"speaker_label": "spk_0",
"end_time": "40.51"
},
{
"start_time": "40.51",
"speaker_label": "spk_0",
"end_time": "40.74"
},
{
"start_time": "40.74",
"speaker_label": "spk_0",
"end_time": "40.86"
},
{
"start_time": "40.86",
"speaker_label": "spk_0",
"end_time": "40.96"
},
{
"start_time": "40.96",
"speaker_label": "spk_0",
"end_time": "41.06"
},
{
"start_time": "41.06",
"speaker_label": "spk_0",
"end_time": "41.35"
}
]
},
{
"start_time": "42.54",
"speaker_label": "spk_0",
"end_time": "46.45",
"items": [
{
"start_time": "42.54",
"speaker_label": "spk_0",
"end_time": "42.93"
},
{
"start_time": "42.94",
"speaker_label": "spk_0",
"end_time": "43.11"
},
{
"start_time": "43.11",
"speaker_label": "spk_0",
"end_time": "43.43"
},
{
"start_time": "43.44",
"speaker_label": "spk_0",
"end_time": "43.84"
},
{
"start_time": "43.85",
"speaker_label": "spk_0",
"end_time": "43.97"
},
{
"start_time": "43.97",
"speaker_label": "spk_0",
"end_time": "44.32"
},
{
"start_time": "44.32",
"speaker_label": "spk_0",
"end_time": "44.48"
},
{
"start_time": "44.49",
"speaker_label": "spk_0",
"end_time": "44.94"
},
{
"start_time": "44.94",
"speaker_label": "spk_0",
"end_time": "45.28"
},
{
"start_time": "45.29",
"speaker_label": "spk_0",
"end_time": "45.54"
},
{
"start_time": "45.54",
"speaker_label": "spk_0",
"end_time": "46.01"
},
{
"start_time": "46.02",
"speaker_label": "spk_0",
"end_time": "46.45"
}
]
},
{
"start_time": "47.17",
"speaker_label": "spk_0",
"end_time": "48.25",
"items": [
{
"start_time": "47.17",
"speaker_label": "spk_0",
"end_time": "47.29"
},
{
"start_time": "47.29",
"speaker_label": "spk_0",
"end_time": "47.6"
},
{
"start_time": "47.6",
"speaker_label": "spk_0",
"end_time": "48.25"
}
]
},
{
"start_time": "48.88",
"speaker_label": "spk_0",
"end_time": "50.75",
"items": [
{
"start_time": "48.88",
"speaker_label": "spk_0",
"end_time": "49.17"
},
{
"start_time": "49.18",
"speaker_label": "spk_0",
"end_time": "49.81"
},
{
"start_time": "49.97",
"speaker_label": "spk_0",
"end_time": "50.38"
},
{
"start_time": "50.39",
"speaker_label": "spk_0",
"end_time": "50.75"
}
]
},
{
"start_time": "52.54",
"speaker_label": "spk_2",
"end_time": "53.75",
"items": [
{
"start_time": "52.54",
"speaker_label": "spk_2",
"end_time": "52.71"
},
{
"start_time": "52.71",
"speaker_label": "spk_2",
"end_time": "52.89"
},
{
"start_time": "52.89",
"speaker_label": "spk_2",
"end_time": "53.75"
}
]
},
{
"start_time": "55.24",
"speaker_label": "spk_2",
"end_time": "56.35",
"items": [
{
"start_time": "55.24",
"speaker_label": "spk_2",
"end_time": "55.62"
},
{
"start_time": "55.62",
"speaker_label": "spk_2",
"end_time": "55.85"
},
{
"start_time": "55.86",
"speaker_label": "spk_2",
"end_time": "56.35"
}
]
},
{
"start_time": "57.64",
"speaker_label": "spk_2",
"end_time": "59.55",
"items": [
{
"start_time": "57.64",
"speaker_label": "spk_2",
"end_time": "58.06"
},
{
"start_time": "58.06",
"speaker_label": "spk_2",
"end_time": "58.55"
},
{
"start_time": "58.56",
"speaker_label": "spk_2",
"end_time": "58.75"
},
{
"start_time": "58.75",
"speaker_label": "spk_2",
"end_time": "59.55"
}
]
},
{
"start_time": "60.51",
"speaker_label": "spk_2",
"end_time": "63.85",
"items": [
{
"start_time": "60.51",
"speaker_label": "spk_2",
"end_time": "60.72"
},
{
"start_time": "60.72",
"speaker_label": "spk_2",
"end_time": "61.09"
},
{
"start_time": "61.09",
"speaker_label": "spk_2",
"end_time": "61.74"
},
{
"start_time": "61.75",
"speaker_label": "spk_2",
"end_time": "61.94"
},
{
"start_time": "61.95",
"speaker_label": "spk_2",
"end_time": "62.55"
},
{
"start_time": "63.04",
"speaker_label": "spk_2",
"end_time": "63.85"
}
]
},
{
"start_time": "66.5",
"speaker_label": "spk_2",
"end_time": "68.95",
"items": [
{
"start_time": "66.5",
"speaker_label": "spk_2",
"end_time": "66.71"
},
{
"start_time": "66.71",
"speaker_label": "spk_2",
"end_time": "67.25"
},
{
"start_time": "67.26",
"speaker_label": "spk_2",
"end_time": "67.5"
},
{
"start_time": "67.5",
"speaker_label": "spk_2",
"end_time": "67.6"
},
{
"start_time": "67.6",
"speaker_label": "spk_2",
"end_time": "68.15"
},
{
"start_time": "68.15",
"speaker_label": "spk_2",
"end_time": "68.34"
},
{
"start_time": "68.35",
"speaker_label": "spk_2",
"end_time": "68.95"
}
]
},
{
"start_time": "70.24",
"speaker_label": "spk_2",
"end_time": "71.95",
"items": [
{
"start_time": "70.24",
"speaker_label": "spk_2",
"end_time": "70.48"
},
{
"start_time": "70.48",
"speaker_label": "spk_2",
"end_time": "70.99"
},
{
"start_time": "71.02",
"speaker_label": "spk_2",
"end_time": "71.25"
},
{
"start_time": "71.25",
"speaker_label": "spk_2",
"end_time": "71.56"
},
{
"start_time": "71.56",
"speaker_label": "spk_2",
"end_time": "71.95"
}
]
},
{
"start_time": "72.94",
"speaker_label": "spk_2",
"end_time": "73.85",
"items": [
{
"start_time": "72.94",
"speaker_label": "spk_2",
"end_time": "73.13"
},
{
"start_time": "73.13",
"speaker_label": "spk_2",
"end_time": "73.85"
}
]
},
{
"start_time": "75.21",
"speaker_label": "spk_2",
"end_time": "79.85",
"items": [
{
"start_time": "75.21",
"speaker_label": "spk_2",
"end_time": "75.37"
},
{
"start_time": "75.37",
"speaker_label": "spk_2",
"end_time": "75.55"
},
{
"start_time": "75.55",
"speaker_label": "spk_2",
"end_time": "76.01"
},
{
"start_time": "76.02",
"speaker_label": "spk_2",
"end_time": "76.23"
},
{
"start_time": "76.23",
"speaker_label": "spk_2",
"end_time": "76.63"
},
{
"start_time": "76.76",
"speaker_label": "spk_2",
"end_time": "77.35"
},
{
"start_time": "77.84",
"speaker_label": "spk_2",
"end_time": "78.22"
},
{
"start_time": "78.23",
"speaker_label": "spk_2",
"end_time": "78.62"
},
{
"start_time": "78.62",
"speaker_label": "spk_2",
"end_time": "78.7"
},
{
"start_time": "78.7",
"speaker_label": "spk_2",
"end_time": "78.92"
},
{
"start_time": "78.92",
"speaker_label": "spk_2",
"end_time": "79.18"
},
{
"start_time": "79.18",
"speaker_label": "spk_2",
"end_time": "79.85"
}
]
},
{
"start_time": "80.84",
"speaker_label": "spk_2",
"end_time": "82.05",
"items": [
{
"start_time": "80.84",
"speaker_label": "spk_2",
"end_time": "81.03"
},
{
"start_time": "81.03",
"speaker_label": "spk_2",
"end_time": "81.21"
},
{
"start_time": "81.21",
"speaker_label": "spk_2",
"end_time": "81.35"
},
{
"start_time": "81.35",
"speaker_label": "spk_2",
"end_time": "81.77"
},
{
"start_time": "81.77",
"speaker_label": "spk_2",
"end_time": "82.05"
}
]
},
{
"start_time": "85.8",
"speaker_label": "spk_2",
"end_time": "87.95",
"items": [
{
"start_time": "85.8",
"speaker_label": "spk_2",
"end_time": "85.94"
},
{
"start_time": "85.94",
"speaker_label": "spk_2",
"end_time": "86.04"
},
{
"start_time": "86.04",
"speaker_label": "spk_2",
"end_time": "86.38"
},
{
"start_time": "86.38",
"speaker_label": "spk_2",
"end_time": "87.06"
},
{
"start_time": "87.06",
"speaker_label": "spk_2",
"end_time": "87.2"
},
{
"start_time": "87.2",
"speaker_label": "spk_2",
"end_time": "87.35"
},
{
"start_time": "87.36",
"speaker_label": "spk_2",
"end_time": "87.95"
}
]
},
{
"start_time": "88.64",
"speaker_label": "spk_2",
"end_time": "90.85",
"items": [
{
"start_time": "88.64",
"speaker_label": "spk_2",
"end_time": "88.8"
},
{
"start_time": "88.8",
"speaker_label": "spk_2",
"end_time": "88.9"
},
{
"start_time": "88.9",
"speaker_label": "spk_2",
"end_time": "89.42"
},
{
"start_time": "89.42",
"speaker_label": "spk_2",
"end_time": "89.54"
},
{
"start_time": "89.55",
"speaker_label": "spk_2",
"end_time": "90.05"
},
{
"start_time": "90.05",
"speaker_label": "spk_2",
"end_time": "90.23"
},
{
"start_time": "90.23",
"speaker_label": "spk_2",
"end_time": "90.85"
}
]
},
{
"start_time": "93.24",
"speaker_label": "spk_0",
"end_time": "94.25",
"items": [
{
"start_time": "93.24",
"speaker_label": "spk_0",
"end_time": "93.41"
},
{
"start_time": "93.41",
"speaker_label": "spk_0",
"end_time": "93.49"
},
{
"start_time": "93.49",
"speaker_label": "spk_0",
"end_time": "93.83"
},
{
"start_time": "93.83",
"speaker_label": "spk_0",
"end_time": "94.25"
}
]
},
{
"start_time": "95.0",
"speaker_label": "spk_0",
"end_time": "96.05",
"items": [
{
"start_time": "95.0",
"speaker_label": "spk_0",
"end_time": "95.13"
},
{
"start_time": "95.13",
"speaker_label": "spk_0",
"end_time": "95.3"
},
{
"start_time": "95.3",
"speaker_label": "spk_0",
"end_time": "95.59"
},
{
"start_time": "95.59",
"speaker_label": "spk_0",
"end_time": "96.05"
}
]
},
{
"start_time": "97.14",
"speaker_label": "spk_0",
"end_time": "98.95",
"items": [
{
"start_time": "97.14",
"speaker_label": "spk_0",
"end_time": "97.57"
},
{
"start_time": "97.57",
"speaker_label": "spk_0",
"end_time": "97.8"
},
{
"start_time": "98.07",
"speaker_label": "spk_0",
"end_time": "98.19"
},
{
"start_time": "98.19",
"speaker_label": "spk_0",
"end_time": "98.45"
},
{
"start_time": "98.45",
"speaker_label": "spk_0",
"end_time": "98.95"
}
]
},
{
"start_time": "99.54",
"speaker_label": "spk_0",
"end_time": "100.31",
"items": [
{
"start_time": "99.54",
"speaker_label": "spk_0",
"end_time": "99.71"
},
{
"start_time": "99.71",
"speaker_label": "spk_0",
"end_time": "100.31"
}
]
},
{
"start_time": "101.29",
"speaker_label": "spk_2",
"end_time": "103.7",
"items": [
{
"start_time": "101.29",
"speaker_label": "spk_2",
"end_time": "101.62"
},
{
"start_time": "101.63",
"speaker_label": "spk_2",
"end_time": "101.83"
},
{
"start_time": "101.83",
"speaker_label": "spk_2",
"end_time": "102.09"
},
{
"start_time": "102.09",
"speaker_label": "spk_2",
"end_time": "102.62"
},
{
"start_time": "102.62",
"speaker_label": "spk_2",
"end_time": "102.87"
},
{
"start_time": "102.87",
"speaker_label": "spk_2",
"end_time": "103.11"
},
{
"start_time": "103.11",
"speaker_label": "spk_2",
"end_time": "103.7"
}
]
},
{
"start_time": "104.44",
"speaker_label": "spk_2",
"end_time": "107.86",
"items": [
{
"start_time": "104.44",
"speaker_label": "spk_2",
"end_time": "104.84"
},
{
"start_time": "104.84",
"speaker_label": "spk_2",
"end_time": "105.04"
},
{
"start_time": "105.04",
"speaker_label": "spk_2",
"end_time": "105.58"
},
{
"start_time": "105.58",
"speaker_label": "spk_2",
"end_time": "105.64"
},
{
"start_time": "105.65",
"speaker_label": "spk_2",
"end_time": "106.35"
},
{
"start_time": "106.74",
"speaker_label": "spk_2",
"end_time": "106.88"
},
{
"start_time": "106.88",
"speaker_label": "spk_2",
"end_time": "107.21"
},
{
"start_time": "107.21",
"speaker_label": "spk_2",
"end_time": "107.36"
},
{
"start_time": "107.36",
"speaker_label": "spk_2",
"end_time": "107.86"
}
]
},
{
"start_time": "108.07",
"speaker_label": "spk_0",
"end_time": "111.26",
"items": [
{
"start_time": "108.07",
"speaker_label": "spk_0",
"end_time": "108.2"
},
{
"start_time": "108.2",
"speaker_label": "spk_0",
"end_time": "109.07"
},
{
"start_time": "109.08",
"speaker_label": "spk_0",
"end_time": "109.94"
},
{
"start_time": "109.95",
"speaker_label": "spk_0",
"end_time": "110.25"
},
{
"start_time": "110.25",
"speaker_label": "spk_0",
"end_time": "110.5"
},
{
"start_time": "110.74",
"speaker_label": "spk_0",
"end_time": "111.14"
},
{
"start_time": "111.14",
"speaker_label": "spk_0",
"end_time": "111.26"
}
]
},
{
"start_time": "111.27",
"speaker_label": "spk_2",
"end_time": "111.91",
"items": [
{
"start_time": "111.27",
"speaker_label": "spk_2",
"end_time": "111.91"
}
]
},
{
"start_time": "113.34",
"speaker_label": "spk_2",
"end_time": "115.55",
"items": [
{
"start_time": "113.34",
"speaker_label": "spk_2",
"end_time": "113.45"
},
{
"start_time": "113.45",
"speaker_label": "spk_2",
"end_time": "113.78"
},
{
"start_time": "113.78",
"speaker_label": "spk_2",
"end_time": "113.89"
},
{
"start_time": "113.89",
"speaker_label": "spk_2",
"end_time": "114.24"
},
{
"start_time": "114.25",
"speaker_label": "spk_2",
"end_time": "114.76"
},
{
"start_time": "114.77",
"speaker_label": "spk_2",
"end_time": "115.55"
}
]
},
{
"start_time": "116.09",
"speaker_label": "spk_2",
"end_time": "126.118",
"items": [
{
"start_time": "116.09",
"speaker_label": "spk_2",
"end_time": "116.25"
},
{
"start_time": "116.25",
"speaker_label": "spk_2",
"end_time": "116.64"
},
{
"start_time": "116.64",
"speaker_label": "spk_2",
"end_time": "116.92"
},
{
"start_time": "116.93",
"speaker_label": "spk_2",
"end_time": "117.4"
},
{
"start_time": "117.4",
"speaker_label": "spk_2",
"end_time": "117.52"
},
{
"start_time": "117.52",
"speaker_label": "spk_2",
"end_time": "117.84"
},
{
"start_time": "117.84",
"speaker_label": "spk_2",
"end_time": "117.96"
},
{
"start_time": "117.96",
"speaker_label": "spk_2",
"end_time": "118.75"
},
{
"start_time": "118.76",
"speaker_label": "spk_2",
"end_time": "118.92"
},
{
"start_time": "118.92",
"speaker_label": "spk_2",
"end_time": "120.12"
},
{
"start_time": "120.12",
"speaker_label": "spk_2",
"end_time": "120.56"
},
{
"start_time": "120.568",
"speaker_label": "spk_2",
"end_time": "120.988"
},
{
"start_time": "121.258",
"speaker_label": "spk_2",
"end_time": "121.388"
},
{
"start_time": "121.388",
"speaker_label": "spk_2",
"end_time": "121.728"
},
{
"start_time": "121.728",
"speaker_label": "spk_2",
"end_time": "122.018"
},
{
"start_time": "122.018",
"speaker_label": "spk_2",
"end_time": "122.628"
},
{
"start_time": "122.708",
"speaker_label": "spk_2",
"end_time": "123.108"
},
{
"start_time": "123.118",
"speaker_label": "spk_2",
"end_time": "123.268"
},
{
"start_time": "123.278",
"speaker_label": "spk_2",
"end_time": "123.758"
},
{
"start_time": "123.758",
"speaker_label": "spk_2",
"end_time": "123.868"
},
{
"start_time": "123.868",
"speaker_label": "spk_2",
"end_time": "123.958"
},
{
"start_time": "123.958",
"speaker_label": "spk_2",
"end_time": "124.338"
},
{
"start_time": "124.338",
"speaker_label": "spk_2",
"end_time": "124.498"
},
{
"start_time": "124.498",
"speaker_label": "spk_2",
"end_time": "124.938"
},
{
"start_time": "124.938",
"speaker_label": "spk_2",
"end_time": "125.058"
},
{
"start_time": "125.058",
"speaker_label": "spk_2",
"end_time": "125.288"
},
{
"start_time": "125.288",
"speaker_label": "spk_2",
"end_time": "125.908"
},
{
"start_time": "125.908",
"speaker_label": "spk_2",
"end_time": "126.118"
}
]
},
{
"start_time": "128.008",
"speaker_label": "spk_2",
"end_time": "129.318",
"items": [
{
"start_time": "128.008",
"speaker_label": "spk_2",
"end_time": "128.238"
},
{
"start_time": "128.238",
"speaker_label": "spk_2",
"end_time": "128.348"
},
{
"start_time": "128.348",
"speaker_label": "spk_2",
"end_time": "129.318"
}
]
},
{
"start_time": "130.108",
"speaker_label": "spk_2",
"end_time": "131.418",
"items": [
{
"start_time": "130.108",
"speaker_label": "spk_2",
"end_time": "130.278"
},
{
"start_time": "130.278",
"speaker_label": "spk_2",
"end_time": "130.358"
},
{
"start_time": "130.368",
"speaker_label": "spk_2",
"end_time": "131.028"
},
{
"start_time": "131.028",
"speaker_label": "spk_2",
"end_time": "131.418"
}
]
},
{
"start_time": "132.108",
"speaker_label": "spk_2",
"end_time": "137.718",
"items": [
{
"start_time": "132.108",
"speaker_label": "spk_2",
"end_time": "132.238"
},
{
"start_time": "132.238",
"speaker_label": "spk_2",
"end_time": "132.418"
},
{
"start_time": "132.808",
"speaker_label": "spk_2",
"end_time": "133.358"
},
{
"start_time": "133.368",
"speaker_label": "spk_2",
"end_time": "134.138"
},
{
"start_time": "134.318",
"speaker_label": "spk_2",
"end_time": "134.488"
},
{
"start_time": "134.488",
"speaker_label": "spk_2",
"end_time": "134.948"
},
{
"start_time": "134.948",
"speaker_label": "spk_2",
"end_time": "135.028"
},
{
"start_time": "135.028",
"speaker_label": "spk_2",
"end_time": "135.498"
},
{
"start_time": "135.498",
"speaker_label": "spk_2",
"end_time": "136.058"
},
{
"start_time": "136.248",
"speaker_label": "spk_2",
"end_time": "136.388"
},
{
"start_time": "136.388",
"speaker_label": "spk_2",
"end_time": "136.758"
},
{
"start_time": "136.758",
"speaker_label": "spk_2",
"end_time": "136.858"
},
{
"start_time": "136.858",
"speaker_label": "spk_2",
"end_time": "137.718"
}
]
},
{
"start_time": "138.248",
"speaker_label": "spk_2",
"end_time": "153.018",
"items": [
{
"start_time": "138.248",
"speaker_label": "spk_2",
"end_time": "138.788"
},
{
"start_time": "138.788",
"speaker_label": "spk_2",
"end_time": "138.908"
},
{
"start_time": "138.908",
"speaker_label": "spk_2",
"end_time": "139.308"
},
{
"start_time": "139.308",
"speaker_label": "spk_2",
"end_time": "139.738"
},
{
"start_time": "139.738",
"speaker_label": "spk_2",
"end_time": "139.848"
},
{
"start_time": "139.858",
"speaker_label": "spk_2",
"end_time": "140.588"
},
{
"start_time": "140.598",
"speaker_label": "spk_2",
"end_time": "140.778"
},
{
"start_time": "140.778",
"speaker_label": "spk_2",
"end_time": "140.998"
},
{
"start_time": "140.998",
"speaker_label": "spk_2",
"end_time": "141.158"
},
{
"start_time": "141.158",
"speaker_label": "spk_2",
"end_time": "141.268"
},
{
"start_time": "141.268",
"speaker_label": "spk_2",
"end_time": "142.058"
},
{
"start_time": "142.218",
"speaker_label": "spk_2",
"end_time": "142.438"
},
{
"start_time": "142.448",
"speaker_label": "spk_2",
"end_time": "143.298"
},
{
"start_time": "143.378",
"speaker_label": "spk_2",
"end_time": "143.618"
},
{
"start_time": "143.618",
"speaker_label": "spk_2",
"end_time": "143.848"
},
{
"start_time": "143.848",
"speaker_label": "spk_2",
"end_time": "144.408"
},
{
"start_time": "144.408",
"speaker_label": "spk_2",
"end_time": "144.628"
},
{
"start_time": "144.628",
"speaker_label": "spk_2",
"end_time": "145.198"
},
{
"start_time": "145.408",
"speaker_label": "spk_2",
"end_time": "145.558"
},
{
"start_time": "145.558",
"speaker_label": "spk_2",
"end_time": "146.048"
},
{
"start_time": "146.058",
"speaker_label": "spk_2",
"end_time": "146.328"
},
{
"start_time": "146.328",
"speaker_label": "spk_2",
"end_time": "146.928"
},
{
"start_time": "146.928",
"speaker_label": "spk_2",
"end_time": "147.508"
},
{
"start_time": "147.608",
"speaker_label": "spk_2",
"end_time": "147.828"
},
{
"start_time": "147.828",
"speaker_label": "spk_2",
"end_time": "148.138"
},
{
"start_time": "148.148",
"speaker_label": "spk_2",
"end_time": "148.318"
},
{
"start_time": "148.318",
"speaker_label": "spk_2",
"end_time": "148.488"
},
{
"start_time": "148.488",
"speaker_label": "spk_2",
"end_time": "149.118"
},
{
"start_time": "149.118",
"speaker_label": "spk_2",
"end_time": "149.818"
},
{
"start_time": "149.928",
"speaker_label": "spk_2",
"end_time": "150.168"
},
{
"start_time": "150.168",
"speaker_label": "spk_2",
"end_time": "150.348"
},
{
"start_time": "150.348",
"speaker_label": "spk_2",
"end_time": "150.918"
},
{
"start_time": "151.068",
"speaker_label": "spk_2",
"end_time": "151.198"
},
{
"start_time": "151.198",
"speaker_label": "spk_2",
"end_time": "151.358"
},
{
"start_time": "151.358",
"speaker_label": "spk_2",
"end_time": "151.858"
},
{
"start_time": "151.868",
"speaker_label": "spk_2",
"end_time": "152.228"
},
{
"start_time": "152.378",
"speaker_label": "spk_2",
"end_time": "153.018"
}
]
},
{
"start_time": "157.308",
"speaker_label": "spk_2",
"end_time": "164.188",
"items": [
{
"start_time": "157.308",
"speaker_label": "spk_2",
"end_time": "157.558"
},
{
"start_time": "157.558",
"speaker_label": "spk_2",
"end_time": "157.798"
},
{
"start_time": "157.798",
"speaker_label": "spk_2",
"end_time": "157.908"
},
{
"start_time": "157.908",
"speaker_label": "spk_2",
"end_time": "158.118"
},
{
"start_time": "158.128",
"speaker_label": "spk_2",
"end_time": "158.558"
},
{
"start_time": "158.568",
"speaker_label": "spk_2",
"end_time": "158.918"
},
{
"start_time": "159.208",
"speaker_label": "spk_2",
"end_time": "159.628"
},
{
"start_time": "159.638",
"speaker_label": "spk_2",
"end_time": "160.608"
},
{
"start_time": "160.728",
"speaker_label": "spk_2",
"end_time": "160.958"
},
{
"start_time": "160.958",
"speaker_label": "spk_2",
"end_time": "161.418"
},
{
"start_time": "161.658",
"speaker_label": "spk_2",
"end_time": "161.848"
},
{
"start_time": "161.858",
"speaker_label": "spk_2",
"end_time": "162.078"
},
{
"start_time": "162.078",
"speaker_label": "spk_2",
"end_time": "162.558"
},
{
"start_time": "162.568",
"speaker_label": "spk_2",
"end_time": "162.738"
},
{
"start_time": "162.738",
"speaker_label": "spk_2",
"end_time": "163.058"
},
{
"start_time": "163.058",
"speaker_label": "spk_2",
"end_time": "163.468"
},
{
"start_time": "163.658",
"speaker_label": "spk_2",
"end_time": "164.068"
},
{
"start_time": "164.068",
"speaker_label": "spk_2",
"end_time": "164.188"
}
]
},
{
"start_time": "164.188",
"speaker_label": "spk_3",
"end_time": "167.418",
"items": [
{
"start_time": "164.188",
"speaker_label": "spk_3",
"end_time": "164.818"
},
{
"start_time": "164.988",
"speaker_label": "spk_3",
"end_time": "165.128"
},
{
"start_time": "165.128",
"speaker_label": "spk_3",
"end_time": "165.608"
},
{
"start_time": "165.608",
"speaker_label": "spk_3",
"end_time": "165.928"
},
{
"start_time": "165.928",
"speaker_label": "spk_3",
"end_time": "166.358"
},
{
"start_time": "166.538",
"speaker_label": "spk_3",
"end_time": "166.928"
},
{
"start_time": "166.938",
"speaker_label": "spk_3",
"end_time": "167.418"
}
]
},
{
"start_time": "170.168",
"speaker_label": "spk_3",
"end_time": "172.868",
"items": [
{
"start_time": "170.168",
"speaker_label": "spk_3",
"end_time": "170.348"
},
{
"start_time": "170.348",
"speaker_label": "spk_3",
"end_time": "170.478"
},
{
"start_time": "170.478",
"speaker_label": "spk_3",
"end_time": "171.068"
},
{
"start_time": "171.068",
"speaker_label": "spk_3",
"end_time": "171.248"
},
{
"start_time": "171.248",
"speaker_label": "spk_3",
"end_time": "171.538"
},
{
"start_time": "171.538",
"speaker_label": "spk_3",
"end_time": "172.138"
},
{
"start_time": "172.138",
"speaker_label": "spk_3",
"end_time": "172.238"
},
{
"start_time": "172.238",
"speaker_label": "spk_3",
"end_time": "172.628"
},
{
"start_time": "172.638",
"speaker_label": "spk_3",
"end_time": "172.868"
}
]
},
{
"start_time": "172.878",
"speaker_label": "spk_2",
"end_time": "173.218",
"items": [
{
"start_time": "172.878",
"speaker_label": "spk_2",
"end_time": "173.218"
}
]
},
{
"start_time": "175.308",
"speaker_label": "spk_2",
"end_time": "180.768",
"items": [
{
"start_time": "175.308",
"speaker_label": "spk_2",
"end_time": "175.598"
},
{
"start_time": "175.598",
"speaker_label": "spk_2",
"end_time": "176.048"
},
{
"start_time": "176.048",
"speaker_label": "spk_2",
"end_time": "176.188"
},
{
"start_time": "176.188",
"speaker_label": "spk_2",
"end_time": "176.288"
},
{
"start_time": "176.288",
"speaker_label": "spk_2",
"end_time": "176.458"
},
{
"start_time": "176.458",
"speaker_label": "spk_2",
"end_time": "176.798"
},
{
"start_time": "176.978",
"speaker_label": "spk_2",
"end_time": "177.368"
},
{
"start_time": "177.368",
"speaker_label": "spk_2",
"end_time": "177.428"
},
{
"start_time": "177.428",
"speaker_label": "spk_2",
"end_time": "177.898"
},
{
"start_time": "177.898",
"speaker_label": "spk_2",
"end_time": "178.388"
},
{
"start_time": "178.388",
"speaker_label": "spk_2",
"end_time": "178.928"
},
{
"start_time": "179.128",
"speaker_label": "spk_2",
"end_time": "179.268"
},
{
"start_time": "179.268",
"speaker_label": "spk_2",
"end_time": "179.658"
},
{
"start_time": "179.658",
"speaker_label": "spk_2",
"end_time": "180.018"
},
{
"start_time": "180.018",
"speaker_label": "spk_2",
"end_time": "180.118"
},
{
"start_time": "180.128",
"speaker_label": "spk_2",
"end_time": "180.768"
}
]
},
{
"start_time": "183.208",
"speaker_label": "spk_2",
"end_time": "185.648",
"items": [
{
"start_time": "183.208",
"speaker_label": "spk_2",
"end_time": "183.608"
},
{
"start_time": "183.608",
"speaker_label": "spk_2",
"end_time": "183.788"
},
{
"start_time": "183.788",
"speaker_label": "spk_2",
"end_time": "184.098"
},
{
"start_time": "184.108",
"speaker_label": "spk_2",
"end_time": "184.238"
},
{
"start_time": "184.238",
"speaker_label": "spk_2",
"end_time": "184.728"
},
{
"start_time": "184.728",
"speaker_label": "spk_2",
"end_time": "184.868"
},
{
"start_time": "184.868",
"speaker_label": "spk_2",
"end_time": "185.318"
},
{
"start_time": "185.318",
"speaker_label": "spk_2",
"end_time": "185.498"
},
{
"start_time": "185.498",
"speaker_label": "spk_2",
"end_time": "185.648"
}
]
},
{
"start_time": "185.648",
"speaker_label": "spk_3",
"end_time": "189.808",
"items": [
{
"start_time": "185.648",
"speaker_label": "spk_3",
"end_time": "186.188"
},
{
"start_time": "186.348",
"speaker_label": "spk_3",
"end_time": "186.958"
},
{
"start_time": "187.078",
"speaker_label": "spk_3",
"end_time": "187.438"
},
{
"start_time": "187.448",
"speaker_label": "spk_3",
"end_time": "188.108"
},
{
"start_time": "188.108",
"speaker_label": "spk_3",
"end_time": "188.408"
},
{
"start_time": "188.418",
"speaker_label": "spk_3",
"end_time": "188.708"
},
{
"start_time": "188.708",
"speaker_label": "spk_3",
"end_time": "188.818"
},
{
"start_time": "188.968",
"speaker_label": "spk_3",
"end_time": "189.198"
},
{
"start_time": "189.198",
"speaker_label": "spk_3",
"end_time": "189.328"
},
{
"start_time": "189.338",
"speaker_label": "spk_3",
"end_time": "189.808"
}
]
},
{
"start_time": "190.608",
"speaker_label": "spk_3",
"end_time": "192.498",
"items": [
{
"start_time": "190.608",
"speaker_label": "spk_3",
"end_time": "191.018"
},
{
"start_time": "191.018",
"speaker_label": "spk_3",
"end_time": "191.388"
},
{
"start_time": "191.388",
"speaker_label": "spk_3",
"end_time": "191.658"
},
{
"start_time": "191.658",
"speaker_label": "spk_3",
"end_time": "192.498"
}
]
}
]
},
"items": [
{
"start_time": "0.09",
"end_time": "0.55",
"alternatives": [
{
"confidence": "0.8692",
"content": "Only"
}
],
"type": "pronunciation"
},
{
"start_time": "0.55",
"end_time": "0.92",
"alternatives": [
{
"confidence": "1.0",
"content": "thing"
}
],
"type": "pronunciation"
},
{
"start_time": "0.92",
"end_time": "1.07",
"alternatives": [
{
"confidence": "1.0",
"content": "that"
}
],
"type": "pronunciation"
},
{
"start_time": "1.07",
"end_time": "1.21",
"alternatives": [
{
"confidence": "1.0",
"content": "is"
}
],
"type": "pronunciation"
},
{
"start_time": "1.21",
"end_time": "1.85",
"alternatives": [
{
"confidence": "1.0",
"content": "necessary"
}
],
"type": "pronunciation"
},
{
"start_time": "1.85",
"end_time": "1.94",
"alternatives": [
{
"confidence": "1.0",
"content": "to"
}
],
"type": "pronunciation"
},
{
"start_time": "1.94",
"end_time": "2.42",
"alternatives": [
{
"confidence": "1.0",
"content": "pass"
}
],
"type": "pronunciation"
},
{
"start_time": "2.42",
"end_time": "2.57",
"alternatives": [
{
"confidence": "1.0",
"content": "a"
}
],
"type": "pronunciation"
},
{
"start_time": "2.58",
"end_time": "3.15",
"alternatives": [
{
"confidence": "1.0",
"content": "clean"
}
],
"type": "pronunciation"
},
{
"start_time": "3.15",
"end_time": "3.64",
"alternatives": [
{
"confidence": "1.0",
"content": "bill"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "3.8",
"end_time": "4.25",
"alternatives": [
{
"confidence": "1.0",
"content": "Paying"
}
],
"type": "pronunciation"
},
{
"start_time": "4.25",
"end_time": "4.34",
"alternatives": [
{
"confidence": "1.0",
"content": "the"
}
],
"type": "pronunciation"
},
{
"start_time": "4.34",
"end_time": "5.07",
"alternatives": [
{
"confidence": "1.0",
"content": "salaries"
}
],
"type": "pronunciation"
},
{
"start_time": "5.07",
"end_time": "5.16",
"alternatives": [
{
"confidence": "1.0",
"content": "of"
}
],
"type": "pronunciation"
},
{
"start_time": "5.16",
"end_time": "5.39",
"alternatives": [
{
"confidence": "1.0",
"content": "every"
}
],
"type": "pronunciation"
},
{
"start_time": "5.39",
"end_time": "5.59",
"alternatives": [
{
"confidence": "1.0",
"content": "man"
}
],
"type": "pronunciation"
},
{
"start_time": "5.59",
"end_time": "5.69",
"alternatives": [
{
"confidence": "1.0",
"content": "and"
}
],
"type": "pronunciation"
},
{
"start_time": "5.69",
"end_time": "5.9",
"alternatives": [
{
"confidence": "1.0",
"content": "woman"
}
],
"type": "pronunciation"
},
{
"start_time": "5.9",
"end_time": "5.96",
"alternatives": [
{
"confidence": "1.0",
"content": "in"
}
],
"type": "pronunciation"
},
{
"start_time": "5.96",
"end_time": "6.04",
"alternatives": [
{
"confidence": "1.0",
"content": "the"
}
],
"type": "pronunciation"
},
{
"start_time": "6.04",
"end_time": "6.35",
"alternatives": [
{
"confidence": "0.9858",
"content": "Coast"
}
],
"type": "pronunciation"
},
{
"start_time": "6.35",
"end_time": "6.75",
"alternatives": [
{
"confidence": "0.9858",
"content": "Guard"
}
],
"type": "pronunciation"
},
{
"start_time": "7.06",
"end_time": "7.26",
"alternatives": [
{
"confidence": "1.0",
"content": "is"
}
],
"type": "pronunciation"
},
{
"start_time": "7.26",
"end_time": "7.38",
"alternatives": [
{
"confidence": "0.9959",
"content": "for"
}
],
"type": "pronunciation"
},
{
"start_time": "7.38",
"end_time": "7.48",
"alternatives": [
{
"confidence": "1.0",
"content": "the"
}
],
"type": "pronunciation"
},
{
"start_time": "7.48",
"end_time": "8.03",
"alternatives": [
{
"confidence": "1.0",
"content": "Democratic"
}
],
"type": "pronunciation"
},
{
"start_time": "8.03",
"end_time": "8.49",
"alternatives": [
{
"confidence": "1.0",
"content": "senators"
}
],
"type": "pronunciation"
},
{
"start_time": "8.49",
"end_time": "8.6",
"alternatives": [
{
"confidence": "1.0",
"content": "to"
}
],
"type": "pronunciation"
},
{
"start_time": "8.6",
"end_time": "9.01",
"alternatives": [
{
"confidence": "0.9983",
"content": "withdraw"
}
],
"type": "pronunciation"
},
{
"start_time": "9.01",
"end_time": "9.19",
"alternatives": [
{
"confidence": "0.9756",
"content": "their"
}
],
"type": "pronunciation"
},
{
"start_time": "9.19",
"end_time": "9.66",
"alternatives": [
{
"confidence": "1.0",
"content": "objection"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "9.66",
"end_time": "9.75",
"alternatives": [
{
"confidence": "1.0",
"content": "Is"
}
],
"type": "pronunciation"
},
{
"start_time": "9.75",
"end_time": "9.9",
"alternatives": [
{
"confidence": "1.0",
"content": "that"
}
],
"type": "pronunciation"
},
{
"start_time": "9.9",
"end_time": "10.23",
"alternatives": [
{
"confidence": "1.0",
"content": "correct"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "?"
}
],
"type": "punctuation"
},
{
"start_time": "10.23",
"end_time": "10.42",
"alternatives": [
{
"confidence": "1.0",
"content": "That's"
}
],
"type": "pronunciation"
},
{
"start_time": "10.42",
"end_time": "10.83",
"alternatives": [
{
"confidence": "1.0",
"content": "correct"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "11.1",
"end_time": "11.35",
"alternatives": [
{
"confidence": "0.5185",
"content": "Thanks"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "13.62",
"end_time": "14.18",
"alternatives": [
{
"confidence": "0.9122",
"content": "President"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": ","
}
],
"type": "punctuation"
},
{
"start_time": "14.19",
"end_time": "14.54",
"alternatives": [
{
"confidence": "0.5217",
"content": "center"
}
],
"type": "pronunciation"
},
{
"start_time": "14.54",
"end_time": "14.69",
"alternatives": [
{
"confidence": "1.0",
"content": "from"
}
],
"type": "pronunciation"
},
{
"start_time": "14.69",
"end_time": "15.28",
"alternatives": [
{
"confidence": "0.6428",
"content": "Colorado"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "15.29",
"end_time": "15.77",
"alternatives": [
{
"confidence": "0.8928",
"content": "President"
}
],
"type": "pronunciation"
},
{
"start_time": "15.77",
"end_time": "16.35",
"alternatives": [
{
"confidence": "1.0",
"content": "Seldom"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": ","
}
],
"type": "punctuation"
},
{
"start_time": "16.74",
"end_time": "16.9",
"alternatives": [
{
"confidence": "0.5174",
"content": "um"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": ","
}
],
"type": "punctuation"
},
{
"start_time": "16.91",
"end_time": "17.14",
"alternatives": [
{
"confidence": "0.9988",
"content": "you"
}
],
"type": "pronunciation"
},
{
"start_time": "17.14",
"end_time": "17.55",
"alternatives": [
{
"confidence": "0.9992",
"content": "know"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": ","
}
],
"type": "punctuation"
},
{
"start_time": "18.54",
"end_time": "19.24",
"alternatives": [
{
"confidence": "0.9796",
"content": "rise"
}
],
"type": "pronunciation"
},
{
"start_time": "19.25",
"end_time": "19.42",
"alternatives": [
{
"confidence": "1.0",
"content": "on"
}
],
"type": "pronunciation"
},
{
"start_time": "19.42",
"end_time": "19.6",
"alternatives": [
{
"confidence": "1.0",
"content": "this"
}
],
"type": "pronunciation"
},
{
"start_time": "19.6",
"end_time": "19.92",
"alternatives": [
{
"confidence": "0.9553",
"content": "Florida"
}
],
"type": "pronunciation"
},
{
"start_time": "19.92",
"end_time": "20.65",
"alternatives": [
{
"confidence": "0.9475",
"content": "contradict"
}
],
"type": "pronunciation"
},
{
"start_time": "21.28",
"end_time": "21.85",
"alternatives": [
{
"confidence": "1.0",
"content": "somebody"
}
],
"type": "pronunciation"
},
{
"start_time": "21.85",
"end_time": "21.99",
"alternatives": [
{
"confidence": "1.0",
"content": "on"
}
],
"type": "pronunciation"
},
{
"start_time": "21.99",
"end_time": "22.12",
"alternatives": [
{
"confidence": "1.0",
"content": "the"
}
],
"type": "pronunciation"
},
{
"start_time": "22.12",
"end_time": "22.27",
"alternatives": [
{
"confidence": "1.0",
"content": "other"
}
],
"type": "pronunciation"
},
{
"start_time": "22.27",
"end_time": "22.72",
"alternatives": [
{
"confidence": "1.0",
"content": "side"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "22.72",
"end_time": "22.88",
"alternatives": [
{
"confidence": "0.7509",
"content": "I've"
}
],
"type": "pronunciation"
},
{
"start_time": "23.17",
"end_time": "23.49",
"alternatives": [
{
"confidence": "0.8369",
"content": "worked"
}
],
"type": "pronunciation"
},
{
"start_time": "23.49",
"end_time": "23.76",
"alternatives": [
{
"confidence": "1.0",
"content": "very"
}
],
"type": "pronunciation"
},
{
"start_time": "23.76",
"end_time": "24.15",
"alternatives": [
{
"confidence": "1.0",
"content": "hard"
}
],
"type": "pronunciation"
},
{
"start_time": "24.64",
"end_time": "24.87",
"alternatives": [
{
"confidence": "1.0",
"content": "over"
}
],
"type": "pronunciation"
},
{
"start_time": "24.87",
"end_time": "24.97",
"alternatives": [
{
"confidence": "1.0",
"content": "the"
}
],
"type": "pronunciation"
},
{
"start_time": "24.97",
"end_time": "25.4",
"alternatives": [
{
"confidence": "1.0",
"content": "years"
}
],
"type": "pronunciation"
},
{
"start_time": "25.41",
"end_time": "25.56",
"alternatives": [
{
"confidence": "1.0",
"content": "to"
}
],
"type": "pronunciation"
},
{
"start_time": "25.57",
"end_time": "25.84",
"alternatives": [
{
"confidence": "1.0",
"content": "work"
}
],
"type": "pronunciation"
},
{
"start_time": "25.84",
"end_time": "25.9",
"alternatives": [
{
"confidence": "1.0",
"content": "in"
}
],
"type": "pronunciation"
},
{
"start_time": "25.9",
"end_time": "25.97",
"alternatives": [
{
"confidence": "1.0",
"content": "a"
}
],
"type": "pronunciation"
},
{
"start_time": "25.98",
"end_time": "26.77",
"alternatives": [
{
"confidence": "1.0",
"content": "bipartisan"
}
],
"type": "pronunciation"
},
{
"start_time": "26.77",
"end_time": "27.15",
"alternatives": [
{
"confidence": "1.0",
"content": "way"
}
],
"type": "pronunciation"
},
{
"start_time": "27.74",
"end_time": "27.87",
"alternatives": [
{
"confidence": "0.9874",
"content": "with"
}
],
"type": "pronunciation"
},
{
"start_time": "27.87",
"end_time": "27.96",
"alternatives": [
{
"confidence": "0.9972",
"content": "the"
}
],
"type": "pronunciation"
},
{
"start_time": "27.97",
"end_time": "28.49",
"alternatives": [
{
"confidence": "1.0",
"content": "presiding"
}
],
"type": "pronunciation"
},
{
"start_time": "28.49",
"end_time": "29.15",
"alternatives": [
{
"confidence": "1.0",
"content": "officer"
}
],
"type": "pronunciation"
},
{
"start_time": "29.64",
"end_time": "29.92",
"alternatives": [
{
"confidence": "1.0",
"content": "with"
}
],
"type": "pronunciation"
},
{
"start_time": "29.92",
"end_time": "30.04",
"alternatives": [
{
"confidence": "1.0",
"content": "my"
}
],
"type": "pronunciation"
},
{
"start_time": "30.04",
"end_time": "30.67",
"alternatives": [
{
"confidence": "1.0",
"content": "Republican"
}
],
"type": "pronunciation"
},
{
"start_time": "30.68",
"end_time": "31.24",
"alternatives": [
{
"confidence": "1.0",
"content": "colleagues"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "31.25",
"end_time": "31.45",
"alternatives": [
{
"confidence": "0.9739",
"content": "But"
}
],
"type": "pronunciation"
},
{
"start_time": "32.74",
"end_time": "32.92",
"alternatives": [
{
"confidence": "0.9603",
"content": "these"
}
],
"type": "pronunciation"
},
{
"start_time": "32.92",
"end_time": "33.48",
"alternatives": [
{
"confidence": "1.0",
"content": "crocodile"
}
],
"type": "pronunciation"
},
{
"start_time": "33.48",
"end_time": "33.96",
"alternatives": [
{
"confidence": "1.0",
"content": "tears"
}
],
"type": "pronunciation"
},
{
"start_time": "33.96",
"end_time": "34.06",
"alternatives": [
{
"confidence": "0.7214",
"content": "and"
}
],
"type": "pronunciation"
},
{
"start_time": "34.07",
"end_time": "34.42",
"alternatives": [
{
"confidence": "0.5884",
"content": "center"
}
],
"type": "pronunciation"
},
{
"start_time": "34.42",
"end_time": "34.56",
"alternatives": [
{
"confidence": "1.0",
"content": "from"
}
],
"type": "pronunciation"
},
{
"start_time": "34.56",
"end_time": "35.02",
"alternatives": [
{
"confidence": "0.9973",
"content": "Texas"
}
],
"type": "pronunciation"
},
{
"start_time": "35.02",
"end_time": "35.13",
"alternatives": [
{
"confidence": "0.9973",
"content": "is"
}
],
"type": "pronunciation"
},
{
"start_time": "35.13",
"end_time": "35.73",
"alternatives": [
{
"confidence": "1.0",
"content": "crying"
}
],
"type": "pronunciation"
},
{
"start_time": "35.74",
"end_time": "36.18",
"alternatives": [
{
"confidence": "1.0",
"content": "for"
}
],
"type": "pronunciation"
},
{
"start_time": "36.47",
"end_time": "36.8",
"alternatives": [
{
"confidence": "1.0",
"content": "first"
}
],
"type": "pronunciation"
},
{
"start_time": "36.8",
"end_time": "37.53",
"alternatives": [
{
"confidence": "0.99",
"content": "responders"
}
],
"type": "pronunciation"
},
{
"start_time": "37.53",
"end_time": "37.77",
"alternatives": [
{
"confidence": "1.0",
"content": "are"
}
],
"type": "pronunciation"
},
{
"start_time": "37.78",
"end_time": "38.04",
"alternatives": [
{
"confidence": "0.9989",
"content": "too"
}
],
"type": "pronunciation"
},
{
"start_time": "38.04",
"end_time": "38.29",
"alternatives": [
{
"confidence": "1.0",
"content": "hard"
}
],
"type": "pronunciation"
},
{
"start_time": "38.29",
"end_time": "38.41",
"alternatives": [
{
"confidence": "1.0",
"content": "for"
}
],
"type": "pronunciation"
},
{
"start_time": "38.41",
"end_time": "38.55",
"alternatives": [
{
"confidence": "1.0",
"content": "me"
}
],
"type": "pronunciation"
},
{
"start_time": "38.55",
"end_time": "38.66",
"alternatives": [
{
"confidence": "0.9998",
"content": "to"
}
],
"type": "pronunciation"
},
{
"start_time": "38.66",
"end_time": "39.05",
"alternatives": [
{
"confidence": "1.0",
"content": "take"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "40.14",
"end_time": "40.29",
"alternatives": [
{
"confidence": "0.9343",
"content": "They're"
}
],
"type": "pronunciation"
},
{
"start_time": "40.29",
"end_time": "40.51",
"alternatives": [
{
"confidence": "0.9915",
"content": "too"
}
],
"type": "pronunciation"
},
{
"start_time": "40.51",
"end_time": "40.74",
"alternatives": [
{
"confidence": "1.0",
"content": "hard"
}
],
"type": "pronunciation"
},
{
"start_time": "40.74",
"end_time": "40.86",
"alternatives": [
{
"confidence": "1.0",
"content": "for"
}
],
"type": "pronunciation"
},
{
"start_time": "40.86",
"end_time": "40.96",
"alternatives": [
{
"confidence": "1.0",
"content": "me"
}
],
"type": "pronunciation"
},
{
"start_time": "40.96",
"end_time": "41.06",
"alternatives": [
{
"confidence": "0.9998",
"content": "to"
}
],
"type": "pronunciation"
},
{
"start_time": "41.06",
"end_time": "41.35",
"alternatives": [
{
"confidence": "1.0",
"content": "take"
}
],
"type": "pronunciation"
},
{
"start_time": "42.54",
"end_time": "42.93",
"alternatives": [
{
"confidence": "1.0",
"content": "because"
}
],
"type": "pronunciation"
},
{
"start_time": "42.94",
"end_time": "43.11",
"alternatives": [
{
"confidence": "1.0",
"content": "when"
}
],
"type": "pronunciation"
},
{
"start_time": "43.11",
"end_time": "43.43",
"alternatives": [
{
"confidence": "1.0",
"content": "you"
}
],
"type": "pronunciation"
},
{
"start_time": "43.44",
"end_time": "43.84",
"alternatives": [
{
"confidence": "1.0",
"content": "when"
}
],
"type": "pronunciation"
},
{
"start_time": "43.85",
"end_time": "43.97",
"alternatives": [
{
"confidence": "1.0",
"content": "the"
}
],
"type": "pronunciation"
},
{
"start_time": "43.97",
"end_time": "44.32",
"alternatives": [
{
"confidence": "1.0",
"content": "senator"
}
],
"type": "pronunciation"
},
{
"start_time": "44.32",
"end_time": "44.48",
"alternatives": [
{
"confidence": "1.0",
"content": "from"
}
],
"type": "pronunciation"
},
{
"start_time": "44.49",
"end_time": "44.94",
"alternatives": [
{
"confidence": "1.0",
"content": "Texas"
}
],
"type": "pronunciation"
},
{
"start_time": "44.94",
"end_time": "45.28",
"alternatives": [
{
"confidence": "1.0",
"content": "shut"
}
],
"type": "pronunciation"
},
{
"start_time": "45.29",
"end_time": "45.54",
"alternatives": [
{
"confidence": "1.0",
"content": "this"
}
],
"type": "pronunciation"
},
{
"start_time": "45.54",
"end_time": "46.01",
"alternatives": [
{
"confidence": "0.9521",
"content": "government"
}
],
"type": "pronunciation"
},
{
"start_time": "46.02",
"end_time": "46.45",
"alternatives": [
{
"confidence": "1.0",
"content": "down"
}
],
"type": "pronunciation"
},
{
"start_time": "47.17",
"end_time": "47.29",
"alternatives": [
{
"confidence": "0.7178",
"content": "in"
}
],
"type": "pronunciation"
},
{
"start_time": "47.29",
"end_time": "47.6",
"alternatives": [
{
"confidence": "1.0",
"content": "twenty"
}
],
"type": "pronunciation"
},
{
"start_time": "47.6",
"end_time": "48.25",
"alternatives": [
{
"confidence": "0.9999",
"content": "thirteen"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": ","
}
],
"type": "punctuation"
},
{
"start_time": "48.88",
"end_time": "49.17",
"alternatives": [
{
"confidence": "0.9854",
"content": "my"
}
],
"type": "pronunciation"
},
{
"start_time": "49.18",
"end_time": "49.81",
"alternatives": [
{
"confidence": "0.9656",
"content": "state"
}
],
"type": "pronunciation"
},
{
"start_time": "49.97",
"end_time": "50.38",
"alternatives": [
{
"confidence": "1.0",
"content": "was"
}
],
"type": "pronunciation"
},
{
"start_time": "50.39",
"end_time": "50.75",
"alternatives": [
{
"confidence": "0.9454",
"content": "flooded"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": ","
}
],
"type": "punctuation"
},
{
"start_time": "52.54",
"end_time": "52.71",
"alternatives": [
{
"confidence": "1.0",
"content": "it"
}
],
"type": "pronunciation"
},
{
"start_time": "52.71",
"end_time": "52.89",
"alternatives": [
{
"confidence": "1.0",
"content": "was"
}
],
"type": "pronunciation"
},
{
"start_time": "52.89",
"end_time": "53.75",
"alternatives": [
{
"confidence": "0.8434",
"content": "underwater"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "55.24",
"end_time": "55.62",
"alternatives": [
{
"confidence": "1.0",
"content": "People"
}
],
"type": "pronunciation"
},
{
"start_time": "55.62",
"end_time": "55.85",
"alternatives": [
{
"confidence": "1.0",
"content": "were"
}
],
"type": "pronunciation"
},
{
"start_time": "55.86",
"end_time": "56.35",
"alternatives": [
{
"confidence": "1.0",
"content": "killed"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": ","
}
],
"type": "punctuation"
},
{
"start_time": "57.64",
"end_time": "58.06",
"alternatives": [
{
"confidence": "0.9651",
"content": "people's"
}
],
"type": "pronunciation"
},
{
"start_time": "58.06",
"end_time": "58.55",
"alternatives": [
{
"confidence": "0.9983",
"content": "houses"
}
],
"type": "pronunciation"
},
{
"start_time": "58.56",
"end_time": "58.75",
"alternatives": [
{
"confidence": "1.0",
"content": "were"
}
],
"type": "pronunciation"
},
{
"start_time": "58.75",
"end_time": "59.55",
"alternatives": [
{
"confidence": "1.0",
"content": "destroyed"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "60.51",
"end_time": "60.72",
"alternatives": [
{
"confidence": "0.8156",
"content": "They're"
}
],
"type": "pronunciation"
},
{
"start_time": "60.72",
"end_time": "61.09",
"alternatives": [
{
"confidence": "1.0",
"content": "small"
}
],
"type": "pronunciation"
},
{
"start_time": "61.09",
"end_time": "61.74",
"alternatives": [
{
"confidence": "1.0",
"content": "businesses"
}
],
"type": "pronunciation"
},
{
"start_time": "61.75",
"end_time": "61.94",
"alternatives": [
{
"confidence": "0.9088",
"content": "were"
}
],
"type": "pronunciation"
},
{
"start_time": "61.95",
"end_time": "62.55",
"alternatives": [
{
"confidence": "0.9996",
"content": "ruined"
}
],
"type": "pronunciation"
},
{
"start_time": "63.04",
"end_time": "63.85",
"alternatives": [
{
"confidence": "0.9798",
"content": "forever"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "66.5",
"end_time": "66.71",
"alternatives": [
{
"confidence": "1.0",
"content": "And"
}
],
"type": "pronunciation"
},
{
"start_time": "66.71",
"end_time": "67.25",
"alternatives": [
{
"confidence": "1.0",
"content": "because"
}
],
"type": "pronunciation"
},
{
"start_time": "67.26",
"end_time": "67.5",
"alternatives": [
{
"confidence": "1.0",
"content": "of"
}
],
"type": "pronunciation"
},
{
"start_time": "67.5",
"end_time": "67.6",
"alternatives": [
{
"confidence": "1.0",
"content": "the"
}
],
"type": "pronunciation"
},
{
"start_time": "67.6",
"end_time": "68.15",
"alternatives": [
{
"confidence": "0.7854",
"content": "senator"
}
],
"type": "pronunciation"
},
{
"start_time": "68.15",
"end_time": "68.34",
"alternatives": [
{
"confidence": "0.9998",
"content": "from"
}
],
"type": "pronunciation"
},
{
"start_time": "68.35",
"end_time": "68.95",
"alternatives": [
{
"confidence": "1.0",
"content": "Texas"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": ","
}
],
"type": "punctuation"
},
{
"start_time": "70.24",
"end_time": "70.48",
"alternatives": [
{
"confidence": "1.0",
"content": "this"
}
],
"type": "pronunciation"
},
{
"start_time": "70.48",
"end_time": "70.99",
"alternatives": [
{
"confidence": "0.9953",
"content": "government"
}
],
"type": "pronunciation"
},
{
"start_time": "71.02",
"end_time": "71.25",
"alternatives": [
{
"confidence": "0.4387",
"content": "was"
}
],
"type": "pronunciation"
},
{
"start_time": "71.25",
"end_time": "71.56",
"alternatives": [
{
"confidence": "0.9819",
"content": "shut"
}
],
"type": "pronunciation"
},
{
"start_time": "71.56",
"end_time": "71.95",
"alternatives": [
{
"confidence": "0.9821",
"content": "down"
}
],
"type": "pronunciation"
},
{
"start_time": "72.94",
"end_time": "73.13",
"alternatives": [
{
"confidence": "0.9992",
"content": "for"
}
],
"type": "pronunciation"
},
{
"start_time": "73.13",
"end_time": "73.85",
"alternatives": [
{
"confidence": "0.9999",
"content": "politics"
}
],
"type": "pronunciation"
},
{
"start_time": "75.21",
"end_time": "75.37",
"alternatives": [
{
"confidence": "0.9958",
"content": "that"
}
],
"type": "pronunciation"
},
{
"start_time": "75.37",
"end_time": "75.55",
"alternatives": [
{
"confidence": "0.626",
"content": "he"
}
],
"type": "pronunciation"
},
{
"start_time": "75.55",
"end_time": "76.01",
"alternatives": [
{
"confidence": "1.0",
"content": "served"
}
],
"type": "pronunciation"
},
{
"start_time": "76.02",
"end_time": "76.23",
"alternatives": [
{
"confidence": "0.7766",
"content": "two"
}
],
"type": "pronunciation"
},
{
"start_time": "76.23",
"end_time": "76.63",
"alternatives": [
{
"confidence": "1.0",
"content": "a"
}
],
"type": "pronunciation"
},
{
"start_time": "76.76",
"end_time": "77.35",
"alternatives": [
{
"confidence": "0.9996",
"content": "second"
}
],
"type": "pronunciation"
},
{
"start_time": "77.84",
"end_time": "78.22",
"alternatives": [
{
"confidence": "1.0",
"content": "place"
}
],
"type": "pronunciation"
},
{
"start_time": "78.23",
"end_time": "78.62",
"alternatives": [
{
"confidence": "0.9969",
"content": "finish"
}
],
"type": "pronunciation"
},
{
"start_time": "78.62",
"end_time": "78.7",
"alternatives": [
{
"confidence": "0.9969",
"content": "in"
}
],
"type": "pronunciation"
},
{
"start_time": "78.7",
"end_time": "78.92",
"alternatives": [
{
"confidence": "1.0",
"content": "the"
}
],
"type": "pronunciation"
},
{
"start_time": "78.92",
"end_time": "79.18",
"alternatives": [
{
"confidence": "1.0",
"content": "Iowa"
}
],
"type": "pronunciation"
},
{
"start_time": "79.18",
"end_time": "79.85",
"alternatives": [
{
"confidence": "0.9997",
"content": "caucuses"
}
],
"type": "pronunciation"
},
{
"start_time": "80.84",
"end_time": "81.03",
"alternatives": [
{
"confidence": "1.0",
"content": "but"
}
],
"type": "pronunciation"
},
{
"start_time": "81.03",
"end_time": "81.21",
"alternatives": [
{
"confidence": "0.9162",
"content": "were"
}
],
"type": "pronunciation"
},
{
"start_time": "81.21",
"end_time": "81.35",
"alternatives": [
{
"confidence": "0.9975",
"content": "of"
}
],
"type": "pronunciation"
},
{
"start_time": "81.35",
"end_time": "81.77",
"alternatives": [
{
"confidence": "1.0",
"content": "no"
}
],
"type": "pronunciation"
},
{
"start_time": "81.77",
"end_time": "82.05",
"alternatives": [
{
"confidence": "1.0",
"content": "help"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "85.8",
"end_time": "85.94",
"alternatives": [
{
"confidence": "0.9944",
"content": "To"
}
],
"type": "pronunciation"
},
{
"start_time": "85.94",
"end_time": "86.04",
"alternatives": [
{
"confidence": "1.0",
"content": "the"
}
],
"type": "pronunciation"
},
{
"start_time": "86.04",
"end_time": "86.38",
"alternatives": [
{
"confidence": "1.0",
"content": "first"
}
],
"type": "pronunciation"
},
{
"start_time": "86.38",
"end_time": "87.06",
"alternatives": [
{
"confidence": "0.9914",
"content": "responders"
}
],
"type": "pronunciation"
},
{
"start_time": "87.06",
"end_time": "87.2",
"alternatives": [
{
"confidence": "1.0",
"content": "to"
}
],
"type": "pronunciation"
},
{
"start_time": "87.2",
"end_time": "87.35",
"alternatives": [
{
"confidence": "1.0",
"content": "the"
}
],
"type": "pronunciation"
},
{
"start_time": "87.36",
"end_time": "87.95",
"alternatives": [
{
"confidence": "0.9903",
"content": "teachers"
}
],
"type": "pronunciation"
},
{
"start_time": "88.64",
"end_time": "88.8",
"alternatives": [
{
"confidence": "0.9986",
"content": "to"
}
],
"type": "pronunciation"
},
{
"start_time": "88.8",
"end_time": "88.9",
"alternatives": [
{
"confidence": "1.0",
"content": "the"
}
],
"type": "pronunciation"
},
{
"start_time": "88.9",
"end_time": "89.42",
"alternatives": [
{
"confidence": "0.9996",
"content": "students"
}
],
"type": "pronunciation"
},
{
"start_time": "89.42",
"end_time": "89.54",
"alternatives": [
{
"confidence": "0.9533",
"content": "and"
}
],
"type": "pronunciation"
},
{
"start_time": "89.55",
"end_time": "90.05",
"alternatives": [
{
"confidence": "1.0",
"content": "schools"
}
],
"type": "pronunciation"
},
{
"start_time": "90.05",
"end_time": "90.23",
"alternatives": [
{
"confidence": "1.0",
"content": "were"
}
],
"type": "pronunciation"
},
{
"start_time": "90.23",
"end_time": "90.85",
"alternatives": [
{
"confidence": "0.9999",
"content": "closed"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "93.24",
"end_time": "93.41",
"alternatives": [
{
"confidence": "0.9865",
"content": "With"
}
],
"type": "pronunciation"
},
{
"start_time": "93.41",
"end_time": "93.49",
"alternatives": [
{
"confidence": "0.9998",
"content": "the"
}
],
"type": "pronunciation"
},
{
"start_time": "93.49",
"end_time": "93.83",
"alternatives": [
{
"confidence": "0.9801",
"content": "federal"
}
],
"type": "pronunciation"
},
{
"start_time": "93.83",
"end_time": "94.25",
"alternatives": [
{
"confidence": "0.9981",
"content": "government"
}
],
"type": "pronunciation"
},
{
"start_time": "95.0",
"end_time": "95.13",
"alternatives": [
{
"confidence": "1.0",
"content": "there"
}
],
"type": "pronunciation"
},
{
"start_time": "95.13",
"end_time": "95.3",
"alternatives": [
{
"confidence": "1.0",
"content": "was"
}
],
"type": "pronunciation"
},
{
"start_time": "95.3",
"end_time": "95.59",
"alternatives": [
{
"confidence": "0.9984",
"content": "shut"
}
],
"type": "pronunciation"
},
{
"start_time": "95.59",
"end_time": "96.05",
"alternatives": [
{
"confidence": "0.9984",
"content": "down"
}
],
"type": "pronunciation"
},
{
"start_time": "97.14",
"end_time": "97.57",
"alternatives": [
{
"confidence": "1.0",
"content": "because"
}
],
"type": "pronunciation"
},
{
"start_time": "97.57",
"end_time": "97.8",
"alternatives": [
{
"confidence": "1.0",
"content": "of"
}
],
"type": "pronunciation"
},
{
"start_time": "98.07",
"end_time": "98.19",
"alternatives": [
{
"confidence": "1.0",
"content": "the"
}
],
"type": "pronunciation"
},
{
"start_time": "98.19",
"end_time": "98.45",
"alternatives": [
{
"confidence": "0.9858",
"content": "junior"
}
],
"type": "pronunciation"
},
{
"start_time": "98.45",
"end_time": "98.95",
"alternatives": [
{
"confidence": "1.0",
"content": "senator"
}
],
"type": "pronunciation"
},
{
"start_time": "99.54",
"end_time": "99.71",
"alternatives": [
{
"confidence": "1.0",
"content": "from"
}
],
"type": "pronunciation"
},
{
"start_time": "99.71",
"end_time": "100.31",
"alternatives": [
{
"confidence": "1.0",
"content": "Texas"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "101.29",
"end_time": "101.62",
"alternatives": [
{
"confidence": "1.0",
"content": "Now"
}
],
"type": "pronunciation"
},
{
"start_time": "101.63",
"end_time": "101.83",
"alternatives": [
{
"confidence": "1.0",
"content": "it's"
}
],
"type": "pronunciation"
},
{
"start_time": "101.83",
"end_time": "102.09",
"alternatives": [
{
"confidence": "1.0",
"content": "his"
}
],
"type": "pronunciation"
},
{
"start_time": "102.09",
"end_time": "102.62",
"alternatives": [
{
"confidence": "1.0",
"content": "business"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": ","
}
],
"type": "punctuation"
},
{
"start_time": "102.62",
"end_time": "102.87",
"alternatives": [
{
"confidence": "1.0",
"content": "not"
}
],
"type": "pronunciation"
},
{
"start_time": "102.87",
"end_time": "103.11",
"alternatives": [
{
"confidence": "1.0",
"content": "my"
}
],
"type": "pronunciation"
},
{
"start_time": "103.11",
"end_time": "103.7",
"alternatives": [
{
"confidence": "1.0",
"content": "business"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "104.44",
"end_time": "104.84",
"alternatives": [
{
"confidence": "0.9883",
"content": "Why"
}
],
"type": "pronunciation"
},
{
"start_time": "104.84",
"end_time": "105.04",
"alternatives": [
{
"confidence": "0.993",
"content": "he"
}
],
"type": "pronunciation"
},
{
"start_time": "105.04",
"end_time": "105.58",
"alternatives": [
{
"confidence": "1.0",
"content": "supports"
}
],
"type": "pronunciation"
},
{
"start_time": "105.58",
"end_time": "105.64",
"alternatives": [
{
"confidence": "0.7949",
"content": "the"
}
],
"type": "pronunciation"
},
{
"start_time": "105.65",
"end_time": "106.35",
"alternatives": [
{
"confidence": "0.9912",
"content": "president"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": ","
}
],
"type": "punctuation"
},
{
"start_time": "106.74",
"end_time": "106.88",
"alternatives": [
{
"confidence": "1.0",
"content": "who"
}
],
"type": "pronunciation"
},
{
"start_time": "106.88",
"end_time": "107.21",
"alternatives": [
{
"confidence": "1.0",
"content": "wants"
}
],
"type": "pronunciation"
},
{
"start_time": "107.21",
"end_time": "107.36",
"alternatives": [
{
"confidence": "1.0",
"content": "to"
}
],
"type": "pronunciation"
},
{
"start_time": "107.36",
"end_time": "107.86",
"alternatives": [
{
"confidence": "0.9957",
"content": "erect"
}
],
"type": "pronunciation"
},
{
"start_time": "108.07",
"end_time": "108.2",
"alternatives": [
{
"confidence": "1.0",
"content": "a"
}
],
"type": "pronunciation"
},
{
"start_time": "108.2",
"end_time": "109.07",
"alternatives": [
{
"confidence": "0.9985",
"content": "medieval"
}
],
"type": "pronunciation"
},
{
"start_time": "109.08",
"end_time": "109.94",
"alternatives": [
{
"confidence": "1.0",
"content": "barrier"
}
],
"type": "pronunciation"
},
{
"start_time": "109.95",
"end_time": "110.25",
"alternatives": [
{
"confidence": "1.0",
"content": "on"
}
],
"type": "pronunciation"
},
{
"start_time": "110.25",
"end_time": "110.5",
"alternatives": [
{
"confidence": "0.9755",
"content": "the"
}
],
"type": "pronunciation"
},
{
"start_time": "110.74",
"end_time": "111.14",
"alternatives": [
{
"confidence": "1.0",
"content": "border"
}
],
"type": "pronunciation"
},
{
"start_time": "111.14",
"end_time": "111.26",
"alternatives": [
{
"confidence": "1.0",
"content": "of"
}
],
"type": "pronunciation"
},
{
"start_time": "111.27",
"end_time": "111.91",
"alternatives": [
{
"confidence": "1.0",
"content": "Texas"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": ","
}
],
"type": "punctuation"
},
{
"start_time": "113.34",
"end_time": "113.45",
"alternatives": [
{
"confidence": "1.0",
"content": "who"
}
],
"type": "pronunciation"
},
{
"start_time": "113.45",
"end_time": "113.78",
"alternatives": [
{
"confidence": "1.0",
"content": "wants"
}
],
"type": "pronunciation"
},
{
"start_time": "113.78",
"end_time": "113.89",
"alternatives": [
{
"confidence": "1.0",
"content": "to"
}
],
"type": "pronunciation"
},
{
"start_time": "113.89",
"end_time": "114.24",
"alternatives": [
{
"confidence": "1.0",
"content": "use"
}
],
"type": "pronunciation"
},
{
"start_time": "114.25",
"end_time": "114.76",
"alternatives": [
{
"confidence": "1.0",
"content": "eminent"
}
],
"type": "pronunciation"
},
{
"start_time": "114.77",
"end_time": "115.55",
"alternatives": [
{
"confidence": "1.0",
"content": "domain"
}
],
"type": "pronunciation"
},
{
"start_time": "116.09",
"end_time": "116.25",
"alternatives": [
{
"confidence": "0.9983",
"content": "to"
}
],
"type": "pronunciation"
},
{
"start_time": "116.25",
"end_time": "116.64",
"alternatives": [
{
"confidence": "1.0",
"content": "build"
}
],
"type": "pronunciation"
},
{
"start_time": "116.64",
"end_time": "116.92",
"alternatives": [
{
"confidence": "1.0",
"content": "that"
}
],
"type": "pronunciation"
},
{
"start_time": "116.93",
"end_time": "117.4",
"alternatives": [
{
"confidence": "0.9921",
"content": "wall"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "?"
}
],
"type": "punctuation"
},
{
"start_time": "117.4",
"end_time": "117.52",
"alternatives": [
{
"confidence": "0.9951",
"content": "Who"
}
],
"type": "pronunciation"
},
{
"start_time": "117.52",
"end_time": "117.84",
"alternatives": [
{
"confidence": "1.0",
"content": "wants"
}
],
"type": "pronunciation"
},
{
"start_time": "117.84",
"end_time": "117.96",
"alternatives": [
{
"confidence": "1.0",
"content": "to"
}
],
"type": "pronunciation"
},
{
"start_time": "117.96",
"end_time": "118.75",
"alternatives": [
{
"confidence": "1.0",
"content": "declare"
}
],
"type": "pronunciation"
},
{
"start_time": "118.76",
"end_time": "118.92",
"alternatives": [
{
"confidence": "0.9805",
"content": "an"
}
],
"type": "pronunciation"
},
{
"start_time": "118.92",
"end_time": "120.12",
"alternatives": [
{
"confidence": "0.9993",
"content": "unconstitutional"
}
],
"type": "pronunciation"
},
{
"start_time": "120.12",
"end_time": "120.56",
"alternatives": [
{
"confidence": "0.473",
"content": "emerging"
}
],
"type": "pronunciation"
},
{
"start_time": "120.568",
"end_time": "120.988",
"alternatives": [
{
"confidence": "0.3646",
"content": "NT"
}
],
"type": "pronunciation"
},
{
"start_time": "121.258",
"end_time": "121.388",
"alternatives": [
{
"confidence": "0.9962",
"content": "to"
}
],
"type": "pronunciation"
},
{
"start_time": "121.388",
"end_time": "121.728",
"alternatives": [
{
"confidence": "1.0",
"content": "build"
}
],
"type": "pronunciation"
},
{
"start_time": "121.728",
"end_time": "122.018",
"alternatives": [
{
"confidence": "1.0",
"content": "that"
}
],
"type": "pronunciation"
},
{
"start_time": "122.018",
"end_time": "122.628",
"alternatives": [
{
"confidence": "1.0",
"content": "wall"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "?"
}
],
"type": "punctuation"
},
{
"start_time": "122.708",
"end_time": "123.108",
"alternatives": [
{
"confidence": "1.0",
"content": "That's"
}
],
"type": "pronunciation"
},
{
"start_time": "123.118",
"end_time": "123.268",
"alternatives": [
{
"confidence": "1.0",
"content": "the"
}
],
"type": "pronunciation"
},
{
"start_time": "123.278",
"end_time": "123.758",
"alternatives": [
{
"confidence": "1.0",
"content": "business"
}
],
"type": "pronunciation"
},
{
"start_time": "123.758",
"end_time": "123.868",
"alternatives": [
{
"confidence": "1.0",
"content": "of"
}
],
"type": "pronunciation"
},
{
"start_time": "123.868",
"end_time": "123.958",
"alternatives": [
{
"confidence": "1.0",
"content": "the"
}
],
"type": "pronunciation"
},
{
"start_time": "123.958",
"end_time": "124.338",
"alternatives": [
{
"confidence": "1.0",
"content": "senator"
}
],
"type": "pronunciation"
},
{
"start_time": "124.338",
"end_time": "124.498",
"alternatives": [
{
"confidence": "1.0",
"content": "from"
}
],
"type": "pronunciation"
},
{
"start_time": "124.498",
"end_time": "124.938",
"alternatives": [
{
"confidence": "1.0",
"content": "Texas"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": ","
}
],
"type": "punctuation"
},
{
"start_time": "124.938",
"end_time": "125.058",
"alternatives": [
{
"confidence": "1.0",
"content": "I"
}
],
"type": "pronunciation"
},
{
"start_time": "125.058",
"end_time": "125.288",
"alternatives": [
{
"confidence": "1.0",
"content": "can"
}
],
"type": "pronunciation"
},
{
"start_time": "125.288",
"end_time": "125.908",
"alternatives": [
{
"confidence": "1.0",
"content": "assure"
}
],
"type": "pronunciation"
},
{
"start_time": "125.908",
"end_time": "126.118",
"alternatives": [
{
"confidence": "0.9994",
"content": "you"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "128.008",
"end_time": "128.238",
"alternatives": [
{
"confidence": "0.8192",
"content": "Then"
}
],
"type": "pronunciation"
},
{
"start_time": "128.238",
"end_time": "128.348",
"alternatives": [
{
"confidence": "0.9968",
"content": "in"
}
],
"type": "pronunciation"
},
{
"start_time": "128.348",
"end_time": "129.318",
"alternatives": [
{
"confidence": "1.0",
"content": "Colorado"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": ","
}
],
"type": "punctuation"
},
{
"start_time": "130.108",
"end_time": "130.278",
"alternatives": [
{
"confidence": "0.6005",
"content": "if"
}
],
"type": "pronunciation"
},
{
"start_time": "130.278",
"end_time": "130.358",
"alternatives": [
{
"confidence": "0.4286",
"content": "the"
}
],
"type": "pronunciation"
},
{
"start_time": "130.368",
"end_time": "131.028",
"alternatives": [
{
"confidence": "0.9929",
"content": "president"
}
],
"type": "pronunciation"
},
{
"start_time": "131.028",
"end_time": "131.418",
"alternatives": [
{
"confidence": "1.0",
"content": "said"
}
],
"type": "pronunciation"
},
{
"start_time": "132.108",
"end_time": "132.238",
"alternatives": [
{
"confidence": "0.9957",
"content": "he"
}
],
"type": "pronunciation"
},
{
"start_time": "132.238",
"end_time": "132.418",
"alternatives": [
{
"confidence": "1.0",
"content": "was"
}
],
"type": "pronunciation"
},
{
"start_time": "132.808",
"end_time": "133.358",
"alternatives": [
{
"confidence": "1.0",
"content": "eminent"
}
],
"type": "pronunciation"
},
{
"start_time": "133.368",
"end_time": "134.138",
"alternatives": [
{
"confidence": "1.0",
"content": "domain"
}
],
"type": "pronunciation"
},
{
"start_time": "134.318",
"end_time": "134.488",
"alternatives": [
{
"confidence": "0.9992",
"content": "to"
}
],
"type": "pronunciation"
},
{
"start_time": "134.488",
"end_time": "134.948",
"alternatives": [
{
"confidence": "0.9882",
"content": "erect"
}
],
"type": "pronunciation"
},
{
"start_time": "134.948",
"end_time": "135.028",
"alternatives": [
{
"confidence": "0.9953",
"content": "a"
}
],
"type": "pronunciation"
},
{
"start_time": "135.028",
"end_time": "135.498",
"alternatives": [
{
"confidence": "1.0",
"content": "barrier"
}
],
"type": "pronunciation"
},
{
"start_time": "135.498",
"end_time": "136.058",
"alternatives": [
{
"confidence": "1.0",
"content": "across"
}
],
"type": "pronunciation"
},
{
"start_time": "136.248",
"end_time": "136.388",
"alternatives": [
{
"confidence": "1.0",
"content": "the"
}
],
"type": "pronunciation"
},
{
"start_time": "136.388",
"end_time": "136.758",
"alternatives": [
{
"confidence": "1.0",
"content": "state"
}
],
"type": "pronunciation"
},
{
"start_time": "136.758",
"end_time": "136.858",
"alternatives": [
{
"confidence": "1.0",
"content": "of"
}
],
"type": "pronunciation"
},
{
"start_time": "136.858",
"end_time": "137.718",
"alternatives": [
{
"confidence": "0.9997",
"content": "Colorado"
}
],
"type": "pronunciation"
},
{
"start_time": "138.248",
"end_time": "138.788",
"alternatives": [
{
"confidence": "0.9987",
"content": "across"
}
],
"type": "pronunciation"
},
{
"start_time": "138.788",
"end_time": "138.908",
"alternatives": [
{
"confidence": "1.0",
"content": "the"
}
],
"type": "pronunciation"
},
{
"start_time": "138.908",
"end_time": "139.308",
"alternatives": [
{
"confidence": "1.0",
"content": "Rocky"
}
],
"type": "pronunciation"
},
{
"start_time": "139.308",
"end_time": "139.738",
"alternatives": [
{
"confidence": "1.0",
"content": "mountains"
}
],
"type": "pronunciation"
},
{
"start_time": "139.738",
"end_time": "139.848",
"alternatives": [
{
"confidence": "1.0",
"content": "of"
}
],
"type": "pronunciation"
},
{
"start_time": "139.858",
"end_time": "140.588",
"alternatives": [
{
"confidence": "0.9901",
"content": "Colorado"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": ","
}
],
"type": "punctuation"
},
{
"start_time": "140.598",
"end_time": "140.778",
"alternatives": [
{
"confidence": "0.9995",
"content": "he"
}
],
"type": "pronunciation"
},
{
"start_time": "140.778",
"end_time": "140.998",
"alternatives": [
{
"confidence": "1.0",
"content": "was"
}
],
"type": "pronunciation"
},
{
"start_time": "140.998",
"end_time": "141.158",
"alternatives": [
{
"confidence": "1.0",
"content": "going"
}
],
"type": "pronunciation"
},
{
"start_time": "141.158",
"end_time": "141.268",
"alternatives": [
{
"confidence": "1.0",
"content": "to"
}
],
"type": "pronunciation"
},
{
"start_time": "141.268",
"end_time": "142.058",
"alternatives": [
{
"confidence": "1.0",
"content": "steal"
}
],
"type": "pronunciation"
},
{
"start_time": "142.218",
"end_time": "142.438",
"alternatives": [
{
"confidence": "1.0",
"content": "the"
}
],
"type": "pronunciation"
},
{
"start_time": "142.448",
"end_time": "143.298",
"alternatives": [
{
"confidence": "1.0",
"content": "property"
}
],
"type": "pronunciation"
},
{
"start_time": "143.378",
"end_time": "143.618",
"alternatives": [
{
"confidence": "1.0",
"content": "of"
}
],
"type": "pronunciation"
},
{
"start_time": "143.618",
"end_time": "143.848",
"alternatives": [
{
"confidence": "0.9968",
"content": "our"
}
],
"type": "pronunciation"
},
{
"start_time": "143.848",
"end_time": "144.408",
"alternatives": [
{
"confidence": "1.0",
"content": "farmers"
}
],
"type": "pronunciation"
},
{
"start_time": "144.408",
"end_time": "144.628",
"alternatives": [
{
"confidence": "1.0",
"content": "and"
}
],
"type": "pronunciation"
},
{
"start_time": "144.628",
"end_time": "145.198",
"alternatives": [
{
"confidence": "1.0",
"content": "ranchers"
}
],
"type": "pronunciation"
},
{
"start_time": "145.408",
"end_time": "145.558",
"alternatives": [
{
"confidence": "1.0",
"content": "to"
}
],
"type": "pronunciation"
},
{
"start_time": "145.558",
"end_time": "146.048",
"alternatives": [
{
"confidence": "1.0",
"content": "build"
}
],
"type": "pronunciation"
},
{
"start_time": "146.058",
"end_time": "146.328",
"alternatives": [
{
"confidence": "1.0",
"content": "his"
}
],
"type": "pronunciation"
},
{
"start_time": "146.328",
"end_time": "146.928",
"alternatives": [
{
"confidence": "0.96",
"content": "medieval"
}
],
"type": "pronunciation"
},
{
"start_time": "146.928",
"end_time": "147.508",
"alternatives": [
{
"confidence": "0.9942",
"content": "wall"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "147.608",
"end_time": "147.828",
"alternatives": [
{
"confidence": "1.0",
"content": "There"
}
],
"type": "pronunciation"
},
{
"start_time": "147.828",
"end_time": "148.138",
"alternatives": [
{
"confidence": "1.0",
"content": "wouldn't"
}
],
"type": "pronunciation"
},
{
"start_time": "148.148",
"end_time": "148.318",
"alternatives": [
{
"confidence": "1.0",
"content": "be"
}
],
"type": "pronunciation"
},
{
"start_time": "148.318",
"end_time": "148.488",
"alternatives": [
{
"confidence": "1.0",
"content": "an"
}
],
"type": "pronunciation"
},
{
"start_time": "148.488",
"end_time": "149.118",
"alternatives": [
{
"confidence": "1.0",
"content": "elected"
}
],
"type": "pronunciation"
},
{
"start_time": "149.118",
"end_time": "149.818",
"alternatives": [
{
"confidence": "1.0",
"content": "leader"
}
],
"type": "pronunciation"
},
{
"start_time": "149.928",
"end_time": "150.168",
"alternatives": [
{
"confidence": "1.0",
"content": "from"
}
],
"type": "pronunciation"
},
{
"start_time": "150.168",
"end_time": "150.348",
"alternatives": [
{
"confidence": "0.9953",
"content": "our"
}
],
"type": "pronunciation"
},
{
"start_time": "150.348",
"end_time": "150.918",
"alternatives": [
{
"confidence": "0.9982",
"content": "state"
}
],
"type": "pronunciation"
},
{
"start_time": "151.068",
"end_time": "151.198",
"alternatives": [
{
"confidence": "0.4086",
"content": "that"
}
],
"type": "pronunciation"
},
{
"start_time": "151.198",
"end_time": "151.358",
"alternatives": [
{
"confidence": "1.0",
"content": "would"
}
],
"type": "pronunciation"
},
{
"start_time": "151.358",
"end_time": "151.858",
"alternatives": [
{
"confidence": "1.0",
"content": "support"
}
],
"type": "pronunciation"
},
{
"start_time": "151.868",
"end_time": "152.228",
"alternatives": [
{
"confidence": "1.0",
"content": "that"
}
],
"type": "pronunciation"
},
{
"start_time": "152.378",
"end_time": "153.018",
"alternatives": [
{
"confidence": "1.0",
"content": "idea"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "157.308",
"end_time": "157.558",
"alternatives": [
{
"confidence": "1.0",
"content": "Which"
}
],
"type": "pronunciation"
},
{
"start_time": "157.558",
"end_time": "157.798",
"alternatives": [
{
"confidence": "1.0",
"content": "goes"
}
],
"type": "pronunciation"
},
{
"start_time": "157.798",
"end_time": "157.908",
"alternatives": [
{
"confidence": "1.0",
"content": "to"
}
],
"type": "pronunciation"
},
{
"start_time": "157.908",
"end_time": "158.118",
"alternatives": [
{
"confidence": "1.0",
"content": "my"
}
],
"type": "pronunciation"
},
{
"start_time": "158.128",
"end_time": "158.558",
"alternatives": [
{
"confidence": "1.0",
"content": "final"
}
],
"type": "pronunciation"
},
{
"start_time": "158.568",
"end_time": "158.918",
"alternatives": [
{
"confidence": "0.9998",
"content": "point"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "159.208",
"end_time": "159.628",
"alternatives": [
{
"confidence": "1.0",
"content": "How"
}
],
"type": "pronunciation"
},
{
"start_time": "159.638",
"end_time": "160.608",
"alternatives": [
{
"confidence": "1.0",
"content": "ludicrous"
}
],
"type": "pronunciation"
},
{
"start_time": "160.728",
"end_time": "160.958",
"alternatives": [
{
"confidence": "1.0",
"content": "it"
}
],
"type": "pronunciation"
},
{
"start_time": "160.958",
"end_time": "161.418",
"alternatives": [
{
"confidence": "1.0",
"content": "is"
}
],
"type": "pronunciation"
},
{
"start_time": "161.658",
"end_time": "161.848",
"alternatives": [
{
"confidence": "1.0",
"content": "that"
}
],
"type": "pronunciation"
},
{
"start_time": "161.858",
"end_time": "162.078",
"alternatives": [
{
"confidence": "1.0",
"content": "this"
}
],
"type": "pronunciation"
},
{
"start_time": "162.078",
"end_time": "162.558",
"alternatives": [
{
"confidence": "0.9869",
"content": "government"
}
],
"type": "pronunciation"
},
{
"start_time": "162.568",
"end_time": "162.738",
"alternatives": [
{
"confidence": "0.9966",
"content": "is"
}
],
"type": "pronunciation"
},
{
"start_time": "162.738",
"end_time": "163.058",
"alternatives": [
{
"confidence": "1.0",
"content": "shut"
}
],
"type": "pronunciation"
},
{
"start_time": "163.058",
"end_time": "163.468",
"alternatives": [
{
"confidence": "1.0",
"content": "down"
}
],
"type": "pronunciation"
},
{
"start_time": "163.658",
"end_time": "164.068",
"alternatives": [
{
"confidence": "1.0",
"content": "over"
}
],
"type": "pronunciation"
},
{
"start_time": "164.068",
"end_time": "164.188",
"alternatives": [
{
"confidence": "1.0",
"content": "a"
}
],
"type": "pronunciation"
},
{
"start_time": "164.188",
"end_time": "164.818",
"alternatives": [
{
"confidence": "0.9994",
"content": "promise"
}
],
"type": "pronunciation"
},
{
"start_time": "164.988",
"end_time": "165.128",
"alternatives": [
{
"confidence": "0.9983",
"content": "the"
}
],
"type": "pronunciation"
},
{
"start_time": "165.128",
"end_time": "165.608",
"alternatives": [
{
"confidence": "1.0",
"content": "President"
}
],
"type": "pronunciation"
},
{
"start_time": "165.608",
"end_time": "165.928",
"alternatives": [
{
"confidence": "1.0",
"content": "United"
}
],
"type": "pronunciation"
},
{
"start_time": "165.928",
"end_time": "166.358",
"alternatives": [
{
"confidence": "1.0",
"content": "States"
}
],
"type": "pronunciation"
},
{
"start_time": "166.538",
"end_time": "166.928",
"alternatives": [
{
"confidence": "0.9989",
"content": "couldn't"
}
],
"type": "pronunciation"
},
{
"start_time": "166.938",
"end_time": "167.418",
"alternatives": [
{
"confidence": "1.0",
"content": "keep"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "170.168",
"end_time": "170.348",
"alternatives": [
{
"confidence": "1.0",
"content": "And"
}
],
"type": "pronunciation"
},
{
"start_time": "170.348",
"end_time": "170.478",
"alternatives": [
{
"confidence": "0.9953",
"content": "then"
}
],
"type": "pronunciation"
},
{
"start_time": "170.478",
"end_time": "171.068",
"alternatives": [
{
"confidence": "1.0",
"content": "America"
}
],
"type": "pronunciation"
},
{
"start_time": "171.068",
"end_time": "171.248",
"alternatives": [
{
"confidence": "1.0",
"content": "is"
}
],
"type": "pronunciation"
},
{
"start_time": "171.248",
"end_time": "171.538",
"alternatives": [
{
"confidence": "1.0",
"content": "not"
}
],
"type": "pronunciation"
},
{
"start_time": "171.538",
"end_time": "172.138",
"alternatives": [
{
"confidence": "1.0",
"content": "interested"
}
],
"type": "pronunciation"
},
{
"start_time": "172.138",
"end_time": "172.238",
"alternatives": [
{
"confidence": "1.0",
"content": "in"
}
],
"type": "pronunciation"
},
{
"start_time": "172.238",
"end_time": "172.628",
"alternatives": [
{
"confidence": "1.0",
"content": "having"
}
],
"type": "pronunciation"
},
{
"start_time": "172.638",
"end_time": "172.868",
"alternatives": [
{
"confidence": "0.9895",
"content": "him"
}
],
"type": "pronunciation"
},
{
"start_time": "172.878",
"end_time": "173.218",
"alternatives": [
{
"confidence": "0.9848",
"content": "keep"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "175.308",
"end_time": "175.598",
"alternatives": [
{
"confidence": "1.0",
"content": "This"
}
],
"type": "pronunciation"
},
{
"start_time": "175.598",
"end_time": "176.048",
"alternatives": [
{
"confidence": "1.0",
"content": "idea"
}
],
"type": "pronunciation"
},
{
"start_time": "176.048",
"end_time": "176.188",
"alternatives": [
{
"confidence": "1.0",
"content": "that"
}
],
"type": "pronunciation"
},
{
"start_time": "176.188",
"end_time": "176.288",
"alternatives": [
{
"confidence": "1.0",
"content": "he"
}
],
"type": "pronunciation"
},
{
"start_time": "176.288",
"end_time": "176.458",
"alternatives": [
{
"confidence": "1.0",
"content": "was"
}
],
"type": "pronunciation"
},
{
"start_time": "176.458",
"end_time": "176.798",
"alternatives": [
{
"confidence": "0.5154",
"content": "gonna"
}
],
"type": "pronunciation"
},
{
"start_time": "176.978",
"end_time": "177.368",
"alternatives": [
{
"confidence": "0.9908",
"content": "build"
}
],
"type": "pronunciation"
},
{
"start_time": "177.368",
"end_time": "177.428",
"alternatives": [
{
"confidence": "0.9958",
"content": "a"
}
],
"type": "pronunciation"
},
{
"start_time": "177.428",
"end_time": "177.898",
"alternatives": [
{
"confidence": "1.0",
"content": "medieval"
}
],
"type": "pronunciation"
},
{
"start_time": "177.898",
"end_time": "178.388",
"alternatives": [
{
"confidence": "1.0",
"content": "wall"
}
],
"type": "pronunciation"
},
{
"start_time": "178.388",
"end_time": "178.928",
"alternatives": [
{
"confidence": "1.0",
"content": "across"
}
],
"type": "pronunciation"
},
{
"start_time": "179.128",
"end_time": "179.268",
"alternatives": [
{
"confidence": "1.0",
"content": "the"
}
],
"type": "pronunciation"
},
{
"start_time": "179.268",
"end_time": "179.658",
"alternatives": [
{
"confidence": "1.0",
"content": "southern"
}
],
"type": "pronunciation"
},
{
"start_time": "179.658",
"end_time": "180.018",
"alternatives": [
{
"confidence": "1.0",
"content": "border"
}
],
"type": "pronunciation"
},
{
"start_time": "180.018",
"end_time": "180.118",
"alternatives": [
{
"confidence": "1.0",
"content": "of"
}
],
"type": "pronunciation"
},
{
"start_time": "180.128",
"end_time": "180.768",
"alternatives": [
{
"confidence": "1.0",
"content": "Texas"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "183.208",
"end_time": "183.608",
"alternatives": [
{
"confidence": "1.0",
"content": "Take"
}
],
"type": "pronunciation"
},
{
"start_time": "183.608",
"end_time": "183.788",
"alternatives": [
{
"confidence": "1.0",
"content": "it"
}
],
"type": "pronunciation"
},
{
"start_time": "183.788",
"end_time": "184.098",
"alternatives": [
{
"confidence": "1.0",
"content": "from"
}
],
"type": "pronunciation"
},
{
"start_time": "184.108",
"end_time": "184.238",
"alternatives": [
{
"confidence": "1.0",
"content": "the"
}
],
"type": "pronunciation"
},
{
"start_time": "184.238",
"end_time": "184.728",
"alternatives": [
{
"confidence": "1.0",
"content": "farmers"
}
],
"type": "pronunciation"
},
{
"start_time": "184.728",
"end_time": "184.868",
"alternatives": [
{
"confidence": "1.0",
"content": "and"
}
],
"type": "pronunciation"
},
{
"start_time": "184.868",
"end_time": "185.318",
"alternatives": [
{
"confidence": "1.0",
"content": "ranchers"
}
],
"type": "pronunciation"
},
{
"start_time": "185.318",
"end_time": "185.498",
"alternatives": [
{
"confidence": "1.0",
"content": "that"
}
],
"type": "pronunciation"
},
{
"start_time": "185.498",
"end_time": "185.648",
"alternatives": [
{
"confidence": "0.928",
"content": "were"
}
],
"type": "pronunciation"
},
{
"start_time": "185.648",
"end_time": "186.188",
"alternatives": [
{
"confidence": "1.0",
"content": "there"
}
],
"type": "pronunciation"
},
{
"start_time": "186.348",
"end_time": "186.958",
"alternatives": [
{
"confidence": "1.0",
"content": "and"
}
],
"type": "pronunciation"
},
{
"start_time": "187.078",
"end_time": "187.438",
"alternatives": [
{
"confidence": "1.0",
"content": "have"
}
],
"type": "pronunciation"
},
{
"start_time": "187.448",
"end_time": "188.108",
"alternatives": [
{
"confidence": "0.9865",
"content": "Mexicans"
}
],
"type": "pronunciation"
},
{
"start_time": "188.108",
"end_time": "188.408",
"alternatives": [
{
"confidence": "0.8286",
"content": "take"
}
],
"type": "pronunciation"
},
{
"start_time": "188.418",
"end_time": "188.708",
"alternatives": [
{
"confidence": "0.8078",
"content": "for"
}
],
"type": "pronunciation"
},
{
"start_time": "188.708",
"end_time": "188.818",
"alternatives": [
{
"confidence": "0.8045",
"content": "it"
}
],
"type": "pronunciation"
},
{
"start_time": "188.968",
"end_time": "189.198",
"alternatives": [
{
"confidence": "1.0",
"content": "is"
}
],
"type": "pronunciation"
},
{
"start_time": "189.198",
"end_time": "189.328",
"alternatives": [
{
"confidence": "0.9749",
"content": "a"
}
],
"type": "pronunciation"
},
{
"start_time": "189.338",
"end_time": "189.808",
"alternatives": [
{
"confidence": "0.9913",
"content": "drug"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "190.608",
"end_time": "191.018",
"alternatives": [
{
"confidence": "1.0",
"content": "That's"
}
],
"type": "pronunciation"
},
{
"start_time": "191.018",
"end_time": "191.388",
"alternatives": [
{
"confidence": "1.0",
"content": "why"
}
],
"type": "pronunciation"
},
{
"start_time": "191.388",
"end_time": "191.658",
"alternatives": [
{
"confidence": "0.9991",
"content": "we're"
}
],
"type": "pronunciation"
},
{
"start_time": "191.658",
"end_time": "192.498",
"alternatives": [
{
"confidence": "1.0",
"content": "here"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
}
]
},
"status": "COMPLETED"
}
{
"jobName": "trump-grocery",
"accountId": "263510883111",
"results": {
"transcripts": [
{
"transcript": "Brother over. Ross said that he doesn't understand. What federal workers, we help getting food. You Can you understand that? I haven't. I haven't heard the statement, but I do understand. And perhaps you should have said it differently. Local people know who they are when they go for groceries and everything else. And I think what Wilbur is probably trying to say is that they will work along. I know banks have working along. If you have mortgages, the mortgages and mortgage, the folks collecting the interest and all of those things, they work along. And that's what happens in time like this. They know the people. They've been dealing with them for years, and they work along the grocery store. And I think that's probably what Wilbur Ross. But I haven't seen a statement, but he's done a great job, I will tell you that. Yes, you were"
}
],
"items": [
{
"start_time": "0.47",
"end_time": "0.79",
"alternatives": [
{
"confidence": "0.6249",
"content": "Brother"
}
],
"type": "pronunciation"
},
{
"start_time": "1.0",
"end_time": "1.34",
"alternatives": [
{
"confidence": "0.9933",
"content": "over"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "1.34",
"end_time": "1.76",
"alternatives": [
{
"confidence": "0.9979",
"content": "Ross"
}
],
"type": "pronunciation"
},
{
"start_time": "1.76",
"end_time": "1.93",
"alternatives": [
{
"confidence": "0.9933",
"content": "said"
}
],
"type": "pronunciation"
},
{
"start_time": "1.93",
"end_time": "2.03",
"alternatives": [
{
"confidence": "0.9960",
"content": "that"
}
],
"type": "pronunciation"
},
{
"start_time": "2.03",
"end_time": "2.13",
"alternatives": [
{
"confidence": "0.9951",
"content": "he"
}
],
"type": "pronunciation"
},
{
"start_time": "2.14",
"end_time": "2.34",
"alternatives": [
{
"confidence": "0.6273",
"content": "doesn't"
}
],
"type": "pronunciation"
},
{
"start_time": "2.34",
"end_time": "2.85",
"alternatives": [
{
"confidence": "1.0000",
"content": "understand"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "2.85",
"end_time": "2.97",
"alternatives": [
{
"confidence": "0.8847",
"content": "What"
}
],
"type": "pronunciation"
},
{
"start_time": "2.98",
"end_time": "3.27",
"alternatives": [
{
"confidence": "0.9580",
"content": "federal"
}
],
"type": "pronunciation"
},
{
"start_time": "3.28",
"end_time": "3.66",
"alternatives": [
{
"confidence": "0.9974",
"content": "workers"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": ","
}
],
"type": "punctuation"
},
{
"start_time": "3.67",
"end_time": "3.86",
"alternatives": [
{
"confidence": "0.7832",
"content": "we"
}
],
"type": "pronunciation"
},
{
"start_time": "3.86",
"end_time": "4.11",
"alternatives": [
{
"confidence": "0.8871",
"content": "help"
}
],
"type": "pronunciation"
},
{
"start_time": "4.11",
"end_time": "4.47",
"alternatives": [
{
"confidence": "1.0000",
"content": "getting"
}
],
"type": "pronunciation"
},
{
"start_time": "4.48",
"end_time": "4.85",
"alternatives": [
{
"confidence": "1.0000",
"content": "food"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "4.86",
"end_time": "5.0",
"alternatives": [
{
"confidence": "0.6305",
"content": "You"
}
],
"type": "pronunciation"
},
{
"start_time": "5.0",
"end_time": "5.13",
"alternatives": [
{
"confidence": "0.9996",
"content": "Can"
}
],
"type": "pronunciation"
},
{
"start_time": "5.13",
"end_time": "5.25",
"alternatives": [
{
"confidence": "1.0000",
"content": "you"
}
],
"type": "pronunciation"
},
{
"start_time": "5.25",
"end_time": "5.69",
"alternatives": [
{
"confidence": "1.0000",
"content": "understand"
}
],
"type": "pronunciation"
},
{
"start_time": "5.69",
"end_time": "5.81",
"alternatives": [
{
"confidence": "0.6436",
"content": "that"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "?"
}
],
"type": "punctuation"
},
{
"start_time": "5.81",
"end_time": "5.86",
"alternatives": [
{
"confidence": "0.9949",
"content": "I"
}
],
"type": "pronunciation"
},
{
"start_time": "5.86",
"end_time": "6.24",
"alternatives": [
{
"confidence": "1.0000",
"content": "haven't"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "6.25",
"end_time": "6.35",
"alternatives": [
{
"confidence": "1.0000",
"content": "I"
}
],
"type": "pronunciation"
},
{
"start_time": "6.35",
"end_time": "6.69",
"alternatives": [
{
"confidence": "1.0000",
"content": "haven't"
}
],
"type": "pronunciation"
},
{
"start_time": "6.69",
"end_time": "6.85",
"alternatives": [
{
"confidence": "1.0000",
"content": "heard"
}
],
"type": "pronunciation"
},
{
"start_time": "6.85",
"end_time": "6.93",
"alternatives": [
{
"confidence": "0.9972",
"content": "the"
}
],
"type": "pronunciation"
},
{
"start_time": "6.93",
"end_time": "7.3",
"alternatives": [
{
"confidence": "1.0000",
"content": "statement"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": ","
}
],
"type": "punctuation"
},
{
"start_time": "7.3",
"end_time": "7.43",
"alternatives": [
{
"confidence": "1.0000",
"content": "but"
}
],
"type": "pronunciation"
},
{
"start_time": "7.43",
"end_time": "7.75",
"alternatives": [
{
"confidence": "1.0000",
"content": "I"
}
],
"type": "pronunciation"
},
{
"start_time": "7.76",
"end_time": "8.07",
"alternatives": [
{
"confidence": "1.0000",
"content": "do"
}
],
"type": "pronunciation"
},
{
"start_time": "8.08",
"end_time": "8.81",
"alternatives": [
{
"confidence": "1.0000",
"content": "understand"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "8.81",
"end_time": "8.92",
"alternatives": [
{
"confidence": "0.8735",
"content": "And"
}
],
"type": "pronunciation"
},
{
"start_time": "8.92",
"end_time": "9.32",
"alternatives": [
{
"confidence": "1.0000",
"content": "perhaps"
}
],
"type": "pronunciation"
},
{
"start_time": "9.32",
"end_time": "9.4",
"alternatives": [
{
"confidence": "1.0000",
"content": "you"
}
],
"type": "pronunciation"
},
{
"start_time": "9.4",
"end_time": "9.58",
"alternatives": [
{
"confidence": "1.0000",
"content": "should"
}
],
"type": "pronunciation"
},
{
"start_time": "9.58",
"end_time": "9.67",
"alternatives": [
{
"confidence": "1.0000",
"content": "have"
}
],
"type": "pronunciation"
},
{
"start_time": "9.67",
"end_time": "9.86",
"alternatives": [
{
"confidence": "1.0000",
"content": "said"
}
],
"type": "pronunciation"
},
{
"start_time": "9.86",
"end_time": "9.94",
"alternatives": [
{
"confidence": "1.0000",
"content": "it"
}
],
"type": "pronunciation"
},
{
"start_time": "9.94",
"end_time": "10.46",
"alternatives": [
{
"confidence": "1.0000",
"content": "differently"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "12.44",
"end_time": "12.88",
"alternatives": [
{
"confidence": "1.0000",
"content": "Local"
}
],
"type": "pronunciation"
},
{
"start_time": "12.88",
"end_time": "13.17",
"alternatives": [
{
"confidence": "1.0000",
"content": "people"
}
],
"type": "pronunciation"
},
{
"start_time": "13.17",
"end_time": "13.65",
"alternatives": [
{
"confidence": "0.5406",
"content": "know"
}
],
"type": "pronunciation"
},
{
"start_time": "14.24",
"end_time": "14.47",
"alternatives": [
{
"confidence": "1.0000",
"content": "who"
}
],
"type": "pronunciation"
},
{
"start_time": "14.47",
"end_time": "14.65",
"alternatives": [
{
"confidence": "1.0000",
"content": "they"
}
],
"type": "pronunciation"
},
{
"start_time": "14.65",
"end_time": "14.93",
"alternatives": [
{
"confidence": "1.0000",
"content": "are"
}
],
"type": "pronunciation"
},
{
"start_time": "14.94",
"end_time": "15.08",
"alternatives": [
{
"confidence": "0.9695",
"content": "when"
}
],
"type": "pronunciation"
},
{
"start_time": "15.08",
"end_time": "15.28",
"alternatives": [
{
"confidence": "1.0000",
"content": "they"
}
],
"type": "pronunciation"
},
{
"start_time": "15.29",
"end_time": "15.73",
"alternatives": [
{
"confidence": "1.0000",
"content": "go"
}
],
"type": "pronunciation"
},
{
"start_time": "15.73",
"end_time": "15.89",
"alternatives": [
{
"confidence": "1.0000",
"content": "for"
}
],
"type": "pronunciation"
},
{
"start_time": "15.89",
"end_time": "16.39",
"alternatives": [
{
"confidence": "0.7787",
"content": "groceries"
}
],
"type": "pronunciation"
},
{
"start_time": "16.39",
"end_time": "16.49",
"alternatives": [
{
"confidence": "0.9985",
"content": "and"
}
],
"type": "pronunciation"
},
{
"start_time": "16.49",
"end_time": "16.87",
"alternatives": [
{
"confidence": "1.0000",
"content": "everything"
}
],
"type": "pronunciation"
},
{
"start_time": "16.87",
"end_time": "17.18",
"alternatives": [
{
"confidence": "1.0000",
"content": "else"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "17.18",
"end_time": "17.3",
"alternatives": [
{
"confidence": "0.9869",
"content": "And"
}
],
"type": "pronunciation"
},
{
"start_time": "17.3",
"end_time": "17.35",
"alternatives": [
{
"confidence": "1.0000",
"content": "I"
}
],
"type": "pronunciation"
},
{
"start_time": "17.35",
"end_time": "17.51",
"alternatives": [
{
"confidence": "1.0000",
"content": "think"
}
],
"type": "pronunciation"
},
{
"start_time": "17.52",
"end_time": "17.69",
"alternatives": [
{
"confidence": "1.0000",
"content": "what"
}
],
"type": "pronunciation"
},
{
"start_time": "17.69",
"end_time": "17.99",
"alternatives": [
{
"confidence": "0.7347",
"content": "Wilbur"
}
],
"type": "pronunciation"
},
{
"start_time": "17.99",
"end_time": "18.11",
"alternatives": [
{
"confidence": "0.7762",
"content": "is"
}
],
"type": "pronunciation"
},
{
"start_time": "18.11",
"end_time": "18.54",
"alternatives": [
{
"confidence": "1.0000",
"content": "probably"
}
],
"type": "pronunciation"
},
{
"start_time": "18.54",
"end_time": "18.82",
"alternatives": [
{
"confidence": "1.0000",
"content": "trying"
}
],
"type": "pronunciation"
},
{
"start_time": "18.82",
"end_time": "18.91",
"alternatives": [
{
"confidence": "1.0000",
"content": "to"
}
],
"type": "pronunciation"
},
{
"start_time": "18.91",
"end_time": "19.19",
"alternatives": [
{
"confidence": "1.0000",
"content": "say"
}
],
"type": "pronunciation"
},
{
"start_time": "19.19",
"end_time": "19.32",
"alternatives": [
{
"confidence": "1.0000",
"content": "is"
}
],
"type": "pronunciation"
},
{
"start_time": "19.32",
"end_time": "19.55",
"alternatives": [
{
"confidence": "1.0000",
"content": "that"
}
],
"type": "pronunciation"
},
{
"start_time": "20.03",
"end_time": "20.36",
"alternatives": [
{
"confidence": "1.0000",
"content": "they"
}
],
"type": "pronunciation"
},
{
"start_time": "20.36",
"end_time": "20.93",
"alternatives": [
{
"confidence": "1.0000",
"content": "will"
}
],
"type": "pronunciation"
},
{
"start_time": "21.06",
"end_time": "21.37",
"alternatives": [
{
"confidence": "1.0000",
"content": "work"
}
],
"type": "pronunciation"
},
{
"start_time": "21.37",
"end_time": "21.79",
"alternatives": [
{
"confidence": "1.0000",
"content": "along"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "21.79",
"end_time": "21.83",
"alternatives": [
{
"confidence": "1.0000",
"content": "I"
}
],
"type": "pronunciation"
},
{
"start_time": "21.83",
"end_time": "22.01",
"alternatives": [
{
"confidence": "0.9351",
"content": "know"
}
],
"type": "pronunciation"
},
{
"start_time": "22.01",
"end_time": "22.32",
"alternatives": [
{
"confidence": "0.9950",
"content": "banks"
}
],
"type": "pronunciation"
},
{
"start_time": "22.32",
"end_time": "22.44",
"alternatives": [
{
"confidence": "0.5503",
"content": "have"
}
],
"type": "pronunciation"
},
{
"start_time": "22.44",
"end_time": "22.73",
"alternatives": [
{
"confidence": "0.9973",
"content": "working"
}
],
"type": "pronunciation"
},
{
"start_time": "22.73",
"end_time": "23.19",
"alternatives": [
{
"confidence": "0.9998",
"content": "along"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "23.66",
"end_time": "24.17",
"alternatives": [
{
"confidence": "1.0000",
"content": "If"
}
],
"type": "pronunciation"
},
{
"start_time": "24.18",
"end_time": "24.34",
"alternatives": [
{
"confidence": "0.8498",
"content": "you"
}
],
"type": "pronunciation"
},
{
"start_time": "24.34",
"end_time": "24.44",
"alternatives": [
{
"confidence": "0.9321",
"content": "have"
}
],
"type": "pronunciation"
},
{
"start_time": "24.45",
"end_time": "25.01",
"alternatives": [
{
"confidence": "0.9785",
"content": "mortgages"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": ","
}
],
"type": "punctuation"
},
{
"start_time": "25.01",
"end_time": "25.15",
"alternatives": [
{
"confidence": "0.9988",
"content": "the"
}
],
"type": "pronunciation"
},
{
"start_time": "25.16",
"end_time": "25.8",
"alternatives": [
{
"confidence": "0.9399",
"content": "mortgages"
}
],
"type": "pronunciation"
},
{
"start_time": "25.8",
"end_time": "25.89",
"alternatives": [
{
"confidence": "0.8193",
"content": "and"
}
],
"type": "pronunciation"
},
{
"start_time": "25.89",
"end_time": "26.25",
"alternatives": [
{
"confidence": "0.9820",
"content": "mortgage"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": ","
}
],
"type": "punctuation"
},
{
"start_time": "26.94",
"end_time": "27.18",
"alternatives": [
{
"confidence": "1.0000",
"content": "the"
}
],
"type": "pronunciation"
},
{
"start_time": "27.19",
"end_time": "27.73",
"alternatives": [
{
"confidence": "1.0000",
"content": "folks"
}
],
"type": "pronunciation"
},
{
"start_time": "28.03",
"end_time": "28.83",
"alternatives": [
{
"confidence": "1.0000",
"content": "collecting"
}
],
"type": "pronunciation"
},
{
"start_time": "28.84",
"end_time": "29.32",
"alternatives": [
{
"confidence": "1.0000",
"content": "the"
}
],
"type": "pronunciation"
},
{
"start_time": "29.33",
"end_time": "29.92",
"alternatives": [
{
"confidence": "0.9697",
"content": "interest"
}
],
"type": "pronunciation"
},
{
"start_time": "29.92",
"end_time": "30.12",
"alternatives": [
{
"confidence": "0.9990",
"content": "and"
}
],
"type": "pronunciation"
},
{
"start_time": "30.12",
"end_time": "30.37",
"alternatives": [
{
"confidence": "1.0000",
"content": "all"
}
],
"type": "pronunciation"
},
{
"start_time": "30.37",
"end_time": "30.47",
"alternatives": [
{
"confidence": "1.0000",
"content": "of"
}
],
"type": "pronunciation"
},
{
"start_time": "30.47",
"end_time": "30.71",
"alternatives": [
{
"confidence": "1.0000",
"content": "those"
}
],
"type": "pronunciation"
},
{
"start_time": "30.71",
"end_time": "30.97",
"alternatives": [
{
"confidence": "1.0000",
"content": "things"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": ","
}
],
"type": "punctuation"
},
{
"start_time": "30.97",
"end_time": "31.07",
"alternatives": [
{
"confidence": "0.9775",
"content": "they"
}
],
"type": "pronunciation"
},
{
"start_time": "31.07",
"end_time": "31.29",
"alternatives": [
{
"confidence": "1.0000",
"content": "work"
}
],
"type": "pronunciation"
},
{
"start_time": "31.29",
"end_time": "31.67",
"alternatives": [
{
"confidence": "0.9967",
"content": "along"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "31.92",
"end_time": "32.06",
"alternatives": [
{
"confidence": "1.0000",
"content": "And"
}
],
"type": "pronunciation"
},
{
"start_time": "32.06",
"end_time": "32.24",
"alternatives": [
{
"confidence": "0.9996",
"content": "that's"
}
],
"type": "pronunciation"
},
{
"start_time": "32.24",
"end_time": "32.38",
"alternatives": [
{
"confidence": "1.0000",
"content": "what"
}
],
"type": "pronunciation"
},
{
"start_time": "32.38",
"end_time": "32.78",
"alternatives": [
{
"confidence": "1.0000",
"content": "happens"
}
],
"type": "pronunciation"
},
{
"start_time": "32.78",
"end_time": "32.9",
"alternatives": [
{
"confidence": "1.0000",
"content": "in"
}
],
"type": "pronunciation"
},
{
"start_time": "32.9",
"end_time": "33.18",
"alternatives": [
{
"confidence": "0.5632",
"content": "time"
}
],
"type": "pronunciation"
},
{
"start_time": "33.18",
"end_time": "33.39",
"alternatives": [
{
"confidence": "1.0000",
"content": "like"
}
],
"type": "pronunciation"
},
{
"start_time": "33.39",
"end_time": "33.54",
"alternatives": [
{
"confidence": "0.9908",
"content": "this"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "33.54",
"end_time": "33.64",
"alternatives": [
{
"confidence": "0.9999",
"content": "They"
}
],
"type": "pronunciation"
},
{
"start_time": "33.64",
"end_time": "33.83",
"alternatives": [
{
"confidence": "1.0000",
"content": "know"
}
],
"type": "pronunciation"
},
{
"start_time": "33.83",
"end_time": "33.94",
"alternatives": [
{
"confidence": "0.8501",
"content": "the"
}
],
"type": "pronunciation"
},
{
"start_time": "33.95",
"end_time": "34.23",
"alternatives": [
{
"confidence": "1.0000",
"content": "people"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "34.23",
"end_time": "34.36",
"alternatives": [
{
"confidence": "0.9666",
"content": "They've"
}
],
"type": "pronunciation"
},
{
"start_time": "34.36",
"end_time": "34.48",
"alternatives": [
{
"confidence": "1.0000",
"content": "been"
}
],
"type": "pronunciation"
},
{
"start_time": "34.48",
"end_time": "34.77",
"alternatives": [
{
"confidence": "1.0000",
"content": "dealing"
}
],
"type": "pronunciation"
},
{
"start_time": "34.77",
"end_time": "34.89",
"alternatives": [
{
"confidence": "1.0000",
"content": "with"
}
],
"type": "pronunciation"
},
{
"start_time": "34.89",
"end_time": "35.02",
"alternatives": [
{
"confidence": "0.8215",
"content": "them"
}
],
"type": "pronunciation"
},
{
"start_time": "35.02",
"end_time": "35.14",
"alternatives": [
{
"confidence": "1.0000",
"content": "for"
}
],
"type": "pronunciation"
},
{
"start_time": "35.14",
"end_time": "35.54",
"alternatives": [
{
"confidence": "1.0000",
"content": "years"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": ","
}
],
"type": "punctuation"
},
{
"start_time": "35.78",
"end_time": "35.93",
"alternatives": [
{
"confidence": "1.0000",
"content": "and"
}
],
"type": "pronunciation"
},
{
"start_time": "35.93",
"end_time": "36.01",
"alternatives": [
{
"confidence": "1.0000",
"content": "they"
}
],
"type": "pronunciation"
},
{
"start_time": "36.01",
"end_time": "36.22",
"alternatives": [
{
"confidence": "0.9980",
"content": "work"
}
],
"type": "pronunciation"
},
{
"start_time": "36.22",
"end_time": "36.5",
"alternatives": [
{
"confidence": "1.0000",
"content": "along"
}
],
"type": "pronunciation"
},
{
"start_time": "36.5",
"end_time": "36.6",
"alternatives": [
{
"confidence": "1.0000",
"content": "the"
}
],
"type": "pronunciation"
},
{
"start_time": "36.6",
"end_time": "37.05",
"alternatives": [
{
"confidence": "1.0000",
"content": "grocery"
}
],
"type": "pronunciation"
},
{
"start_time": "37.05",
"end_time": "37.45",
"alternatives": [
{
"confidence": "1.0000",
"content": "store"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "37.96",
"end_time": "38.13",
"alternatives": [
{
"confidence": "0.9997",
"content": "And"
}
],
"type": "pronunciation"
},
{
"start_time": "38.13",
"end_time": "38.17",
"alternatives": [
{
"confidence": "1.0000",
"content": "I"
}
],
"type": "pronunciation"
},
{
"start_time": "38.17",
"end_time": "38.39",
"alternatives": [
{
"confidence": "1.0000",
"content": "think"
}
],
"type": "pronunciation"
},
{
"start_time": "38.39",
"end_time": "38.59",
"alternatives": [
{
"confidence": "1.0000",
"content": "that's"
}
],
"type": "pronunciation"
},
{
"start_time": "38.59",
"end_time": "39.06",
"alternatives": [
{
"confidence": "1.0000",
"content": "probably"
}
],
"type": "pronunciation"
},
{
"start_time": "39.06",
"end_time": "39.27",
"alternatives": [
{
"confidence": "1.0000",
"content": "what"
}
],
"type": "pronunciation"
},
{
"start_time": "39.27",
"end_time": "39.62",
"alternatives": [
{
"confidence": "0.9602",
"content": "Wilbur"
}
],
"type": "pronunciation"
},
{
"start_time": "39.62",
"end_time": "40.14",
"alternatives": [
{
"confidence": "0.9989",
"content": "Ross"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "40.53",
"end_time": "40.73",
"alternatives": [
{
"confidence": "1.0000",
"content": "But"
}
],
"type": "pronunciation"
},
{
"start_time": "40.73",
"end_time": "40.77",
"alternatives": [
{
"confidence": "1.0000",
"content": "I"
}
],
"type": "pronunciation"
},
{
"start_time": "40.77",
"end_time": "41.06",
"alternatives": [
{
"confidence": "0.9988",
"content": "haven't"
}
],
"type": "pronunciation"
},
{
"start_time": "41.06",
"end_time": "41.24",
"alternatives": [
{
"confidence": "1.0000",
"content": "seen"
}
],
"type": "pronunciation"
},
{
"start_time": "41.24",
"end_time": "41.3",
"alternatives": [
{
"confidence": "0.9408",
"content": "a"
}
],
"type": "pronunciation"
},
{
"start_time": "41.3",
"end_time": "41.78",
"alternatives": [
{
"confidence": "1.0000",
"content": "statement"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": ","
}
],
"type": "punctuation"
},
{
"start_time": "41.79",
"end_time": "42.0",
"alternatives": [
{
"confidence": "1.0000",
"content": "but"
}
],
"type": "pronunciation"
},
{
"start_time": "42.0",
"end_time": "42.13",
"alternatives": [
{
"confidence": "1.0000",
"content": "he's"
}
],
"type": "pronunciation"
},
{
"start_time": "42.13",
"end_time": "42.27",
"alternatives": [
{
"confidence": "0.9986",
"content": "done"
}
],
"type": "pronunciation"
},
{
"start_time": "42.27",
"end_time": "42.34",
"alternatives": [
{
"confidence": "1.0000",
"content": "a"
}
],
"type": "pronunciation"
},
{
"start_time": "42.34",
"end_time": "42.6",
"alternatives": [
{
"confidence": "0.9954",
"content": "great"
}
],
"type": "pronunciation"
},
{
"start_time": "42.6",
"end_time": "43.09",
"alternatives": [
{
"confidence": "0.9954",
"content": "job"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": ","
}
],
"type": "punctuation"
},
{
"start_time": "43.41",
"end_time": "43.51",
"alternatives": [
{
"confidence": "1.0000",
"content": "I"
}
],
"type": "pronunciation"
},
{
"start_time": "43.51",
"end_time": "43.65",
"alternatives": [
{
"confidence": "0.9997",
"content": "will"
}
],
"type": "pronunciation"
},
{
"start_time": "43.65",
"end_time": "43.84",
"alternatives": [
{
"confidence": "1.0000",
"content": "tell"
}
],
"type": "pronunciation"
},
{
"start_time": "43.84",
"end_time": "43.97",
"alternatives": [
{
"confidence": "1.0000",
"content": "you"
}
],
"type": "pronunciation"
},
{
"start_time": "43.97",
"end_time": "44.26",
"alternatives": [
{
"confidence": "1.0000",
"content": "that"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": "."
}
],
"type": "punctuation"
},
{
"start_time": "44.27",
"end_time": "44.63",
"alternatives": [
{
"confidence": "1.0000",
"content": "Yes"
}
],
"type": "pronunciation"
},
{
"alternatives": [
{
"confidence": null,
"content": ","
}
],
"type": "punctuation"
},
{
"start_time": "46.28",
"end_time": "46.5",
"alternatives": [
{
"confidence": "0.6760",
"content": "you"
}
],
"type": "pronunciation"
},
{
"start_time": "46.51",
"end_time": "46.73",
"alternatives": [
{
"confidence": "0.3080",
"content": "were"
}
],
"type": "pronunciation"
}
]
},
"status": "COMPLETED"
}
@briankung
Copy link

Wow, I really owe you a coffee sometime. I feel like I find myself in your footsteps all the time. Thanks for posting this!

@briankung
Copy link

Oh wow, I wish the speaker label was embedded in each item. It'd be a lot nicer for differentiating who said what

@briankung
Copy link

briankung commented Oct 9, 2020

So in my case, I've used the following to verify that the item start times and the speaker start times are the same:

TRANSCRIPTION_JSON=path/to/downloaded/file
cat $TRANSCRIPTION_JSON | jq '.results.items |  map([.start_time]) | flatten | del(.[] | nulls)' > item_start_times
cat $TRANSCRIPTION_JSON | jq '.results.speaker_labels.segments | map([.items]) | flatten | map([.start_time]) | flatten' > speaker_start_times

# Diff the files backwards and forwards...

diff item_start_times speaker_start_times
diff speaker_start_times item_start_times

# Oh right, I can just compare sha hashes (on macOS):

$ shasum -a 256 *_start_times
2642201229098c2cb926c7cf8999c7a4070745d94a5a47155ac983a56db8f4ca  item_start_times
2642201229098c2cb926c7cf8999c7a4070745d94a5a47155ac983a56db8f4ca  speaker_start_times

# ...and they're identical

So in my case, the speaker start times were a subset of the item start times (which had more items, some of which had no start_time key, hence the del(.[] | nulls) jq filter). Still, I'm pretty confident that they line up for the most part.

I'm thinking about using the start times to map the transcribed words to the speakers so I can organize the transcript better.

@dannguyen
Copy link
Author

@briankung so I think this gist is pretty old, and I'm unsure of how feature-complete the Transcribe API was when I wrote it.

In any case, I just popped open the Transcribe console and did a test of the real-time streaming endpoint (couldn't find the demo interface for uploading audio files for transcription), and it appears that speaker identification is included in the JSON response:

https://gist.github.com/dannguyen/92990a177d511bdd055ec3817da85238

I can't imagine the response for the non-streaming endpoint not having speaker identification. Too lazy right now to look in the API docs but I'm sure there's a flag for it

@briankung
Copy link

briankung commented Oct 9, 2020 via email

@dannguyen
Copy link
Author

dannguyen commented Oct 10, 2020

@briankung sorry I'm dumb. didn't even read my old gist that had the Senate example. Looks like there is speaker identification #file-transcript-senate-bennett-json, but you were asking if it could be embedded with each transcribed item instead of its own object in the JSON that you then have to process/align on your own. Yeah I'd be surprised if they've changed the output format of this transcribe-job API to include that now ¯\_(ツ)_/¯

@briankung
Copy link

Yeah I tried on my own test file, a podcast, and it didn’t include the speaker identification information in the transcribed items. And no worries! Thanks for posting in the first place, helped a lot.

@rlau1115
Copy link

rlau1115 commented Oct 18, 2020

Thanks for sharing this! Looking to adapt this for a video editing workflow. Do you happen to know if the transcribe API can handle multiple languages at once?

@briankung
Copy link

After poking around with it for a bit, it doesn't seem like it supports multiple languages in a single audio file, but further research may provide more answers. I think you mostly supply a --language-code for the primary language or let it identify the primary language.

What do you mean by multiple languages at once, though?

@rlau1115
Copy link

rlau1115 commented Oct 19, 2020 via email

@briankung
Copy link

briankung commented Oct 19, 2020 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment