-
Notifications
You must be signed in to change notification settings - Fork 0
/
Conan Remembers David Bowie | CONAN on TBS.mp3.json
9420 lines (9420 loc) · 317 KB
/
Conan Remembers David Bowie | CONAN on TBS.mp3.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"metadata": {
"transaction_key": "deprecated",
"request_id": "fb77f861-458c-4255-a0a7-4fcbaae365a2",
"sha256": "38432cda7ff0bc4f26c76e70e8467c685b0f20f4724a7d815623db455bbda1bd",
"created": "2023-02-26T17:10:20.844Z",
"duration": 401.49597,
"channels": 1,
"models": ["125125fb-e391-458e-a227-a60d6426f5d6"],
"model_info": {
"125125fb-e391-458e-a227-a60d6426f5d6": {
"name": "general-enhanced",
"version": "2022-05-18.0",
"arch": "polaris"
}
}
},
"results": {
"channels": [
{
"alternatives": [
{
"transcript": "Obviously, this is a very sad day. Everyone found out that David Bowie passed away yesterday, incredibly sad news. And he was he was on our show several times. Over the years and the man was always outstanding. Now, today, yeah, but people are remembering today People are remembering today what a phenomenal musician David Bowie was, and of course, that's was the case. He was just mind blownly talented. But in my experience, he was also an incredibly nice person He was fun. He was always funny. And we wanted to take a second here and just look back at a few of the fun moments I had with David Bowie over the years. Think about it. You have the coolest hair in rock and roll Thank you. I must say that right. 59. Doesn't he have the he doesn't think so. The guy there. What? There's 1 guy in there. No. He thinks he can do a little better because he has no hair. We share the same birthday. Sorry. You wanna know this the same birthday? Yeah. We yeah. We were drinking buddies way back. We -- Uh-huh. -- I used to fly over to Memphis and we'd, you know, go out for the night on the razz Big Cadillac. Uh-huh. A Cadillac. Is there any truth to any of this? No. I'm just told about this truth. I just had to ask. I want to actually just just take a a brief walk down memory lane. But first of all, just to look at some of the different characters, Liz, put these up because it's good to refresh everybody's memory. Of course, there was the young David It's early on. Then there was Ziggy Stardust, of course. Then there was the Pin White Duke, of course, my personal favorite. And then there was a period there where you were trying different you were trying different personas. No. I don't do this to No. I don't know if other people remember this. We reviewed this once in the show, but you were you were trying different personas that I don't think quite had the commercial appeal. There was the Schwab hunchback Yeah. Remember this at all? Ernie stuff. Yeah. There was the buck tooth wizard. I remember he was And then this is a strange year corn on the cob period. I found it crazy. I don't know what. About your name. Yes. It's a famous thing now that your name initially, David Jones. Yes. It was David Jones. And in the sixties, you had to change it because The monkeys came along and they were just getting popular when I was just starting my career. So I very wisely changed it to Tom Jones. Who story? Who story? I was Tom Jones for about a couple of weeks. And just as I was doing the photo session, he released his record. It's not unusual. And so then I moved on through Then you were David Cassidy. David Cassidy. Yeah. You had a songwriting contest a while ago. Yeah. Tell us about that. I didn't win. You know, I find out about this contest and I'm a bit of a songwriter. And I thought maybe you'd perform it right here and we'd see who had the best song. You don't mind, do you? Okay. Here we go. It's in g. I like g. I love g. Okay. I love g. Here we go. I get you in the middle. There are so many talk show host. But he is clearly better than most He's a handsome man, but I'm not lying. It should be and. And up that line. This wonderful nowness, Conan, O'Brien, Hold on. Here's the good part here. Here's the good part. Wow. Throw. Hold on. You've bust your g string. Now it is really weird because you'll just walk by a TV set here and it's called feed, and it's all that we're hurtful. And it's all the channels are on the on the TV, and there was Tom Brocal -- Right. -- doing, like, over 500 accidents have happened this year. Think about that. And then he went then he went. Think about that. Think about that. You have a a doctor? How old? She's 22 22 months now. Yeah. And she saw the moon we've got a kind of a terrace thing and we were out the other day. And it was still light, but you could see like that half moon thing. And she looked up and saw it. It's the first time she's seen the moon that it's registered. Right. Moon. Oh, that's a moon. Oh. That's It's great when you're discovering things like that for the first time. It's scary when they're like 28 and they're going, boom. That's where it gets. That's what it's time. There were a lot of kids like that in the seventies. Seventies. Yeah. Oh, what I love. Mhmm. You're talking about your your daughter. Do you sing lullabies? Yeah. A single malt nursery rhymes. Nursery rhymes. Yeah. Do you do it in that David Bowie style? Or No. But I could do. Good night. Cool. If you went into a room at night with a microphone and you were just doing You go read. You go read. Do I see this 1 through? Yeah. The mouse ran up the clock. The clock struck 1. The mouse ran down. So I love it, man.",
"confidence": 0.9786614,
"words": [
{
"word": "obviously",
"start": 2.11894,
"end": 2.55872,
"confidence": 0.8507295,
"speaker": 0,
"speaker_confidence": 0.7960589,
"punctuated_word": "Obviously,"
},
{
"word": "this",
"start": 2.55872,
"end": 2.75862,
"confidence": 0.99824184,
"speaker": 0,
"speaker_confidence": 0.7960589,
"punctuated_word": "this"
},
{
"word": "is",
"start": 2.75862,
"end": 2.8385801,
"confidence": 0.9892287,
"speaker": 0,
"speaker_confidence": 0.7960589,
"punctuated_word": "is"
},
{
"word": "a",
"start": 2.8385801,
"end": 2.9585202,
"confidence": 0.9970732,
"speaker": 0,
"speaker_confidence": 0.7960589,
"punctuated_word": "a"
},
{
"word": "very",
"start": 2.9585202,
"end": 3.2783601,
"confidence": 0.99978226,
"speaker": 0,
"speaker_confidence": 0.7960589,
"punctuated_word": "very"
},
{
"word": "sad",
"start": 3.2783601,
"end": 3.6381803,
"confidence": 0.99994683,
"speaker": 0,
"speaker_confidence": 0.7960589,
"punctuated_word": "sad"
},
{
"word": "day",
"start": 3.6381803,
"end": 4.1381803,
"confidence": 0.8854444,
"speaker": 0,
"speaker_confidence": 0.7960589,
"punctuated_word": "day."
},
{
"word": "everyone",
"start": 4.3978,
"end": 4.83758,
"confidence": 0.9909101,
"speaker": 0,
"speaker_confidence": 0.7960589,
"punctuated_word": "Everyone"
},
{
"word": "found",
"start": 4.83758,
"end": 5.11744,
"confidence": 0.9884964,
"speaker": 0,
"speaker_confidence": 0.7960589,
"punctuated_word": "found"
},
{
"word": "out",
"start": 5.11744,
"end": 5.3573203,
"confidence": 0.998536,
"speaker": 0,
"speaker_confidence": 0.7960589,
"punctuated_word": "out"
},
{
"word": "that",
"start": 5.3573203,
"end": 5.8370805,
"confidence": 0.9978829,
"speaker": 0,
"speaker_confidence": 0.7960589,
"punctuated_word": "that"
},
{
"word": "david",
"start": 5.8370805,
"end": 6.1969004,
"confidence": 0.99784523,
"speaker": 0,
"speaker_confidence": 0.7960589,
"punctuated_word": "David"
},
{
"word": "bowie",
"start": 6.1969004,
"end": 6.6969004,
"confidence": 0.99969286,
"speaker": 0,
"speaker_confidence": 0.7960589,
"punctuated_word": "Bowie"
},
{
"word": "passed",
"start": 6.95652,
"end": 7.3163404,
"confidence": 0.9946739,
"speaker": 0,
"speaker_confidence": 0.7960589,
"punctuated_word": "passed"
},
{
"word": "away",
"start": 7.3163404,
"end": 7.795,
"confidence": 0.9998315,
"speaker": 0,
"speaker_confidence": 0.7960589,
"punctuated_word": "away"
},
{
"word": "yesterday",
"start": 7.91494,
"end": 8.41494,
"confidence": 0.8291566,
"speaker": 0,
"speaker_confidence": 0.7960589,
"punctuated_word": "yesterday,"
},
{
"word": "incredibly",
"start": 8.75452,
"end": 9.25452,
"confidence": 0.9888122,
"speaker": 0,
"speaker_confidence": 0.7960589,
"punctuated_word": "incredibly"
},
{
"word": "sad",
"start": 9.63408,
"end": 9.95392,
"confidence": 0.99958014,
"speaker": 0,
"speaker_confidence": 0.7960589,
"punctuated_word": "sad"
},
{
"word": "news",
"start": 9.95392,
"end": 10.45392,
"confidence": 0.7218022,
"speaker": 0,
"speaker_confidence": 0.7960589,
"punctuated_word": "news."
},
{
"word": "and",
"start": 11.55312,
"end": 12.05312,
"confidence": 0.9931694,
"speaker": 0,
"speaker_confidence": 0.7960589,
"punctuated_word": "And"
},
{
"word": "he",
"start": 12.31274,
"end": 12.47266,
"confidence": 0.96070963,
"speaker": 0,
"speaker_confidence": 0.7960589,
"punctuated_word": "he"
},
{
"word": "was",
"start": 12.47266,
"end": 12.97266,
"confidence": 0.99913687,
"speaker": 0,
"speaker_confidence": 0.7960589,
"punctuated_word": "was"
},
{
"word": "he",
"start": 13.072361,
"end": 13.192301,
"confidence": 0.93874234,
"speaker": 0,
"speaker_confidence": 0.7960589,
"punctuated_word": "he"
},
{
"word": "was",
"start": 13.192301,
"end": 13.352221,
"confidence": 0.9999589,
"speaker": 0,
"speaker_confidence": 0.7960589,
"punctuated_word": "was"
},
{
"word": "on",
"start": 13.352221,
"end": 13.51214,
"confidence": 0.999329,
"speaker": 0,
"speaker_confidence": 0.7960589,
"punctuated_word": "on"
},
{
"word": "our",
"start": 13.51214,
"end": 13.75202,
"confidence": 0.9983503,
"speaker": 0,
"speaker_confidence": 0.7960589,
"punctuated_word": "our"
},
{
"word": "show",
"start": 13.75202,
"end": 14.25202,
"confidence": 0.99961454,
"speaker": 0,
"speaker_confidence": 0.7960589,
"punctuated_word": "show"
},
{
"word": "several",
"start": 14.431681,
"end": 14.91144,
"confidence": 0.99545956,
"speaker": 0,
"speaker_confidence": 0.7960589,
"punctuated_word": "several"
},
{
"word": "times",
"start": 14.91144,
"end": 15.41144,
"confidence": 0.67669576,
"speaker": 0,
"speaker_confidence": 0.7960589,
"punctuated_word": "times."
},
{
"word": "over",
"start": 15.7299,
"end": 16.00976,
"confidence": 0.9809738,
"speaker": 0,
"speaker_confidence": 0.7960589,
"punctuated_word": "Over"
},
{
"word": "the",
"start": 16.00976,
"end": 16.169682,
"confidence": 0.99834895,
"speaker": 0,
"speaker_confidence": 0.5956336,
"punctuated_word": "the"
},
{
"word": "years",
"start": 16.169682,
"end": 16.669682,
"confidence": 0.9998057,
"speaker": 0,
"speaker_confidence": 0.5956336,
"punctuated_word": "years"
},
{
"word": "and",
"start": 16.84934,
"end": 17.20916,
"confidence": 0.48598462,
"speaker": 0,
"speaker_confidence": 0.5956336,
"punctuated_word": "and"
},
{
"word": "the",
"start": 17.20916,
"end": 17.369081,
"confidence": 0.99640936,
"speaker": 0,
"speaker_confidence": 0.5956336,
"punctuated_word": "the"
},
{
"word": "man",
"start": 17.369081,
"end": 17.568981,
"confidence": 0.9284792,
"speaker": 0,
"speaker_confidence": 0.5956336,
"punctuated_word": "man"
},
{
"word": "was",
"start": 17.568981,
"end": 17.80886,
"confidence": 0.99988973,
"speaker": 0,
"speaker_confidence": 0.5956336,
"punctuated_word": "was"
},
{
"word": "always",
"start": 17.80886,
"end": 18.30886,
"confidence": 0.99991965,
"speaker": 0,
"speaker_confidence": 0.5956336,
"punctuated_word": "always"
},
{
"word": "outstanding",
"start": 18.568481,
"end": 19.068481,
"confidence": 0.9856465,
"speaker": 0,
"speaker_confidence": 0.5956336,
"punctuated_word": "outstanding."
},
{
"word": "now",
"start": 19.927801,
"end": 20.427801,
"confidence": 0.8498341,
"speaker": 0,
"speaker_confidence": 0.5956336,
"punctuated_word": "Now,"
},
{
"word": "today",
"start": 20.44754,
"end": 20.847342,
"confidence": 0.7556101,
"speaker": 1,
"speaker_confidence": 0.526839,
"punctuated_word": "today,"
},
{
"word": "yeah",
"start": 20.847342,
"end": 21.127201,
"confidence": 0.91958445,
"speaker": 1,
"speaker_confidence": 0.526839,
"punctuated_word": "yeah,"
},
{
"word": "but",
"start": 21.127201,
"end": 21.3271,
"confidence": 0.4261896,
"speaker": 1,
"speaker_confidence": 0.526839,
"punctuated_word": "but"
},
{
"word": "people",
"start": 21.3271,
"end": 21.60696,
"confidence": 0.99644756,
"speaker": 1,
"speaker_confidence": 0.526839,
"punctuated_word": "people"
},
{
"word": "are",
"start": 21.60696,
"end": 21.726902,
"confidence": 0.41697705,
"speaker": 1,
"speaker_confidence": 0.526839,
"punctuated_word": "are"
},
{
"word": "remembering",
"start": 21.726902,
"end": 22.226902,
"confidence": 0.99965703,
"speaker": 1,
"speaker_confidence": 0.526839,
"punctuated_word": "remembering"
},
{
"word": "today",
"start": 22.326601,
"end": 22.826601,
"confidence": 0.98999184,
"speaker": 1,
"speaker_confidence": 0.526839,
"punctuated_word": "today"
},
{
"word": "people",
"start": 26.143442,
"end": 26.383322,
"confidence": 0.6737642,
"speaker": 0,
"speaker_confidence": 0.47016132,
"punctuated_word": "People"
},
{
"word": "are",
"start": 26.383322,
"end": 26.543242,
"confidence": 0.98995227,
"speaker": 0,
"speaker_confidence": 0.47016132,
"punctuated_word": "are"
},
{
"word": "remembering",
"start": 26.543242,
"end": 27.043242,
"confidence": 0.99830127,
"speaker": 0,
"speaker_confidence": 0.47016132,
"punctuated_word": "remembering"
},
{
"word": "today",
"start": 28.102463,
"end": 28.502262,
"confidence": 0.72973347,
"speaker": 0,
"speaker_confidence": 0.47016132,
"punctuated_word": "today"
},
{
"word": "what",
"start": 28.502262,
"end": 28.702162,
"confidence": 0.86257154,
"speaker": 0,
"speaker_confidence": 0.47016132,
"punctuated_word": "what"
},
{
"word": "a",
"start": 28.702162,
"end": 28.822102,
"confidence": 0.99911886,
"speaker": 0,
"speaker_confidence": 0.47016132,
"punctuated_word": "a"
},
{
"word": "phenomenal",
"start": 28.822102,
"end": 29.322102,
"confidence": 0.9989937,
"speaker": 0,
"speaker_confidence": 0.47016132,
"punctuated_word": "phenomenal"
},
{
"word": "musician",
"start": 29.501762,
"end": 30.001762,
"confidence": 0.99986243,
"speaker": 0,
"speaker_confidence": 0.47016132,
"punctuated_word": "musician"
},
{
"word": "david",
"start": 30.38132,
"end": 30.741142,
"confidence": 0.97456837,
"speaker": 0,
"speaker_confidence": 0.47016132,
"punctuated_word": "David"
},
{
"word": "bowie",
"start": 30.741142,
"end": 31.241142,
"confidence": 0.9993401,
"speaker": 0,
"speaker_confidence": 0.47016132,
"punctuated_word": "Bowie"
},
{
"word": "was",
"start": 31.460781,
"end": 31.900562,
"confidence": 0.7050859,
"speaker": 0,
"speaker_confidence": 0.47016132,
"punctuated_word": "was,"
},
{
"word": "and",
"start": 31.900562,
"end": 32.060482,
"confidence": 0.9994697,
"speaker": 0,
"speaker_confidence": 0.47016132,
"punctuated_word": "and"
},
{
"word": "of",
"start": 32.060482,
"end": 32.2204,
"confidence": 0.77772903,
"speaker": 0,
"speaker_confidence": 0.47016132,
"punctuated_word": "of"
},
{
"word": "course",
"start": 32.2204,
"end": 32.710003,
"confidence": 0.9094194,
"speaker": 0,
"speaker_confidence": 0.47016132,
"punctuated_word": "course,"
},
{
"word": "that's",
"start": 32.869923,
"end": 33.369923,
"confidence": 0.6414344,
"speaker": 0,
"speaker_confidence": 0.47016132,
"punctuated_word": "that's"
},
{
"word": "was",
"start": 33.789463,
"end": 34.069324,
"confidence": 0.6270328,
"speaker": 0,
"speaker_confidence": 0.47016132,
"punctuated_word": "was"
},
{
"word": "the",
"start": 34.069324,
"end": 34.269222,
"confidence": 0.9998081,
"speaker": 0,
"speaker_confidence": 0.47016132,
"punctuated_word": "the"
},
{
"word": "case",
"start": 34.269222,
"end": 34.769222,
"confidence": 0.9544137,
"speaker": 0,
"speaker_confidence": 0.47016132,
"punctuated_word": "case."
},
{
"word": "he",
"start": 35.188763,
"end": 35.348682,
"confidence": 0.995785,
"speaker": 0,
"speaker_confidence": 0.47016132,
"punctuated_word": "He"
},
{
"word": "was",
"start": 35.348682,
"end": 35.548584,
"confidence": 0.99891907,
"speaker": 0,
"speaker_confidence": 0.47016132,
"punctuated_word": "was"
},
{
"word": "just",
"start": 35.548584,
"end": 35.788464,
"confidence": 0.9950757,
"speaker": 0,
"speaker_confidence": 0.47016132,
"punctuated_word": "just"
},
{
"word": "mind",
"start": 35.788464,
"end": 36.06832,
"confidence": 0.9999174,
"speaker": 0,
"speaker_confidence": 0.47016132,
"punctuated_word": "mind"
},
{
"word": "blownly",
"start": 36.06832,
"end": 36.468124,
"confidence": 0.6654136,
"speaker": 0,
"speaker_confidence": 0.47016132,
"punctuated_word": "blownly"
},
{
"word": "talented",
"start": 36.468124,
"end": 36.968124,
"confidence": 0.8758391,
"speaker": 0,
"speaker_confidence": 0.47016132,
"punctuated_word": "talented."
},
{
"word": "but",
"start": 37.387665,
"end": 37.627544,
"confidence": 0.99872977,
"speaker": 0,
"speaker_confidence": 0.47016132,
"punctuated_word": "But"
},
{
"word": "in",
"start": 37.627544,
"end": 37.827442,
"confidence": 0.9249879,
"speaker": 0,
"speaker_confidence": 0.47016132,
"punctuated_word": "in"
},
{
"word": "my",
"start": 37.827442,
"end": 38.027344,
"confidence": 0.999796,
"speaker": 0,
"speaker_confidence": 0.47016132,
"punctuated_word": "my"
},
{
"word": "experience",
"start": 38.027344,
"end": 38.507103,
"confidence": 0.91513145,
"speaker": 0,
"speaker_confidence": 0.47016132,
"punctuated_word": "experience,"
},
{
"word": "he",
"start": 38.507103,
"end": 38.627045,
"confidence": 0.99930495,
"speaker": 0,
"speaker_confidence": 0.47016132,
"punctuated_word": "he"
},
{
"word": "was",
"start": 38.627045,
"end": 38.786964,
"confidence": 0.99960274,
"speaker": 0,
"speaker_confidence": 0.47016132,
"punctuated_word": "was"
},
{
"word": "also",
"start": 38.786964,
"end": 39.066822,
"confidence": 0.99968207,
"speaker": 0,
"speaker_confidence": 0.47016132,
"punctuated_word": "also"
},
{
"word": "an",
"start": 39.066822,
"end": 39.22674,
"confidence": 0.9987474,
"speaker": 0,
"speaker_confidence": 0.8594136,
"punctuated_word": "an"
},
{
"word": "incredibly",
"start": 39.22674,
"end": 39.72674,
"confidence": 0.9998525,
"speaker": 0,
"speaker_confidence": 0.8594136,
"punctuated_word": "incredibly"
},
{
"word": "nice",
"start": 40.146282,
"end": 40.506104,
"confidence": 0.9998262,
"speaker": 0,
"speaker_confidence": 0.8594136,
"punctuated_word": "nice"
},
{
"word": "person",
"start": 40.506104,
"end": 41.006104,
"confidence": 0.99979323,
"speaker": 0,
"speaker_confidence": 0.8594136,
"punctuated_word": "person"
},
{
"word": "he",
"start": 41.474922,
"end": 41.674824,
"confidence": 0.4722406,
"speaker": 0,
"speaker_confidence": 0.8594136,
"punctuated_word": "He"
},
{
"word": "was",
"start": 41.674824,
"end": 42.03464,
"confidence": 0.9999648,
"speaker": 0,
"speaker_confidence": 0.8594136,
"punctuated_word": "was"
},
{
"word": "fun",
"start": 42.03464,
"end": 42.53464,
"confidence": 0.8310473,
"speaker": 0,
"speaker_confidence": 0.8594136,
"punctuated_word": "fun."
},
{
"word": "he",
"start": 42.834244,
"end": 43.03414,
"confidence": 0.9995972,
"speaker": 0,
"speaker_confidence": 0.8594136,
"punctuated_word": "He"
},
{
"word": "was",
"start": 43.03414,
"end": 43.35398,
"confidence": 0.99995494,
"speaker": 0,
"speaker_confidence": 0.8594136,
"punctuated_word": "was"
},
{
"word": "always",
"start": 43.35398,
"end": 43.85398,
"confidence": 0.99978495,
"speaker": 0,
"speaker_confidence": 0.8594136,
"punctuated_word": "always"
},
{
"word": "funny",
"start": 44.313503,
"end": 44.813503,
"confidence": 0.90813315,
"speaker": 0,
"speaker_confidence": 0.8594136,
"punctuated_word": "funny."
},
{
"word": "and",
"start": 45.113102,
"end": 45.313004,
"confidence": 0.95506287,
"speaker": 0,
"speaker_confidence": 0.8594136,
"punctuated_word": "And"
},
{
"word": "we",
"start": 45.313004,
"end": 45.472923,
"confidence": 0.95801127,
"speaker": 0,
"speaker_confidence": 0.8594136,
"punctuated_word": "we"
},
{
"word": "wanted",
"start": 45.472923,
"end": 45.792763,
"confidence": 0.5441095,
"speaker": 0,
"speaker_confidence": 0.8594136,
"punctuated_word": "wanted"
},
{
"word": "to",
"start": 45.792763,
"end": 45.912704,
"confidence": 0.9909861,
"speaker": 0,
"speaker_confidence": 0.8594136,
"punctuated_word": "to"
},
{
"word": "take",
"start": 45.912704,
"end": 46.412704,
"confidence": 0.9992565,
"speaker": 0,
"speaker_confidence": 0.8594136,
"punctuated_word": "take"
},
{
"word": "a",
"start": 46.43244,
"end": 46.552383,
"confidence": 0.99890685,
"speaker": 0,
"speaker_confidence": 0.8594136,
"punctuated_word": "a"
},
{
"word": "second",
"start": 46.552383,
"end": 46.9122,
"confidence": 0.99994403,
"speaker": 0,
"speaker_confidence": 0.8594136,
"punctuated_word": "second"
},
{
"word": "here",
"start": 46.9122,
"end": 47.152084,
"confidence": 0.99936724,
"speaker": 0,
"speaker_confidence": 0.8594136,
"punctuated_word": "here"
},
{
"word": "and",
"start": 47.152084,
"end": 47.312004,
"confidence": 0.96873254,
"speaker": 0,
"speaker_confidence": 0.8594136,
"punctuated_word": "and"
},
{
"word": "just",
"start": 47.312004,
"end": 47.59186,
"confidence": 0.99950737,
"speaker": 0,
"speaker_confidence": 0.8594136,
"punctuated_word": "just"
},
{
"word": "look",
"start": 47.59186,
"end": 47.871723,
"confidence": 0.99942493,
"speaker": 0,
"speaker_confidence": 0.8594136,
"punctuated_word": "look"
},
{
"word": "back",
"start": 47.871723,
"end": 48.371723,
"confidence": 0.9996128,
"speaker": 0,
"speaker_confidence": 0.8594136,
"punctuated_word": "back"
},
{
"word": "at",
"start": 48.629944,
"end": 48.82984,
"confidence": 0.58513504,
"speaker": 0,
"speaker_confidence": 0.8594136,
"punctuated_word": "at"
},
{
"word": "a",
"start": 48.82984,
"end": 48.949783,
"confidence": 0.99772865,
"speaker": 0,
"speaker_confidence": 0.8594136,
"punctuated_word": "a"
},
{
"word": "few",
"start": 48.949783,
"end": 49.189663,
"confidence": 0.9996265,
"speaker": 0,
"speaker_confidence": 0.8594136,
"punctuated_word": "few"
},
{
"word": "of",
"start": 49.189663,
"end": 49.3096,
"confidence": 0.9889309,
"speaker": 0,
"speaker_confidence": 0.8594136,
"punctuated_word": "of"
},
{
"word": "the",
"start": 49.3096,
"end": 49.429543,
"confidence": 0.9993734,
"speaker": 0,
"speaker_confidence": 0.8594136,
"punctuated_word": "the"
},
{
"word": "fun",
"start": 49.429543,
"end": 49.669422,
"confidence": 0.99977154,
"speaker": 0,
"speaker_confidence": 0.8594136,
"punctuated_word": "fun"
},
{
"word": "moments",
"start": 49.669422,
"end": 50.14918,
"confidence": 0.99992865,
"speaker": 0,
"speaker_confidence": 0.8594136,
"punctuated_word": "moments"
},
{
"word": "i",
"start": 50.14918,
"end": 50.269123,
"confidence": 0.99181175,
"speaker": 0,
"speaker_confidence": 0.8594136,
"punctuated_word": "I"
},
{
"word": "had",
"start": 50.269123,