-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtranscript-in-person-discussion-13-people.json
More file actions
1786 lines (1786 loc) · 74.7 KB
/
Copy pathtranscript-in-person-discussion-13-people.json
File metadata and controls
1786 lines (1786 loc) · 74.7 KB
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
[
{
"file": "outputs/0.4978125-9.289687500000003-SPEAKER_00.wav",
"text": " Sometimes it just gets to be too many damn letters. You know what I'm saying? I don't actually like, it just you add in letters on, so like sometimes I appreciate it and then other times I'm like, it's too many damn letters.",
"start": 0.4978125,
"end": 9.289687500000003,
"speaker": "SPEAKER_00",
"url": "https://youtu.be/utW1ItcMeJw?t=0"
},
{
"file": "outputs/2.4384375-2.6578125000000004-SPEAKER_01.wav",
"text": "",
"start": 2.4384375,
"end": 2.6578125000000004,
"speaker": "SPEAKER_01",
"url": "https://youtu.be/utW1ItcMeJw?t=2"
},
{
"file": "outputs/2.9953125-3.0290625-SPEAKER_01.wav",
"text": "",
"start": 2.9953125,
"end": 3.0290625,
"speaker": "SPEAKER_01",
"url": "https://youtu.be/utW1ItcMeJw?t=2"
},
{
"file": "outputs/22.8740625-49.485937500000006-SPEAKER_07.wav",
"text": " So my name is Ariel. My pronouns are she, her, hers. And I am going to be moderating the panel. Now, I just want to call something out right away, which is that we try our best to have as many people from varied backgrounds and varied identities represented here. But of course, it is impossible for us to represent every single facet of the LGBTQ community. So we know that, and we just want to call that out.",
"start": 22.8740625,
"end": 49.485937500000006,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=22"
},
{
"file": "outputs/49.65468750000001-55.071562500000006-SPEAKER_07.wav",
"text": " So the first thing I want to ask is raise your hand if you identify as a member of the LGBTQ community.",
"start": 49.65468750000001,
"end": 55.071562500000006,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=49"
},
{
"file": "outputs/56.978437500000005-57.3328125-SPEAKER_07.wav",
"text": " dabei.",
"start": 56.978437500000005,
"end": 57.3328125,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=56"
},
{
"file": "outputs/57.602812500000006-63.35718750000001-SPEAKER_07.wav",
"text": " Can I have everybody go around and just tell me their names and how they identify?",
"start": 57.602812500000006,
"end": 63.35718750000001,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=57"
},
{
"file": "outputs/63.7621875-72.3346875-SPEAKER_08.wav",
"text": " Sure, well, my name is Donnie and I use he-him pronouns and I identify as a transgender, sexual or bisexual man.",
"start": 63.7621875,
"end": 72.3346875,
"speaker": "SPEAKER_08",
"url": "https://youtu.be/utW1ItcMeJw?t=63"
},
{
"file": "outputs/72.3346875-72.4021875-SPEAKER_03.wav",
"text": "",
"start": 72.3346875,
"end": 72.4021875,
"speaker": "SPEAKER_03",
"url": "https://youtu.be/utW1ItcMeJw?t=72"
},
{
"file": "outputs/72.4021875-72.4359375-SPEAKER_08.wav",
"text": "",
"start": 72.4021875,
"end": 72.4359375,
"speaker": "SPEAKER_08",
"url": "https://youtu.be/utW1ItcMeJw?t=72"
},
{
"file": "outputs/72.4359375-75.0009375-SPEAKER_03.wav",
"text": " My name is Blair, I'm transgender and I'm a Republican.",
"start": 72.4359375,
"end": 75.0009375,
"speaker": "SPEAKER_03",
"url": "https://youtu.be/utW1ItcMeJw?t=72"
},
{
"file": "outputs/76.5365625-80.8565625-SPEAKER_12.wav",
"text": " My name is Caleb, I use Heeshe and Dave pronouns, and I identify as a non-binary queer.",
"start": 76.5365625,
"end": 80.8565625,
"speaker": "SPEAKER_12",
"url": "https://youtu.be/utW1ItcMeJw?t=76"
},
{
"file": "outputs/82.0378125-87.8934375-SPEAKER_04.wav",
"text": " I'm Raquel Willis, pronounce she or hers, identify the black, queer, transgender woman.",
"start": 82.0378125,
"end": 87.8934375,
"speaker": "SPEAKER_04",
"url": "https://youtu.be/utW1ItcMeJw?t=82"
},
{
"file": "outputs/89.0409375-91.3190625-SPEAKER_05.wav",
"text": " My name is Sarah Longwell and I identify as a lesbian.",
"start": 89.0409375,
"end": 91.3190625,
"speaker": "SPEAKER_05",
"url": "https://youtu.be/utW1ItcMeJw?t=89"
},
{
"file": "outputs/92.6690625-100.9378125-SPEAKER_09.wav",
"text": " My name is Jamie. I use they-them pronouns. Identifies a queer, non-binary trans-fem. I also identify the eighth spectrum of asexuality.",
"start": 92.6690625,
"end": 100.9378125,
"speaker": "SPEAKER_09",
"url": "https://youtu.be/utW1ItcMeJw?t=92"
},
{
"file": "outputs/100.9378125-100.9884375-SPEAKER_01.wav",
"text": "",
"start": 100.9378125,
"end": 100.9884375,
"speaker": "SPEAKER_01",
"url": "https://youtu.be/utW1ItcMeJw?t=100"
},
{
"file": "outputs/101.2415625-105.2071875-SPEAKER_01.wav",
"text": " I'm Benji, I'm a guy, and I'm an American.",
"start": 101.2415625,
"end": 105.2071875,
"speaker": "SPEAKER_01",
"url": "https://youtu.be/utW1ItcMeJw?t=101"
},
{
"file": "outputs/105.2071875-109.2909375-SPEAKER_10.wav",
"text": " My name is Paul. I identify as a gay American male.",
"start": 105.2071875,
"end": 109.2909375,
"speaker": "SPEAKER_10",
"url": "https://youtu.be/utW1ItcMeJw?t=105"
},
{
"file": "outputs/110.3878125-115.3996875-SPEAKER_11.wav",
"text": " My name is Zach Rezane. I use he-him pronouns and I identify as bisexual and queer.",
"start": 110.3878125,
"end": 115.3996875,
"speaker": "SPEAKER_11",
"url": "https://youtu.be/utW1ItcMeJw?t=110"
},
{
"file": "outputs/116.4459375-118.5890625-SPEAKER_02.wav",
"text": " Brandon Strock and I'm a gay man.",
"start": 116.4459375,
"end": 118.5890625,
"speaker": "SPEAKER_02",
"url": "https://youtu.be/utW1ItcMeJw?t=116"
},
{
"file": "outputs/119.46656250000001-119.5003125-SPEAKER_02.wav",
"text": "",
"start": 119.46656250000001,
"end": 119.5003125,
"speaker": "SPEAKER_02",
"url": "https://youtu.be/utW1ItcMeJw?t=119"
},
{
"file": "outputs/119.5003125-124.0228125-SPEAKER_00.wav",
"text": " David Valbranche, he and his identify as a cis same gender loving man.",
"start": 119.5003125,
"end": 124.0228125,
"speaker": "SPEAKER_00",
"url": "https://youtu.be/utW1ItcMeJw?t=119"
},
{
"file": "outputs/124.9171875-126.65531250000001-SPEAKER_06.wav",
"text": " Alright, my name is Lucy, I'm a lesbian.",
"start": 124.9171875,
"end": 126.65531250000001,
"speaker": "SPEAKER_06",
"url": "https://youtu.be/utW1ItcMeJw?t=124"
},
{
"file": "outputs/127.5665625-135.93656249999998-SPEAKER_07.wav",
"text": " OK, so it's Pride Month. Who here thinks that Pride is still relevant? Is it still relevant? Is it useful? Is it important? Yeah.",
"start": 127.5665625,
"end": 135.93656249999998,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=127"
},
{
"file": "outputs/135.93656249999998-151.42781250000002-SPEAKER_03.wav",
"text": " I think it's more so relevant for people in other countries in which being gay is legalized and you can face jail time or worse death or for being gay. And I think here it's more of a party, which is fine, not against parties, but I think it's especially important for people living in other countries.",
"start": 135.93656249999998,
"end": 151.42781250000002,
"speaker": "SPEAKER_03",
"url": "https://youtu.be/utW1ItcMeJw?t=135"
},
{
"file": "outputs/151.6303125-153.5709375-SPEAKER_07.wav",
"text": " Zachary, your brow is very firm.",
"start": 151.6303125,
"end": 153.5709375,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=151"
},
{
"file": "outputs/154.21218750000003-154.9378125-SPEAKER_07.wav",
"text": " Um.",
"start": 154.21218750000003,
"end": 154.9378125,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=154"
},
{
"file": "outputs/154.9378125-155.37656249999998-SPEAKER_11.wav",
"text": "",
"start": 154.9378125,
"end": 155.37656249999998,
"speaker": "SPEAKER_11",
"url": "https://youtu.be/utW1ItcMeJw?t=154"
},
{
"file": "outputs/155.4609375-155.4946875-SPEAKER_11.wav",
"text": "",
"start": 155.4609375,
"end": 155.4946875,
"speaker": "SPEAKER_11",
"url": "https://youtu.be/utW1ItcMeJw?t=155"
},
{
"file": "outputs/157.1821875-182.0053125-SPEAKER_11.wav",
"text": " Yeah, I don't think we should underestimate the power it has to have certain young queer people just to see other people be visible, to be welcome in part of a community. Maybe not necessarily as important in cities like New York, where I feel very comfortable expressing my queerness, but especially in other places across America, where they don't have that large of a queer community, where being queer isn't as visible. I think it's really important to solve pride for those people.",
"start": 157.1821875,
"end": 182.0053125,
"speaker": "SPEAKER_11",
"url": "https://youtu.be/utW1ItcMeJw?t=157"
},
{
"file": "outputs/182.0053125-211.19906250000003-SPEAKER_00.wav",
"text": " And I also think it's important because in this day and age we've had about five black transgender women be murdered in the past couple months. And so we do need to actually have those. I'm laughing. 11. So it's even more than that. So it's one of those things where if we don't have these images out, that we don't have these options for people to realize and understand that they're not alone, then all they see are these traumatic experiences and all the discrimination and oppression that is still happening in this country, not just in other countries.",
"start": 182.0053125,
"end": 211.19906250000003,
"speaker": "SPEAKER_00",
"url": "https://youtu.be/utW1ItcMeJw?t=182"
},
{
"file": "outputs/211.4690625-226.70718750000003-SPEAKER_10.wav",
"text": " I'm going to just claim the mantle as the senior spokesman of the group. But I went to my first gay bar in 1977 in West Hollywood. There were actually bars and restaurants on Santa Monica Boulevard that had signs in front that said no faggots allowed. It was a very different place.",
"start": 211.4690625,
"end": 226.70718750000003,
"speaker": "SPEAKER_10",
"url": "https://youtu.be/utW1ItcMeJw?t=211"
},
{
"file": "outputs/227.0446875-248.29031250000003-SPEAKER_10.wav",
"text": " I think pride today should really embrace the changes that we've made over these decades because we've made it a more inclusive society to the point where I think we're one of the most protected groups. I know from an employment standard in history. So I'd like to see pride really take on a different sort of approach and celebrate what we've overcome.",
"start": 227.0446875,
"end": 248.29031250000003,
"speaker": "SPEAKER_10",
"url": "https://youtu.be/utW1ItcMeJw?t=227"
},
{
"file": "outputs/249.03281250000003-258.46593750000005-SPEAKER_07.wav",
"text": " In your opinion, do you think that we're done working on equality within the LGBTQ community? Is there still a fight to fight? Yes. Notenci",
"start": 249.03281250000003,
"end": 258.46593750000005,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=249"
},
{
"file": "outputs/257.3859375-280.6565625-SPEAKER_12.wav",
"text": " Yes, I'm from a small town in Texas, and where I'm from, people do not accept me being gay, me being queer, me being gender expensive or anything. And I come, I was raised two hours away from where Malaysia, which black transformed woman and Dallas, Texas was killed. So I don't think that the equality that we want to see, the equality that we should see is actually happening in America now.",
"start": 257.3859375,
"end": 280.6565625,
"speaker": "SPEAKER_12",
"url": "https://youtu.be/utW1ItcMeJw?t=257"
},
{
"file": "outputs/280.6565625-292.38468750000004-SPEAKER_02.wav",
"text": " I'm sorry, could I ask a question? Because I think this is really important and relevant. I feel like the majority of people who feel like they're still struggling with lack of equality are people who are identifying as queer.",
"start": 280.6565625,
"end": 292.38468750000004,
"speaker": "SPEAKER_02",
"url": "https://youtu.be/utW1ItcMeJw?t=280"
},
{
"file": "outputs/292.94156250000003-302.79656250000005-SPEAKER_02.wav",
"text": " I don't identify as queer. That does not define me. That's not a word I want to be called as a gay man. So what I'd like to know is what is the definition of queer? For the people who identify as queer, what does that mean?",
"start": 292.94156250000003,
"end": 302.79656250000005,
"speaker": "SPEAKER_02",
"url": "https://youtu.be/utW1ItcMeJw?t=292"
},
{
"file": "outputs/302.8471875-304.3490625-SPEAKER_03.wav",
"text": " I've always known how to play. I've always known how to play.",
"start": 302.8471875,
"end": 304.3490625,
"speaker": "SPEAKER_03",
"url": "https://youtu.be/utW1ItcMeJw?t=302"
},
{
"file": "outputs/305.0240625-308.3315625-SPEAKER_02.wav",
"text": " I think we just have to have the discussion if we don't establish that.",
"start": 305.0240625,
"end": 308.3315625,
"speaker": "SPEAKER_02",
"url": "https://youtu.be/utW1ItcMeJw?t=305"
},
{
"file": "outputs/305.0915625-305.95218750000004-SPEAKER_03.wav",
"text": " ore",
"start": 305.0915625,
"end": 305.95218750000004,
"speaker": "SPEAKER_03",
"url": "https://youtu.be/utW1ItcMeJw?t=305"
},
{
"file": "outputs/305.95218750000004-306.30656250000004-SPEAKER_07.wav",
"text": " u",
"start": 305.95218750000004,
"end": 306.30656250000004,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=305"
},
{
"file": "outputs/308.1965625-313.44468750000004-SPEAKER_07.wav",
"text": " That's a good conversation, that's a good point. Who here identifies as queer, razor-hack?",
"start": 308.1965625,
"end": 313.44468750000004,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=308"
},
{
"file": "outputs/316.0265625-318.3553125-SPEAKER_07.wav",
"text": " for the people who didn't raise their hands.",
"start": 316.0265625,
"end": 318.3553125,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=316"
},
{
"file": "outputs/318.6928125-321.4096875-SPEAKER_07.wav",
"text": " Why? What are your thoughts and feelings on the word queer?",
"start": 318.6928125,
"end": 321.4096875,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=318"
},
{
"file": "outputs/321.42656250000005-321.4434375-SPEAKER_07.wav",
"text": "",
"start": 321.42656250000005,
"end": 321.4434375,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=321"
},
{
"file": "outputs/321.4434375-359.26031250000005-SPEAKER_01.wav",
"text": " We were talking before, and we said, like, queer was supposed to be like a put down, or a diss, you know what I mean? I look at it myself, I'm, it's a regular red blood American gay guy. I don't really see why I have to be all these other letters and all this other stuff added to it. It just, I mean, not no offense to anyone, but it sounds a little bit nuts to me. I understand why we have to be all this other stuff. Like, why can't I just be gay and be happy with that? Why do I have to look at if I'm not, you know, queer or binary, whatever, then I'm like privileged in some way, and it's like, I'm from the hood just like anybody else. Where's all this, you know, where's all this privilege I'm supposed to have coming from, because I don't have it. I understand the same thing. And I'm gay and sorry.",
"start": 321.4434375,
"end": 359.26031250000005,
"speaker": "SPEAKER_01",
"url": "https://youtu.be/utW1ItcMeJw?t=321"
},
{
"file": "outputs/355.73343750000004-381.61968750000005-SPEAKER_12.wav",
"text": " I don't have it. I understand the same thing. And I'm gay, it's hard to keep up. I think that my issue is not what you identify as is when you try to tell me what I should identify as. And if I say that I'm queer, non-binary, or if I say I'm a shoe, that's my business, I think that- Who tell me what I identify as? I'm just responding. What I'm saying is that people who say that queer is, which you said offensive, my thing is like, why does it matter what I identify as? What am I, I didn't hear-",
"start": 355.73343750000004,
"end": 381.61968750000005,
"speaker": "SPEAKER_12",
"url": "https://youtu.be/utW1ItcMeJw?t=355"
},
{
"file": "outputs/369.35156250000006-369.9928125-SPEAKER_00.wav",
"text": " I hope you think that.",
"start": 369.35156250000006,
"end": 369.9928125,
"speaker": "SPEAKER_00",
"url": "https://youtu.be/utW1ItcMeJw?t=369"
},
{
"file": "outputs/369.9928125-371.0559375-SPEAKER_01.wav",
"text": " what I did by you.",
"start": 369.9928125,
"end": 371.0559375,
"speaker": "SPEAKER_01",
"url": "https://youtu.be/utW1ItcMeJw?t=369"
},
{
"file": "outputs/381.61968750000005-385.83843750000005-SPEAKER_02.wav",
"text": " It's the source of your oppression. So, it's the source of your oppression. You're nothing now, don't you? You're none of them happened.",
"start": 381.61968750000005,
"end": 385.83843750000005,
"speaker": "SPEAKER_02",
"url": "https://youtu.be/utW1ItcMeJw?t=381"
},
{
"file": "outputs/383.76281250000005-387.59343750000005-SPEAKER_12.wav",
"text": " So, it's the source of your question. What is hurt? What is hurt?",
"start": 383.76281250000005,
"end": 387.59343750000005,
"speaker": "SPEAKER_12",
"url": "https://youtu.be/utW1ItcMeJw?t=383"
},
{
"file": "outputs/385.83843750000005-390.4621875-SPEAKER_07.wav",
"text": " What do you mean by that, Brendan? What do you mean by that, Brendan? I think you should expand on it.",
"start": 385.83843750000005,
"end": 390.4621875,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=385"
},
{
"file": "outputs/390.58031250000005-408.82218750000004-SPEAKER_02.wav",
"text": " Well, I'm just noticing that the people who say that they're still victimized in a press turns country or the people who are identifying as queer, non-binary, gender fluid, all these different things. What is it? What does queer mean? I don't know. Excuse me. We can, in order for me to support you or not support you, I need to understand you. Okay.",
"start": 390.58031250000005,
"end": 408.82218750000004,
"speaker": "SPEAKER_02",
"url": "https://youtu.be/utW1ItcMeJw?t=390"
},
{
"file": "outputs/408.50156250000003-410.72906250000005-SPEAKER_07.wav",
"text": " have you read up on the word clear have you let google that",
"start": 408.50156250000003,
"end": 410.72906250000005,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=408"
},
{
"file": "outputs/410.96531250000004-428.2453125-SPEAKER_02.wav",
"text": " Yeah, I mean, absolutely. The definition in the dictionary is a whole laundry list of derogatory terms, which I think are apps. I think it's an insult. I think it's a slur. I think it's low rent. I think it's embarrassing. I think it's degrading. I think it's degrading. OK, OK, OK. Exactly.",
"start": 410.96531250000004,
"end": 428.2453125,
"speaker": "SPEAKER_02",
"url": "https://youtu.be/utW1ItcMeJw?t=410"
},
{
"file": "outputs/426.92906250000004-438.85968750000006-SPEAKER_03.wav",
"text": " Okay, okay, okay. Yeah, it means weird in the dictionary. And if we're trying to get to a place where we normalize our community, I don't think labeling us as weird is really the right way to do it. And maybe that's why you're not accepting it. Okay, I'm sorry, I'm sorry. I'm sorry, I'm sorry.",
"start": 426.92906250000004,
"end": 438.85968750000006,
"speaker": "SPEAKER_03",
"url": "https://youtu.be/utW1ItcMeJw?t=426"
},
{
"file": "outputs/434.8603125-439.77093750000006-SPEAKER_07.wav",
"text": " You know, and maybe that's why you're not accepted. Okay, I'm sorry, I'm sorry. Perhaps that's why you're not accepted. Thank you.",
"start": 434.8603125,
"end": 439.77093750000006,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=434"
},
{
"file": "outputs/439.80468750000006-448.57968750000003-SPEAKER_07.wav",
"text": " Brendan wants to know how do you define the term queer? Now, from what I understand, different people view it, the word differently. But is there somebody here who would like to volunteer?",
"start": 439.80468750000006,
"end": 448.57968750000003,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=439"
},
{
"file": "outputs/445.74468750000005-445.7615625-SPEAKER_00.wav",
"text": "",
"start": 445.74468750000005,
"end": 445.7615625,
"speaker": "SPEAKER_00",
"url": "https://youtu.be/utW1ItcMeJw?t=445"
},
{
"file": "outputs/445.81218750000005-445.87968750000005-SPEAKER_00.wav",
"text": "",
"start": 445.81218750000005,
"end": 445.87968750000005,
"speaker": "SPEAKER_00",
"url": "https://youtu.be/utW1ItcMeJw?t=445"
},
{
"file": "outputs/449.5584375-449.99718750000005-SPEAKER_07.wav",
"text": " some",
"start": 449.5584375,
"end": 449.99718750000005,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=449"
},
{
"file": "outputs/449.99718750000005-450.3684375-SPEAKER_04.wav",
"text": " kind of...",
"start": 449.99718750000005,
"end": 450.3684375,
"speaker": "SPEAKER_04",
"url": "https://youtu.be/utW1ItcMeJw?t=449"
},
{
"file": "outputs/450.3684375-450.4359375-SPEAKER_07.wav",
"text": "",
"start": 450.3684375,
"end": 450.4359375,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=450"
},
{
"file": "outputs/450.4359375-494.95218750000004-SPEAKER_04.wav",
"text": " I mean, I would love to share. I mean, I think the term queer, like you have the right to feel that it is offensive. Because we, I mean, that's the fact. We know that it was used offensively as a star for decades, forever and in probably instill some circumstances today. But people reclaimed it as a word that was more expansive of their experiences, right? So for a lot of people, gay doesn't fit. For a lot of people, lesbian doesn't fit. Like, these terms were a little bit restrictive when it came to them talking about their identity, who they were attracted to, what they were into, all of that. And also from a gender standpoint, right? There are a lot of people who don't fit into what we consider a binary, right? This like man, woman, kind of idea, right? So queer is an umbrella term. It is expansive.",
"start": 450.4359375,
"end": 494.95218750000004,
"speaker": "SPEAKER_04",
"url": "https://youtu.be/utW1ItcMeJw?t=450"
},
{
"file": "outputs/494.95218750000004-505.51593750000006-SPEAKER_03.wav",
"text": " I still don't understand really. I mean, it's supposed to be this, and umbrella term. It was not free. But then when it becomes everything, then it's kind of nothing at the same time. I still don't have a clear definition. Yeah, you have to find what it's not.",
"start": 494.95218750000004,
"end": 505.51593750000006,
"speaker": "SPEAKER_03",
"url": "https://youtu.be/utW1ItcMeJw?t=494"
},
{
"file": "outputs/497.38218750000004-497.93906250000003-SPEAKER_07.wav",
"text": " a lava contest",
"start": 497.38218750000004,
"end": 497.93906250000003,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=497"
},
{
"file": "outputs/497.93906250000003-498.4959375-SPEAKER_00.wav",
"text": "oe.",
"start": 497.93906250000003,
"end": 498.4959375,
"speaker": "SPEAKER_00",
"url": "https://youtu.be/utW1ItcMeJw?t=497"
},
{
"file": "outputs/498.4959375-498.86718750000006-SPEAKER_01.wav",
"text": " Yeah.",
"start": 498.4959375,
"end": 498.86718750000006,
"speaker": "SPEAKER_01",
"url": "https://youtu.be/utW1ItcMeJw?t=498"
},
{
"file": "outputs/504.58781250000004-508.3340625-SPEAKER_02.wav",
"text": " You mean define what it's not for you, Simon. Define what it is. When the white fox manipul apparatus-",
"start": 504.58781250000004,
"end": 508.3340625,
"speaker": "SPEAKER_02",
"url": "https://youtu.be/utW1ItcMeJw?t=504"
},
{
"file": "outputs/506.79843750000003-507.0346875-SPEAKER_03.wav",
"text": "",
"start": 506.79843750000003,
"end": 507.0346875,
"speaker": "SPEAKER_03",
"url": "https://youtu.be/utW1ItcMeJw?t=506"
},
{
"file": "outputs/507.0346875-507.92906250000004-SPEAKER_08.wav",
"text": "\u0430\u043d\u0438\u4ec0\u9ebc",
"start": 507.0346875,
"end": 507.92906250000004,
"speaker": "SPEAKER_08",
"url": "https://youtu.be/utW1ItcMeJw?t=507"
},
{
"file": "outputs/507.92906250000004-508.31718750000005-SPEAKER_07.wav",
"text": " ein Platz.",
"start": 507.92906250000004,
"end": 508.31718750000005,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=507"
},
{
"file": "outputs/508.3340625-508.78968750000007-SPEAKER_07.wav",
"text": " Let's see if they fix it here.",
"start": 508.3340625,
"end": 508.78968750000007,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=508"
},
{
"file": "outputs/508.78968750000007-509.19468750000004-SPEAKER_08.wav",
"text": " Sure.",
"start": 508.78968750000007,
"end": 509.19468750000004,
"speaker": "SPEAKER_08",
"url": "https://youtu.be/utW1ItcMeJw?t=508"
},
{
"file": "outputs/509.31281250000006-517.9359375-SPEAKER_08.wav",
"text": " So when I think of the term queer, I tend to think of somebody who is either not cisgender or not heterosexual. That's my impression of queer.",
"start": 509.31281250000006,
"end": 517.9359375,
"speaker": "SPEAKER_08",
"url": "https://youtu.be/utW1ItcMeJw?t=509"
},
{
"file": "outputs/516.9571875-518.9484375000001-SPEAKER_03.wav",
"text": " We are in the",
"start": 516.9571875,
"end": 518.9484375000001,
"speaker": "SPEAKER_03",
"url": "https://youtu.be/utW1ItcMeJw?t=516"
},
{
"file": "outputs/518.8978125000001-518.9146875-SPEAKER_08.wav",
"text": "",
"start": 518.8978125000001,
"end": 518.9146875,
"speaker": "SPEAKER_08",
"url": "https://youtu.be/utW1ItcMeJw?t=518"
},
{
"file": "outputs/518.9315625-557.9128125000001-SPEAKER_08.wav",
"text": " You can be those things also, but see, I... That's the difference. Well, let me explain, and I'll see what I can do for you. So, for my experience as previously a lesbian woman before I came out as a transgender man, I used the word gay, I used the word lesbian, I used the word woman to describe me before I realized that that wasn't actually accurate. Now, I am a transgender man who is married to a cisgender woman, so people would say, I'm a straight man, but I'm not straight because I lived as a lesbian for 20 years before I came out as transgender. Also, I like people of all gender. So, what the heck do I have to call myself now? Do I call myself a former lesbian, bisexualist, sexual, transgender man?",
"start": 518.9315625,
"end": 557.9128125000001,
"speaker": "SPEAKER_08",
"url": "https://youtu.be/utW1ItcMeJw?t=518"
},
{
"file": "outputs/559.0265625000001-562.9078125000001-SPEAKER_08.wav",
"text": " in order to not use the word queer? Absolutely not. That's what I feel like with-",
"start": 559.0265625000001,
"end": 562.9078125000001,
"speaker": "SPEAKER_08",
"url": "https://youtu.be/utW1ItcMeJw?t=559"
},
{
"file": "outputs/562.3678125-568.0209375000001-SPEAKER_02.wav",
"text": " Do you feel like when you use the word queer people know that you are all of those things that sunlight becomes crystal clear to people? What do you want?",
"start": 562.3678125,
"end": 568.0209375000001,
"speaker": "SPEAKER_02",
"url": "https://youtu.be/utW1ItcMeJw?t=562"
},
{
"file": "outputs/566.8565625-573.0159375000001-SPEAKER_08.wav",
"text": " I think what's more important to people is that they know what I'm not. And they know that I'm not a cisgender heterosexual.",
"start": 566.8565625,
"end": 573.0159375000001,
"speaker": "SPEAKER_08",
"url": "https://youtu.be/utW1ItcMeJw?t=566"
},
{
"file": "outputs/573.0665625-575.6821875-SPEAKER_07.wav",
"text": " I want to sort of expand this conversation a little bit more.",
"start": 573.0665625,
"end": 575.6821875,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=573"
},
{
"file": "outputs/575.8003125-581.1834375000001-SPEAKER_07.wav",
"text": " Do you feel represented by the acronym LGBTQIA+.",
"start": 575.8003125,
"end": 581.1834375000001,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=575"
},
{
"file": "outputs/581.3859375000001-583.7990625-SPEAKER_07.wav",
"text": " If you know, raise your hand if you do.",
"start": 581.3859375000001,
"end": 583.7990625,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=581"
},
{
"file": "outputs/585.8578125-590.9371875-SPEAKER_07.wav",
"text": " If you feel represented by the acronym LGBTQI post in some way, all right.",
"start": 585.8578125,
"end": 590.9371875,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=585"
},
{
"file": "outputs/589.4859375000001-599.9990625-SPEAKER_03.wav",
"text": " And maybe just on the simple basic level of like there's a T in it and I match that but that's a superficial Sort of thing. There's much more to me and everyone here.",
"start": 589.4859375000001,
"end": 599.9990625,
"speaker": "SPEAKER_03",
"url": "https://youtu.be/utW1ItcMeJw?t=589"
},
{
"file": "outputs/590.9371875-590.9709375000001-SPEAKER_04.wav",
"text": "",
"start": 590.9371875,
"end": 590.9709375000001,
"speaker": "SPEAKER_04",
"url": "https://youtu.be/utW1ItcMeJw?t=590"
},
{
"file": "outputs/590.9709375000001-590.9878125-SPEAKER_07.wav",
"text": "",
"start": 590.9709375000001,
"end": 590.9878125,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=590"
},
{
"file": "outputs/590.9878125-591.6121875-SPEAKER_04.wav",
"text": " Alright.",
"start": 590.9878125,
"end": 591.6121875,
"speaker": "SPEAKER_04",
"url": "https://youtu.be/utW1ItcMeJw?t=590"
},
{
"file": "outputs/600.2859375-627.5559375-SPEAKER_11.wav",
"text": " I think there's an irony because I'm hearing the people who will say who seem very more opposed to queer are also the same people were opposed to having all the additional letters in the alphabet and since queer then this goes back to Donnie since queer is being more inclusive of those other letters in the alphabet I don't necessarily love all the letters in the alphabet. That's why I like the word queer so I can have this one word That is more inclusive of everything so I feel like you either can't necessarily",
"start": 600.2859375,
"end": 627.5559375,
"speaker": "SPEAKER_11",
"url": "https://youtu.be/utW1ItcMeJw?t=600"
},
{
"file": "outputs/627.1509375-630.2896875-SPEAKER_02.wav",
"text": " necessarily be remains to be defined. No one can define the word.",
"start": 627.1509375,
"end": 630.2896875,
"speaker": "SPEAKER_02",
"url": "https://youtu.be/utW1ItcMeJw?t=627"
},
{
"file": "outputs/629.0409375-632.5003125000001-SPEAKER_08.wav",
"text": " No one can define the word. I thought I did. I didn't impression on you.",
"start": 629.0409375,
"end": 632.5003125000001,
"speaker": "SPEAKER_08",
"url": "https://youtu.be/utW1ItcMeJw?t=629"
},
{
"file": "outputs/631.5553125-633.0403125-SPEAKER_02.wav",
"text": " I'm passionate, you really didn't.",
"start": 631.5553125,
"end": 633.0403125,
"speaker": "SPEAKER_02",
"url": "https://youtu.be/utW1ItcMeJw?t=631"
},
{
"file": "outputs/632.5003125000001-644.6671875000001-SPEAKER_04.wav",
"text": " really didn't. But at least the definition would be anybody who's a gender or sexual minority. Say again. Anybody who's a minority based on their gender or sexuality. Get,\"b\u0e49 Underterved and fight it.\"",
"start": 632.5003125000001,
"end": 644.6671875000001,
"speaker": "SPEAKER_04",
"url": "https://youtu.be/utW1ItcMeJw?t=632"
},
{
"file": "outputs/633.0403125-634.4409375-SPEAKER_08.wav",
"text": " S\u00e5 let er det i et af dem.",
"start": 633.0403125,
"end": 634.4409375,
"speaker": "SPEAKER_08",
"url": "https://youtu.be/utW1ItcMeJw?t=633"
},
{
"file": "outputs/634.4409375-635.9934375-SPEAKER_09.wav",
"text": " but could never finish the course.",
"start": 634.4409375,
"end": 635.9934375,
"speaker": "SPEAKER_09",
"url": "https://youtu.be/utW1ItcMeJw?t=634"
},
{
"file": "outputs/635.9934375-639.5709375-SPEAKER_03.wav",
"text": " and would be anybody's agenda or sexual minority.",
"start": 635.9934375,
"end": 639.5709375,
"speaker": "SPEAKER_03",
"url": "https://youtu.be/utW1ItcMeJw?t=635"
},
{
"file": "outputs/639.5709375-639.6215625000001-SPEAKER_08.wav",
"text": "",
"start": 639.5709375,
"end": 639.6215625000001,
"speaker": "SPEAKER_08",
"url": "https://youtu.be/utW1ItcMeJw?t=639"
},
{
"file": "outputs/639.6215625000001-639.8240625000001-SPEAKER_03.wav",
"text": " All right.",
"start": 639.6215625000001,
"end": 639.8240625000001,
"speaker": "SPEAKER_03",
"url": "https://youtu.be/utW1ItcMeJw?t=639"
},
{
"file": "outputs/644.1609375-654.6065625-SPEAKER_03.wav",
"text": " But that already is covered in LGBT. What happens is when you add all these letters, it dilutes the message of LGBT in the original fight that we're all talking about. And it makes it harder for people that we're actually fighting for.",
"start": 644.1609375,
"end": 654.6065625,
"speaker": "SPEAKER_03",
"url": "https://youtu.be/utW1ItcMeJw?t=644"
},
{
"file": "outputs/645.8990625-645.9496875000001-SPEAKER_04.wav",
"text": "",
"start": 645.8990625,
"end": 645.9496875000001,
"speaker": "SPEAKER_04",
"url": "https://youtu.be/utW1ItcMeJw?t=645"
},
{
"file": "outputs/645.9496875000001-646.6246875-SPEAKER_09.wav",
"text": " What happened?",
"start": 645.9496875000001,
"end": 646.6246875,
"speaker": "SPEAKER_09",
"url": "https://youtu.be/utW1ItcMeJw?t=645"
},
{
"file": "outputs/654.3196875000001-663.1790625000001-SPEAKER_07.wav",
"text": " Are there some people who appreciate having LGBTQI plus be a thing that exists? Do they feel like it helps them be seen or their friends be seen?",
"start": 654.3196875000001,
"end": 663.1790625000001,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=654"
},
{
"file": "outputs/654.6571875000001-654.6740625000001-SPEAKER_03.wav",
"text": "",
"start": 654.6571875000001,
"end": 654.6740625000001,
"speaker": "SPEAKER_03",
"url": "https://youtu.be/utW1ItcMeJw?t=654"
},
{
"file": "outputs/664.9509375-665.4403125-SPEAKER_07.wav",
"text": " Anybody?",
"start": 664.9509375,
"end": 665.4403125,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=664"
},
{
"file": "outputs/665.4403125-666.8578125-SPEAKER_09.wav",
"text": " at all.",
"start": 665.4403125,
"end": 666.8578125,
"speaker": "SPEAKER_09",
"url": "https://youtu.be/utW1ItcMeJw?t=665"
},
{
"file": "outputs/666.8578125-686.0446875-SPEAKER_00.wav",
"text": " Sometimes it just gets to be too many damn letters. It's a lot of saying. I honestly like, it just you add in letters on. So like sometimes I appreciate it and then other times I'm like, it's too many damn letters. It's a lot of things. Which is why clear is good. Because then you'll work with it. Clear I think is a good option. And if someone says I use queer because I don't want to use all of it. And I don't actually fit under all those letters.",
"start": 666.8578125,
"end": 686.0446875,
"speaker": "SPEAKER_00",
"url": "https://youtu.be/utW1ItcMeJw?t=666"
},
{
"file": "outputs/669.1021875-670.7390625-SPEAKER_11.wav",
"text": " It's a lot of things. I said.",
"start": 669.1021875,
"end": 670.7390625,
"speaker": "SPEAKER_11",
"url": "https://youtu.be/utW1ItcMeJw?t=669"
},
{
"file": "outputs/677.9109375-679.9021875000001-SPEAKER_11.wav",
"text": " Good. Pronunciation",
"start": 677.9109375,
"end": 679.9021875000001,
"speaker": "SPEAKER_11",
"url": "https://youtu.be/utW1ItcMeJw?t=677"
},
{
"file": "outputs/686.4159375-686.9390625000001-SPEAKER_00.wav",
"text": " Entschlie\u00dfend.",
"start": 686.4159375,
"end": 686.9390625000001,
"speaker": "SPEAKER_00",
"url": "https://youtu.be/utW1ItcMeJw?t=686"
},
{
"file": "outputs/686.9390625000001-704.2021875-SPEAKER_11.wav",
"text": " We're technically LGBTQQIAP2+, we are not. That's the full acronym. I'm supporting you in this and saying, yes, this is a lot and I do understand that.",
"start": 686.9390625000001,
"end": 704.2021875,
"speaker": "SPEAKER_11",
"url": "https://youtu.be/utW1ItcMeJw?t=686"
},
{
"file": "outputs/695.2921875000001-695.4946875-SPEAKER_02.wav",
"text": " You know.",
"start": 695.2921875000001,
"end": 695.4946875,
"speaker": "SPEAKER_02",
"url": "https://youtu.be/utW1ItcMeJw?t=695"
},
{
"file": "outputs/695.4946875-696.1359375000001-SPEAKER_03.wav",
"text": "\u3042\u30fc.",
"start": 695.4946875,
"end": 696.1359375000001,
"speaker": "SPEAKER_03",
"url": "https://youtu.be/utW1ItcMeJw?t=695"
},
{
"file": "outputs/696.1359375000001-696.5578125000001-SPEAKER_02.wav",
"text": " That's a-",
"start": 696.1359375000001,
"end": 696.5578125000001,
"speaker": "SPEAKER_02",
"url": "https://youtu.be/utW1ItcMeJw?t=696"
},
{
"file": "outputs/704.2021875-767.6521875000001-SPEAKER_01.wav",
"text": " Benji? And I have a certain definitely don't feel I was in it by it because I come, you know, I'm a Republican conservative person. So all that stuff I already see is just not for me. You know, I'm not invited to barbecue. I'm not invited to the ball. You know, I'd rather have $25 drinks at Trump DC anyway. What I'm saying is that whole thing, it's I feel like when you're conservative, none of that affects me. I just look at myself as an individual. I mean, I'm a gay man. I'm open. I'm proud I've never been in the closet every day in my life. But I just feel like when you put all those letters and old constraints and all these confesses are telling you have to think like this and do this and be this and be that, that it doesn't represent just a regular guy trying to live his life like me. I don't think I was going to buy a rainbow flag any of it. You know, I feel like back in the day, I did. But I feel like now that everything's so politicized that there's really no room for anyone who's conservative and gay like even for like pride. Where am I going to go? You know what I mean? I don't have any plans. I'm not going anywhere, but where would I go without, you know, being kicked out of somewhere or God, did you wear one of those red hats somewhere and it's like you're a victim. So I just feel like the whole spectrum just totally has nothing to do with me as an individual.",
"start": 704.2021875,
"end": 767.6521875000001,
"speaker": "SPEAKER_01",
"url": "https://youtu.be/utW1ItcMeJw?t=704"
},
{
"file": "outputs/767.9896875000001-778.8740625-SPEAKER_07.wav",
"text": " i think that it is clear from the people who are here that uh... the lgbtq community is not of voting monolith so i would love to know who here identifies as a democrat if you could raise your hand",
"start": 767.9896875000001,
"end": 778.8740625,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=767"
},
{
"file": "outputs/781.4559375-781.8440625000001-SPEAKER_07.wav",
"text": " two people.",
"start": 781.4559375,
"end": 781.8440625000001,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=781"
},
{
"file": "outputs/782.5359375-784.2740625-SPEAKER_07.wav",
"text": " Alright, who here identifies as liberal?",
"start": 782.5359375,
"end": 784.2740625,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=782"
},
{
"file": "outputs/787.4128125000001-788.3071875-SPEAKER_07.wav",
"text": " Okay, couple more.",
"start": 787.4128125000001,
"end": 788.3071875,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=787"
},
{
"file": "outputs/788.6278125-792.5259375-SPEAKER_07.wav",
"text": " All right. And who here identifies as Republican?",
"start": 788.6278125,
"end": 792.5259375,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=788"
},
{
"file": "outputs/794.2303125000001-794.7028125-SPEAKER_07.wav",
"text": " Okay.",
"start": 794.2303125000001,
"end": 794.7028125,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=794"
},
{
"file": "outputs/795.6478125000001-797.0653125000001-SPEAKER_07.wav",
"text": " who identifies as conservative.",
"start": 795.6478125000001,
"end": 797.0653125000001,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=795"
},
{
"file": "outputs/799.6134375-809.3165625-SPEAKER_07.wav",
"text": " Okay, folks who are conservative and Republicans, if you don't mind, who did you vote for in the last elections for president?",
"start": 799.6134375,
"end": 809.3165625,
"speaker": "SPEAKER_07",
"url": "https://youtu.be/utW1ItcMeJw?t=799"
},
{
"file": "outputs/810.1096875000001-810.2784375000001-SPEAKER_01.wav",
"text": "",
"start": 810.1096875000001,
"end": 810.2784375000001,
"speaker": "SPEAKER_01",
"url": "https://youtu.be/utW1ItcMeJw?t=810"
},
{
"file": "outputs/810.2953125-810.3796875-SPEAKER_01.wav",
"text": "",
"start": 810.2953125,
"end": 810.3796875,
"speaker": "SPEAKER_01",
"url": "https://youtu.be/utW1ItcMeJw?t=810"