-
Notifications
You must be signed in to change notification settings - Fork 4
/
yuri.json
1561 lines (1561 loc) · 45.1 KB
/
yuri.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
{
"name": "yuri",
"fullName": "四条ユリ",
"fullConfigURL": "assets/configs/yuri.json",
"imgSrc": [
"https://blob.sound-buttons.click/sound-buttons/yuri/yuri.png",
"https://blob.sound-buttons.click/sound-buttons/yuri/yuri2.png"
],
"intro": "クリスタルボイスで歌っています、四条ユリです‼\n\n2020年5月4日、オリジナル曲『ハレイロ・スキップ』をデビューと同時にリリースしました‼\n名古屋県在住20才社畜。料理が得意な彼女と暮らしています\uD83D\uDC9B\n深夜(0時~1時スタート)歌枠を中心に活動中、バラードが得意。\n好きなアーティストはKalafina、sound horizon、Aimer、田村ゆかり\n田舎に憧れがあり、夢は田舎に家を建てて引きこもって暮らすこと。",
"color": {
"primary": "#3B428A",
"secondary": "#FEB1C2"
},
"link": {
"youtube": "https://www.youtube.com/@shijouyuri",
"twitch": null,
"twitter": "https://twitter.com/shijou_yuri",
"facebook": "",
"instagram": "",
"discord": "https://discord.gg/qBDFTmFUK9",
"other": "https://profcard.info/u/9LXtyNtmbnajND9qSaaPsKUVQy43"
},
"introButton": {
"id": "51f0424c-d3d1-48a2-b9ce-e38403405e9b",
"filename": "自我介紹.webm",
"text": {
"zh-tw": "自我介紹",
"ja": "自己紹介"
},
"baseRoute": "https://soundbuttons.blob.core.windows.net/sound-buttons/yuri/",
"volume": 1,
"source": {
"videoId": "r5XLeYXLeM0",
"start": 229,
"end": 240
}
},
"buttonGroups": [
{
"name": {
"zh-tw": "四条ユリ\uD83C\uDF19",
"ja": "四条ユリ\uD83C\uDF19"
},
"baseRoute": "https://soundbuttons.blob.core.windows.net/sound-buttons/yuri/",
"buttons": [
{
"id": "fe850ee1-df80-4e09-a224-2a0436408177",
"filename": "自我介紹.webm",
"text": {
"zh-tw": "自我介紹",
"ja": "自己紹介"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "r5XLeYXLeM0",
"start": 229,
"end": 240
}
},
{
"id": "a45d8ca5-3635-4a73-b67e-d8bb7284202f",
"filename": "merrychristmas.webm",
"text": {
"zh-tw": "merry christmas",
"ja": "merry christmas"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "Wt7ZwTkiLgk",
"start": 189,
"end": 194
}
},
{
"id": "9d4c33ad-f37c-49c8-9122-70c44a00f0bc",
"filename": "乾杯.webm",
"text": {
"zh-tw": "乾杯",
"ja": "乾杯"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "Wt7ZwTkiLgk",
"start": 294.016,
"end": 301.299
}
},
{
"id": "7c9b1e22-8664-4106-9c71-5004079cde19",
"filename": "完全搞不懂.webm",
"text": {
"zh-tw": "完全搞不懂",
"ja": "全然わかりません"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "H0k0kcGj8UQ",
"start": 604,
"end": 606
}
},
{
"id": "d202983a-1c31-485f-8491-c76ce2daa7ca",
"filename": "群青もう今はあの日のXXXXXXX.webm",
"text": {
"zh-tw": "(群青) もう、今は、あの日、のXXXXXXX",
"ja": "(群青) もう、今は、あの日、のXXXXXXX"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "9z9lemR23HQ",
"start": 3547,
"end": 3555
}
},
{
"id": "cd0e0909-ecd0-4b38-bf1b-9d2a6c6165e1",
"filename": "謝謝茄子.webm",
"text": {
"zh-tw": "謝謝茄子",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "Wt7ZwTkiLgk",
"start": 1461.195,
"end": 1467.497
}
},
{
"id": "b3a8b1d7-3f8c-4672-a872-5bf67e7cc07c",
"filename": "konwife啾啾啾.webm",
"text": {
"zh-tw": "konwife啾啾啾",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "Wt7ZwTkiLgk",
"start": 1846.371,
"end": 1851.399
}
},
{
"id": "6316c0d0-844e-4f44-944f-b05aa4629feb",
"filename": "Helloこんばユリ.webm",
"text": {
"zh-tw": "Hello~こんばユリ",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "QQtw8VFe9PU",
"start": 115.352,
"end": 130.678
}
},
{
"id": "d6da9224-b4a9-4d75-9596-cd2b5a87c744",
"filename": "YDD.webm",
"text": {
"zh-tw": "YDD",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "K2dhNq8Ob0Q",
"start": 5137.713,
"end": 5153.999
}
},
{
"id": "b033a6ca-b2f9-453f-926e-097159589fac",
"filename": "訂閱數減少嚇了一跳.webm",
"text": {
"zh-tw": "(訂閱數減少嚇了一跳)",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "5vtp3D8fDpU",
"start": 15647,
"end": 15650
}
},
{
"id": "52c414bd-cac6-4357-969c-bbcbb3752114",
"filename": "除了那些解除訂閱玩樂的該死的人以外最喜歡大家了.webm",
"text": {
"zh-tw": "除了那些解除訂閱玩樂的該死的人以外,最喜歡大家了",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "5vtp3D8fDpU",
"start": 15777,
"end": 15790
}
},
{
"id": "4ffb11f5-0fc5-4328-9932-0c3f98ea5550",
"filename": "littlelittlelittle.webm",
"text": {
"zh-tw": "little...little little",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "ZE46sgAbVuc",
"start": 11870,
"end": 11874
}
},
{
"id": "457e2064-6a40-4321-99c4-35cd254588e0",
"filename": "嘿嘿嘿.webm",
"text": {
"zh-tw": "嘿嘿嘿",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "ZE46sgAbVuc",
"start": 14468,
"end": 14470
}
},
{
"id": "046ea28b-94a9-4c60-91c5-751fa5414556",
"filename": "請看這個亮晶晶的樣子.webm",
"text": {
"zh-tw": "請看,這個亮晶晶的樣子!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "ZE46sgAbVuc",
"start": 14473,
"end": 14477
}
},
{
"id": "ad12fe4a-045d-4337-b30e-565b795d650b",
"filename": "TSKR.webm",
"text": {
"zh-tw": "TSKR",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "UqZwfkf0_N8",
"start": 5754,
"end": 5762
}
},
{
"id": "9b80f60f-2894-4077-bf80-1ad7b355ab22",
"filename": "ImnotanativeEnglishspeakerImnot.webm",
"text": {
"zh-tw": "I'm not a native English speaker. I'm not!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "UqZwfkf0_N8",
"start": 8060,
"end": 8068
}
},
{
"id": "04ba3859-f7e6-4117-bf0e-51b9f1c07e12",
"filename": "IcanunderstandlittleEnglishだからね.webm",
"text": {
"zh-tw": "I can... understand little Englishだからね",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "UqZwfkf0_N8",
"start": 8094,
"end": 8100
}
},
{
"id": "b02da8eb-3c20-4e13-82b3-5b635c3ec9dd",
"filename": "YuriisenglishteacherNonono.webm",
"text": {
"zh-tw": "(Yuri is english teacher.) No, no no!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "UqZwfkf0_N8",
"start": 8126,
"end": 8131
}
},
{
"id": "8b110f6a-9a9d-4da7-80a3-901fb55aff4d",
"filename": "希望大家多按高評價按鈕希望能按一下.webm",
"text": {
"zh-tw": "希望大家多按高評價按鈕~希望能按一下~",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "UqZwfkf0_N8",
"start": 7507,
"end": 7513
}
},
{
"id": "57371bc5-ea4b-4f13-9bbd-69c6492d40f9",
"filename": "びりびりびりびり.webm",
"text": {
"zh-tw": "びりびりびりびり",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "UqZwfkf0_N8",
"start": 7834,
"end": 7840
}
},
{
"id": "647d38da-43c5-4df3-8b0e-38b723860669",
"filename": "OhmygodHolyshit.webm",
"text": {
"zh-tw": "Oh my god! Holy shit!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "UqZwfkf0_N8",
"start": 8152.1,
"end": 8157
}
},
{
"id": "84a37f36-9d98-4ec5-aedb-1ba02c11ddcc",
"filename": "最近真的超喜歡奶子.webm",
"text": {
"zh-tw": "最近真的超喜歡奶子",
"ja": "最近マジでおっぱいが好き"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "-0Pg4N0tDUE",
"start": 4676,
"end": 4679
}
},
{
"id": "48a59966-07ce-4b4b-94a5-e1ea45ca8241",
"filename": "咀嚼音.webm",
"text": {
"zh-tw": "(咀嚼音)",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "xnTq4MiVL4E",
"start": 1422,
"end": 1431
}
},
{
"id": "a301c796-7b10-4935-8c60-f3af0e6d9b53",
"filename": "大小姐語調美麗平靜的聲音美麗的聲音.webm",
"text": {
"zh-tw": "(大小姐語調) 美麗平靜的聲音~美麗的聲音!",
"ja": "落ち着く美声ですわ~美声ですわ!"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "gNJdbP8kmec",
"start": 1867.2,
"end": 1871.2
}
},
{
"id": "a0274711-3349-47a2-8803-7e902b214476",
"filename": "蟬叫聲.webm",
"text": {
"zh-tw": "(蟬叫聲)",
"ja": "(蝉の鳴き声)"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "gNJdbP8kmec",
"start": 5806,
"end": 5823
}
},
{
"id": "02ed245c-7ec4-411a-bd27-afc75577b83c",
"filename": "希望能按一下高評價按鈕.webm",
"text": {
"zh-tw": "希望能按一下高評價按鈕~",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "gNJdbP8kmec",
"start": 2342,
"end": 2346
}
},
{
"id": "6f78b1d4-5d65-4a4a-ad67-8a0f862ba19d",
"filename": "按了兩次請按一次1357911請按奇數次.webm",
"text": {
"zh-tw": "(按了兩次) 請按一次,13579、11,請按奇數次!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "gNJdbP8kmec",
"start": 2386,
"end": 2395
}
},
{
"id": "b7a88b99-04a1-401f-9662-edeab7b230dc",
"filename": "Pleasepushlikebuttonandsubscribemychannelpleaseです.webm",
"text": {
"zh-tw": "Please push like button, and subscribe my channel please~ です",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "gNJdbP8kmec",
"start": 2397,
"end": 2404
}
},
{
"id": "8ec7e142-b723-48bb-ab78-4dd4ac11a4c3",
"filename": "耶我是四条ユリ晚安.webm",
"text": {
"zh-tw": "耶~我是四条ユリ~晚安~",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "vpMW8VNXRNI",
"start": 103,
"end": 115
}
},
{
"id": "3778f14b-f6f9-4ac6-bc3e-83dd14493f48",
"filename": "小學生很可愛啊.webm",
"text": {
"zh-tw": "小學生很可愛啊!",
"ja": "小学生はかわいいな!"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "vpMW8VNXRNI",
"start": 5912.5,
"end": 5915
}
},
{
"id": "14f20714-81c0-4d7e-aaa3-5980f5b50a10",
"filename": "小學生真是太棒了.webm",
"text": {
"zh-tw": "小學生真是太棒了!",
"ja": "小学生は最高だぜ!"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "vpMW8VNXRNI",
"start": 5959,
"end": 5962
}
},
{
"id": "a535391d-d560-495a-b3a3-d1006b7bcab9",
"filename": "OKOKですか.webm",
"text": {
"zh-tw": "OK? OKですか?",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "vpMW8VNXRNI",
"start": 6699,
"end": 6702
}
},
{
"id": "52384e7a-6e84-40e0-a944-0f87c2218888",
"filename": "如何如何.webm",
"text": {
"zh-tw": "如何? 如何?",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "vpMW8VNXRNI",
"start": 6838,
"end": 6844
}
},
{
"id": "d3b6b1b8-01e8-437e-9dbf-6138aad47f1c",
"filename": "抓到YDD在看メア.webm",
"text": {
"zh-tw": "抓到YDD在看メア",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "xnTq4MiVL4E",
"start": 3775.133,
"end": 3790.804
}
},
{
"id": "c18c1612-1e2b-41ea-bfa4-d84e7c7ffbca",
"filename": "超級噴嚏.webm",
"text": {
"zh-tw": "超級噴嚏",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "XJbsNGyCOJc",
"start": 1474,
"end": 1476
}
},
{
"id": "2a62a125-078d-43b8-b064-c597e4e9ecfc",
"filename": "CanyouspeakChineseIcanspeaklittlelittlelittleChinese.webm",
"text": {
"zh-tw": "(Can you speak Chinese?) I can speak little little little Chinese.",
"ja": "中国語喋れますか? うーん、ちょっとだけ中国語喋れます。"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "KG_GlcjuKdI",
"start": 8299,
"end": 8309
}
},
{
"id": "f01d242f-89d4-4645-9796-ab5b40dfb243",
"filename": "bb5e16a37dbf4f04962038d4fe6954a7.webm",
"text": {
"zh-tw": "(Yuri請跟我結婚) Yuri想跟我的女朋友結婚,對不起呢",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "sdTd2QvenyY",
"start": 8504,
"end": 8513
}
},
{
"id": "ea2c643e-d511-46e7-80c0-9315c09e76ad",
"filename": "Minecraft的村民.webm",
"text": {
"zh-tw": "Minecraft的村民",
"ja": "Minecraftの村人"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "kjcjmp0xDJs",
"start": 716,
"end": 723
}
},
{
"id": "c59a23c9-7555-4ff2-937b-e7bce6aee0bf",
"filename": "打呵欠.webm",
"text": {
"zh-tw": "(打呵欠)",
"ja": "(欠伸)"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "NvySAKZHBrw+",
"start": 3574,
"end": 3583
}
},
{
"id": "5550ff89-cfcb-4df7-8ade-52f46ad1cf20",
"filename": "四条蟬.webm",
"text": {
"zh-tw": "(四条蟬)",
"ja": "(四条蝉)"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "x_hhxx73EgA+",
"start": 5835,
"end": 5851
}
},
{
"id": "fd847966-9640-4ab2-be6f-c2d6c7f3c5e4",
"filename": "4d22868172e5413dbab67b5b42e45ed5.webm",
"text": {
"zh-tw": "那個貼圖的名稱是...「阿姨哭哭」...「阿姨」是怎樣!別開玩笑了,誰設定的啊,我要把他燒死",
"ja": "なんだそのスタンプの名前、「(中国語)泣いている叔母さん」、「(中国語)叔母さん」てどういうこと、ふざけんなよ、誰だよそれ設定したの、火あぶりにしてやる"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "J7vs2yr0R18",
"start": 260,
"end": 278
}
},
{
"id": "0e8b3b5f-87e7-41eb-868d-0198cf7254a4",
"filename": "誰啊給我道歉對啊道歉不原諒你喔.webm",
"text": {
"zh-tw": "(誰啊!給我道歉!) 對啊,道歉!不原諒你喔!",
"ja": "誰だ謝れ!そうだ謝れ!許さんぞ!"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "J7vs2yr0R18",
"start": 287,
"end": 292
}
},
{
"id": "6ff988ac-c0ee-4e05-95e1-93216121c5c3",
"filename": "くしゃみ助かる.webm",
"text": {
"zh-tw": "くしゃみ助かる",
"ja": "くしゃみ助かる"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "OrxNgd9feqg",
"start": 836,
"end": 843
}
},
{
"id": "c80f1f91-bd3e-4a9a-a492-ffdac4687238",
"filename": "唱歌唱錯了.webm",
"text": {
"zh-tw": "(唱歌唱錯了)",
"ja": "(歌い間違えた)"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "OrxNgd9feqg",
"start": 2348,
"end": 2357
}
},
{
"id": "e9ebe2d0-1d2b-47f3-8f3c-2ceff996efc3",
"filename": "嘛嘛.webm",
"text": {
"zh-tw": "嘛嘛",
"ja": "まあまあまあ"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "OrxNgd9feqg",
"start": 2422,
"end": 2429
}
},
{
"id": "f156c565-5d03-4325-9a1e-fb0b421d53e6",
"filename": "阿姨哭哭.webm",
"text": {
"zh-tw": "阿姨哭哭",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "Z1QqfYD1E6c",
"start": 7659.689,
"end": 7711.496
}
},
{
"id": "89a41e69-65fa-4fd3-b1ca-2e1a16545c27",
"filename": "結束招呼.webm",
"text": {
"zh-tw": "(結束招呼)",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "qyIV8BUenTk",
"start": 7992,
"end": 8001
}
},
{
"id": "17a40ad9-43e1-4e44-a39e-6d65fa1ee19d",
"filename": "花心浮氣花心啊你花心了名字掛著YDD去花心了啊完全沒關係的沒辦法花心是沒辦法的.webm",
"text": {
"zh-tw": "(花心=浮氣) 「花心」!啊,你花心了!名字掛著YDD去花心了啊!完全沒關係的!沒辦法,花心是沒辦法的",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "l6VLl2bBVog",
"start": 735.7,
"end": 748
}
},
{
"id": "b325f206-2afe-4ffe-b10b-81c8c2b63c7b",
"filename": "姊姊去年也說是二十歲永遠的二十歲永遠的.webm",
"text": {
"zh-tw": "(姊姊去年也說是二十歲) 永遠的二十歲!永遠的!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "l6VLl2bBVog",
"start": 2054,
"end": 2062.3
}
},
{
"id": "ca33a857-3832-4e33-bfbc-b8f766e807e6",
"filename": "IcanspeaklittlelittlelittleChinese.webm",
"text": {
"zh-tw": "I can speak little little little Chinese.",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "l6VLl2bBVog",
"start": 5361,
"end": 5367
}
},
{
"id": "2084c19a-0692-4e3c-99b2-85df0ac98f3f",
"filename": "我喜歡其它女人名那個女人是誰那是誰啊喂那個人是誰是在說別的女人的事嗎.webm",
"text": {
"zh-tw": "(我喜歡(其它女人名)) 那個女人是誰!那是誰啊!喂,那個人是誰,是在說別的女人的事嗎!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "l6VLl2bBVog",
"start": 8295,
"end": 8313
}
},
{
"id": "2c933051-1fc1-43bd-ab2f-4af9a80f529c",
"filename": "不要在這裡說其它女人的事那是誰啦.webm",
"text": {
"zh-tw": "不要在這裡說其它女人的事!那是誰啦!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "l6VLl2bBVog",
"start": 8321,
"end": 8329
}
},
{
"id": "c332171c-349d-485e-917a-9f96f2eba8f8",
"filename": "ユリ最喜歡了親親是在敷衍我嗎在敷衍我啊哼.webm",
"text": {
"zh-tw": "(ユリ最喜歡了親親) 你在試圖掩飾啊? 你在試圖掩飾啊!哼~",
"ja": "(ユリちゃんツキツキチュッチュッ) ごまかそうとしてるな、ごまかそうとしてるな! ふーん~"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "l6VLl2bBVog",
"start": 8354,
"end": 8363
}
},
{
"id": "3a90e112-f6e2-4a1e-ad8a-a9afff90b970",
"filename": "媽媽喔我是ユリ媽媽喔.webm",
"text": {
"zh-tw": "媽媽喔,我是ユリ媽媽喔",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "UqZwfkf0_N8",
"start": 5009,
"end": 5014
}
},
{
"id": "8260d84d-a409-4a1b-a86b-3607de8a93c8",
"filename": "髒話連發.webm",
"text": {
"zh-tw": "(髒話連發)",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "KzVRZXFUN6s",
"start": 5350,
"end": 5361
}
},
{
"id": "5a54fe63-3c01-41ea-a43f-03082d570d30",
"filename": "想吃漢堡.webm",
"text": {
"zh-tw": "想吃漢堡",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "Yr-NsscYWwU",
"start": 1614,
"end": 1622
}
},
{
"id": "b88a44ba-3a6f-4e14-8298-e4e71e0dd092",
"filename": "起司漢堡起司漢堡不錯呢我想吃起司漢堡.webm",
"text": {
"zh-tw": "(起司漢堡) 起司漢堡!不錯呢,我想吃起司漢堡!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "Yr-NsscYWwU",
"start": 1695,
"end": 1702
}
},
{
"id": "6bfb80c9-f6d9-4a6c-8d66-a4714f16ff5a",
"filename": "吸氣誒現在無法提供服務開什麼玩笑吃不到漢堡騙人.webm",
"text": {
"zh-tw": "(吸氣) 誒~~「現在無法提供服務」開什麼玩笑!吃不到漢堡,騙人~",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "Yr-NsscYWwU",
"start": 1729,
"end": 1739
}
},
{
"id": "f8d22002-7bb9-4d6d-9f2b-0ff758320697",
"filename": "大聲起床早上了大家快起床.webm",
"text": {
"zh-tw": "(大聲) 起床!早上了!大家快起床!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "",
"start": 0,
"end": 0
}
}
]
},
{
"name": {
"zh-tw": "中国語本当上手\uD83C\uDF19",
"ja": "中国語本当上手\uD83C\uDF19"
},
"baseRoute": "https://soundbuttons.blob.core.windows.net/sound-buttons/yuri/",
"buttons": [
{
"id": "ac6e2891-49be-4dde-84ac-14f4fb17cefc",
"filename": "謝謝水水水.webm",
"text": {
"zh-tw": "謝謝水~ 水? 水",
"ja": "(中国語) 水ありがとう〜 水? 水"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "9z9lemR23HQ",
"start": 1749,
"end": 1753
}
},
{
"id": "cd6a6912-e447-42f2-a063-6699260eefd8",
"filename": "我是可愛的日本女人.webm",
"text": {
"zh-tw": "我是可愛的日本女人",
"ja": "(中国語) 私はかわいい日本人女性です"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "Wt7ZwTkiLgk",
"start": 1386,
"end": 1398.099
}
},
{
"id": "a5acfe4e-5ffe-4e96-a3ea-b9b683b3cd34",
"filename": "來人啊.webm",
"text": {
"zh-tw": "來人啊",
"ja": "(中国語) 誰かここに来て"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "ZE46sgAbVuc",
"start": 11867,
"end": 11870
}
},
{
"id": "d8273465-4e4e-4c3e-b804-9a2f00db0b28",
"filename": "想去日本我想去台灣.webm",
"text": {
"zh-tw": "想去日本?我想去台灣~",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "UqZwfkf0_N8",
"start": 4052.5,
"end": 4063
}
},
{