-
Notifications
You must be signed in to change notification settings - Fork 4
/
aruma.json
9289 lines (9289 loc) · 277 KB
/
aruma.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": "aruma",
"fullName": "薬袋アルマ",
"fullConfigURL": "assets/configs/aruma.json",
"imgSrc": [
"https://blob.sound-buttons.click/sound-buttons/aruma/aruma2.png",
"https://blob.sound-buttons.click/sound-buttons/aruma/aruma.png"
],
"intro": "ご機嫌よう~\n個人勢VtuberグループGuildCQ所属の薬袋アルマ(Minai Aruma)です\uD83C\uDF3F\uD83E\uDDEA\n年内登録者一万人を目指しています!\n\nおしゃべりが大好きなので、様々な配信を挑戦しに行きたい思います!\nお時間ありましたら是非遊びにいらしてください✨\nもしお気になって頂けたら\nチャンネル登録・高評価・コメントして頂けるととても嬉しいです\uD83D\uDC8B\n\n毎週歌枠やります\uD83C\uDFB5\n\n日/中/EN OK",
"color": {
"primary": "#2A5CAB",
"secondary": "#B3CEF0"
},
"link": {
"youtube": "https://www.youtube.com/c/ArumaCh%E8%96%AC%E8%A2%8B%E3%82%A2%E3%83%AB%E3%83%9E",
"twitch": null,
"twitter": "https://twitter.com/MinaiAlma",
"facebook": "https://www.facebook.com/%E8%96%AC%E8%A2%8B%E3%82%A2%E3%83%AB%E3%83%9EMinai-Aruma-101882972425300",
"instagram": "https://www.instagram.com/minaiaruma/",
"discord": "https://discord.gg/TW42ERdGPn",
"other": null
},
"introButton": {
"id": "3eda7525-c358-4960-875a-c15854403afd",
"filename": "自我介紹.webm",
"text": {
"zh-tw": "自我介紹",
"ja": "自己紹介"
},
"baseRoute": "https://blob.sound-buttons.click/sound-buttons/aruma/",
"volume": 1,
"source": {
"videoId": "X7NyMoi-8Pk",
"start": 493,
"end": 545
}
},
"buttonGroups": [
{
"name": {
"zh-tw": "咩Ꮚ•̀ꈊ•́Ꮚ",
"ja": "メーᏊ•̀ꈊ•́Ꮚ"
},
"baseRoute": "https://blob.sound-buttons.click/sound-buttons/aruma/",
"buttons": [
{
"id": "9e78d383-ce59-4b29-8314-873304875ce1",
"filename": "自我介紹.webm",
"text": {
"zh-tw": "自我介紹",
"ja": "自己紹介"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "X7NyMoi-8Pk",
"start": 493,
"end": 545
}
},
{
"id": "181e0666-0ce6-45f1-a893-56667d9a9f71",
"filename": "呀就是這樣呦就是這樣.webm",
"text": {
"zh-tw": "呀~就是這樣呦,就是這樣",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "yrKGu6EmDNY",
"start": 6995,
"end": 6999
}
},
{
"id": "d61af2dc-d50c-46ca-9ddb-e22335f44246",
"filename": "笨蛋.webm",
"text": {
"zh-tw": "笨蛋",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "jAJvoVjV7Ig",
"start": 3553,
"end": 3554
}
},
{
"id": "e086c351-afb9-403c-b592-e4338fcef884",
"filename": "好過份好過份喔.webm",
"text": {
"zh-tw": "好過份,好過份喔!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "jAJvoVjV7Ig",
"start": 4448,
"end": 4450
}
},
{
"id": "82fcb49e-fb30-4383-b693-619c0027288e",
"filename": "學奇怪的東南亞口音.webm",
"text": {
"zh-tw": "(學奇怪的東南亞口音)",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "yrKGu6EmDNY",
"start": 6089,
"end": 6109
}
},
{
"id": "94bc6e3f-d44b-45c3-804d-92d472702f35",
"filename": "學奇怪的東南亞口音2.webm",
"text": {
"zh-tw": "(學奇怪的東南亞口音)2",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "yrKGu6EmDNY",
"start": 6058,
"end": 6079
}
},
{
"id": "d0ca5cd3-7e04-4ea5-b3c2-ce9eef904244",
"filename": "咩.webm",
"text": {
"zh-tw": "咩Ꮚ•̀ꈊ•́Ꮚ",
"ja": "メーᏊ•̀ꈊ•́Ꮚ"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "bK7OqZVARQU",
"start": 1596,
"end": 1603
}
},
{
"id": "688f3c6c-413c-49a0-b402-86e8b049d85e",
"filename": "ComeonbabyAmerica.webm",
"text": {
"zh-tw": "Come on baby America",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "bK7OqZVARQU",
"start": 1611,
"end": 1619
}
},
{
"id": "75165fb6-9860-4783-b82c-1f45f8c54371",
"filename": "宇宙戰艦アルマED.webm",
"text": {
"zh-tw": "宇宙戰艦アルマ ED",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "s78U7mgXFlU",
"start": 9310,
"end": 9416
}
},
{
"id": "96d25d55-ef69-479a-a9aa-f1b5a426d960",
"filename": "人家要錢錢啦.webm",
"text": {
"zh-tw": "人家要錢錢啦!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "",
"start": 0,
"end": 0
}
},
{
"id": "ca8c486d-b2ed-4f78-aa7e-cf9b39909fde",
"filename": "來做愛吧尷尬的叫聲.webm",
"text": {
"zh-tw": "來做愛吧!(尷尬的叫聲)",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "ub_BbPBrTqc",
"start": 4390,
"end": 4397
}
},
{
"id": "d2c6d97e-24d5-4e63-be0b-4e173dbe3ff6",
"filename": "最棒的大帥哥最喜歡你.webm",
"text": {
"zh-tw": "最棒的大帥哥~最喜歡你!",
"ja": "最高イケメン~大好き!"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "wfYGutLommA",
"start": 5868,
"end": 5872
}
},
{
"id": "806b331d-7265-42a8-839b-f4511b829142",
"filename": "釘宮三連.webm",
"text": {
"zh-tw": "釘宮三連",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "wfYGutLommA",
"start": 9473,
"end": 9478
}
},
{
"id": "41d47d7a-7111-4eaa-bc76-0fcc7e58fd25",
"filename": "肥宅笑聲.webm",
"text": {
"zh-tw": "肥宅笑聲",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "pIP5FH4H2Lg",
"start": 1427,
"end": 1430.5
}
},
{
"id": "db360e79-748e-4652-bc92-060ac7e79a26",
"filename": "啊好可怕笑.webm",
"text": {
"zh-tw": "啊好可怕!(笑)",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "pIP5FH4H2Lg",
"start": 4030.2,
"end": 4033
}
},
{
"id": "b6e73718-1cef-431d-acd6-3d7fea4cd5c2",
"filename": "OHMYGOD笑.webm",
"text": {
"zh-tw": "OH MY GOD....(笑)",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "pIP5FH4H2Lg",
"start": 5463,
"end": 5468
}
},
{
"id": "154b2ecd-b601-46e0-9b4f-d96f8db9c2b0",
"filename": "住手你們給我住手.webm",
"text": {
"zh-tw": "住手!你們給我住手!",
"ja": "やめろ!"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "KhlA2T-rsvQ",
"start": 8321,
"end": 8328
}
},
{
"id": "d1916864-5218-47bb-90b8-7d1fb7aa888c",
"filename": "Wearenottalkingaboutmoneywearetalkingabouteconomy.webm",
"text": {
"zh-tw": "We are not talking about money, we are talking about economy.",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "7Cz22bQsxpA",
"start": 7567.3,
"end": 7575
}
},
{
"id": "d5b678b8-0169-4953-997c-c6d16bb742e5",
"filename": "チチをもげ甩甩奶奶.webm",
"text": {
"zh-tw": "チチをもげ! (甩甩奶奶)",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "_Et1_K5r2Kc",
"start": 3906,
"end": 3942
}
},
{
"id": "ac9e1ce2-97b8-4eb0-8904-9120ada379a3",
"filename": "艦長看到法文留言然後亂唸一通.webm",
"text": {
"zh-tw": "(艦長看到法文留言,然後亂唸一通)",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "_Et1_K5r2Kc",
"start": 3016.8,
"end": 3028
}
},
{
"id": "73cd75a5-1973-4196-8b71-4bff34eb0ae0",
"filename": "SAKANA.webm",
"text": {
"zh-tw": "SAKANA~~~\uD83D\uDC1F",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "_Et1_K5r2Kc",
"start": 3367,
"end": 3370
}
},
{
"id": "0da423a4-26f5-4d82-a4f9-d807c108c63b",
"filename": "我肚子餓了怎麼辦啦.webm",
"text": {
"zh-tw": "我肚子餓了怎麼辦啦!",
"ja": "お腹空いた~どうしよう!"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "_Et1_K5r2Kc",
"start": 5089,
"end": 5093
}
},
{
"id": "0afdb23e-d87a-46b8-b0de-caf0a5a3e183",
"filename": "toilettoilet.webm",
"text": {
"zh-tw": "toilet! toilet",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "_JPT1OT04wk",
"start": 2655.2,
"end": 2656.8
}
},
{
"id": "d9d9b872-a09d-4a9e-b4a7-de3231ae92f8",
"filename": "biubiubiu.webm",
"text": {
"zh-tw": "biu biu~ biu!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "i6OB5ZUNkvA",
"start": 5980,
"end": 5981.8
}
},
{
"id": "2e7e1c49-5687-4af3-adf0-c7b7286333e1",
"filename": "安妮亞喜歡這個.webm",
"text": {
"zh-tw": "安妮亞喜歡這個~",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "OkMW-EjQDk4",
"start": 3649,
"end": 3651
}
},
{
"id": "21af9656-9d3f-43a9-b129-ca82d6b27561",
"filename": "英語HI我是炎上系Vtuber.webm",
"text": {
"zh-tw": "(英語) HI!我是炎上系Vtuber!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "_LrxqHWS2VE",
"start": 3928,
"end": 3932
}
},
{
"id": "8c1f1a5c-218e-4d5d-bd63-2d3d9e201445",
"filename": "日本貓食CIAOちゅる的廣告slogan.webm",
"text": {
"zh-tw": "(日本貓食CIAO ちゅ~る的廣告slogan)",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "_LrxqHWS2VE",
"start": 8754,
"end": 8760
}
},
{
"id": "ff4d0b68-f3eb-4538-9814-b47644b62ad3",
"filename": "鬼叫.webm",
"text": {
"zh-tw": "鬼叫",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "3W77mOQLX2w",
"start": 4405.5,
"end": 4416
}
},
{
"id": "40c92315-63da-49c0-a185-48b9f0ddf861",
"filename": "Iloveyouguys.webm",
"text": {
"zh-tw": "I love you guys!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "WvFHQGPIM2s",
"start": 8033,
"end": 8035
}
},
{
"id": "ac466a17-fa92-4e0d-89ca-ce830acc8893",
"filename": "Ohmygod這裡有已婚者.webm",
"text": {
"zh-tw": "Oh my god! 這裡有已婚者?!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "ufmBTkUylds",
"start": 1057,
"end": 1066
}
},
{
"id": "a640059f-6515-43e6-a5ce-5031a78d7dd6",
"filename": "哈哈嚯嚯和和老師老師.webm",
"text": {
"zh-tw": "(哈哈嚯嚯和和) 老師老師!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "9xQAhyt-dHI",
"start": 1959,
"end": 1965
}
},
{
"id": "41212092-352d-49ad-bce4-0c37a6f9a785",
"filename": "Whyyoulaughatme.webm",
"text": {
"zh-tw": "Why you laugh at me?",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "9xQAhyt-dHI",
"start": 4561.271,
"end": 4579.854
}
},
{
"id": "5fbf62d3-f2d1-4561-8a3f-ee0918ffc6f3",
"filename": "AreyougoingtotalkingwithmeOrcanI咻咻you.webm",
"text": {
"zh-tw": "Are you going to talking with me? Or... can I 咻咻 you?",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "9xQAhyt-dHI",
"start": 4588,
"end": 4595
}
},
{
"id": "42c625dd-3c55-45fd-8598-d698b164e7f1",
"filename": "好過份好過份再一次.webm",
"text": {
"zh-tw": "好過份!好過份!再一次!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "9xQAhyt-dHI",
"start": 7478,
"end": 7485
}
},
{
"id": "bc4ace9d-fe52-4bd4-b46e-907dcc0b1297",
"filename": "吆喝聲.webm",
"text": {
"zh-tw": "(吆喝聲)",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "zUcRJFNFp8k",
"start": 1196,
"end": 1201
}
},
{
"id": "db6c4453-1338-4b40-ae09-d6ef1cc5412f",
"filename": "日文英文開場白.webm",
"text": {
"zh-tw": "(日文英文開場白)",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "MupE8VStlHg",
"start": 181,
"end": 191
}
},
{
"id": "fabc2313-1291-4978-a7de-a1913b7aa854",
"filename": "奇怪的音效.webm",
"text": {
"zh-tw": "(奇怪的音效)",
"ja": "(変な効果音)"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "1dox6zwBzPA",
"start": 2568,
"end": 2579
}
},
{
"id": "b728f65c-c7ab-4463-9666-8e1800dd84bd",
"filename": "呀色色的出來了好多好了不起.webm",
"text": {
"zh-tw": "呀~色色的~出來了好多~好了不起~",
"ja": "いやぁ! いい日だぁ! たくさん出たね! えらい!えらい!"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "hBSaya1GQm4",
"start": 3229,
"end": 3239
}
},
{
"id": "b65ff6c8-b6b8-4914-9521-89d0bfc37928",
"filename": "色色的叫聲.webm",
"text": {
"zh-tw": "(色色的叫聲)",
"ja": "(エロボイス)"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "hBSaya1GQm4",
"start": 3387,
"end": 3395
}
},
{
"id": "574535f7-c690-4d4e-b594-06bb3bd643f2",
"filename": "我這個人做事非常效率的艦長做事非常有效路咬到.webm",
"text": {
"zh-tw": "我這個人做事非常效率的,艦長做事非常有效路((咬到",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "yrKGu6EmDNY",
"start": 221,
"end": 226
}
},
{
"id": "36a1414e-40a0-4509-b926-38c5c1bdefae",
"filename": "字正腔圓艦長覺得你各位可以刷慢一點太快了.webm",
"text": {
"zh-tw": "(字正腔圓) 艦長覺得~你各位可以刷慢一點,太快了",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "yrKGu6EmDNY",
"start": 7126,
"end": 7134
}
},
{
"id": "e764aa8e-15b7-4c22-beb1-501b8b4df9b4",
"filename": "字正腔圓艦長今天想用發音標準的方式來和大家聊聊天大家覺得如何呢.webm",
"text": {
"zh-tw": "(字正腔圓) 艦長今天想用發音標準的方式來和大家聊聊天,大家覺得如何呢?",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "yrKGu6EmDNY",
"start": 7176,
"end": 7192
}
},
{
"id": "c6cb7b08-c265-4706-8e86-27eee122b5af",
"filename": "字正腔圓草怎麼會草呢艦長這麼努力努力到肚子都餓了呢.webm",
"text": {
"zh-tw": "(字正腔圓) 「草」,怎麼會草呢?艦長這麼努力,努力到肚子都餓了呢!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "yrKGu6EmDNY",
"start": 7207,
"end": 7214
}
},
{
"id": "acebf7ba-069e-4cb1-85b5-33c7e0a5c033",
"filename": "好清楚謝謝艦長的解析度一直都是高清的.webm",
"text": {
"zh-tw": "「好清楚」,謝謝,艦長的解析度一直都是高清的!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "yrKGu6EmDNY",
"start": 7246,
"end": 7251
}
},
{
"id": "a1fcd906-189d-4cd5-969b-0ca46342c79f",
"filename": "您撥的號碼是空號請查明後再撥.webm",
"text": {
"zh-tw": "「您撥的號碼是空號,請查明後再撥」",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "yrKGu6EmDNY",
"start": 7322,
"end": 7327
}
},
{
"id": "b7e80de9-2124-4002-827e-eb65ec04f649",
"filename": "字正腔圓我知道你們都是來自4V那個V還要故意這樣唸.webm",
"text": {
"zh-tw": "(字正腔圓) 我知道你們都是來自4V~那個V還要故意這樣唸",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "yrKGu6EmDNY",
"start": 7469,
"end": 7477
}
},
{
"id": "a111a727-e332-44c6-b4f3-46b6b67a043a",
"filename": "哥哥你看給我這什麼爛貨啦我的眼睛捕捉不良.webm",
"text": {
"zh-tw": "哥哥你看給我這什麼爛貨啦!我的眼睛!(捕捉不良)",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "yrKGu6EmDNY",
"start": 7888,
"end": 7893
}
},
{
"id": "d026ab32-c2aa-4d20-9e19-8cee69dcc7c8",
"filename": "我也不會我只能問哥哥問哥哥.webm",
"text": {
"zh-tw": "我也不會我只能問哥哥。問哥哥!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "yrKGu6EmDNY",
"start": 8081,
"end": 8085
}
},
{
"id": "3ff5f296-7a86-4d7e-a30d-a5c6b4ef1591",
"filename": "辣辣魚.webm",
"text": {
"zh-tw": "辣辣魚",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "bK7OqZVARQU",
"start": 1642,
"end": 1644
}
},
{
"id": "cf25fa0f-d358-4760-97fb-2209f5866029",
"filename": "魚好大的魚.webm",
"text": {
"zh-tw": "魚,好大的魚~",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "bK7OqZVARQU",
"start": 1636,
"end": 1639
}
},
{
"id": "91717431-0e85-4453-a52a-123c8a72f19f",
"filename": "粵語你好啊你好啊.webm",
"text": {
"zh-tw": "(粵語) 你好啊~你好啊~",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "s78U7mgXFlU",
"start": 8025,
"end": 8028
}
},
{
"id": "b71f78f2-ee52-4e8a-9170-92467a294e11",
"filename": "大家好我是GuildCQ的傻逼艦長薬袋アルマです.webm",
"text": {
"zh-tw": "大家好,我是GuildCQ的....傻逼艦長,薬袋アルマです",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "KjpkUIAbW3k",
"start": 135,
"end": 147
}
},
{
"id": "ec9cc619-ea9c-4e42-94d1-31a20efb757d",
"filename": "我怎麼會很糟糕呢我非常的清楚我是走清楚系的.webm",
"text": {
"zh-tw": "我怎麼會很糟糕呢? 我非常的清楚,我是走清楚系的",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "KjpkUIAbW3k",
"start": 285,
"end": 294
}
},
{
"id": "07ed62c2-e1a1-4f77-bfc8-db5ae4cbc0f5",
"filename": "記得把你的設定調成1080HD啊.webm",
"text": {
"zh-tw": "記得把你的設定調成1080HD啊",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "KjpkUIAbW3k",
"start": 318,
"end": 322
}
},
{
"id": "f102e0e0-733e-4e3c-94ed-79e280d7dc2b",
"filename": "高清無碼1080p.webm",
"text": {
"zh-tw": "高清無碼1080p",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "KjpkUIAbW3k",
"start": 356,
"end": 359
}
},
{
"id": "6451273e-2a61-4868-9b3a-07d8805ad4cc",
"filename": "反正艦長的臉應該沒有什麼差別.webm",
"text": {
"zh-tw": "反正艦長的臉應該沒有什麼差別",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "KjpkUIAbW3k",
"start": 625,
"end": 630
}
},
{
"id": "321d0edf-d8c7-496f-aaf5-c36b483c9e92",
"filename": "不婆嗎.webm",
"text": {
"zh-tw": "不婆嗎?",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "KjpkUIAbW3k",
"start": 740,
"end": 742
}
},
{
"id": "ebd61c5a-fe03-4c1d-aef8-479d7ffc2f25",
"filename": "我還是有那30的偶像成分在吧不婆嗎.webm",
"text": {
"zh-tw": "我還是有那30%的偶像成分在吧,不婆嗎?",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "KjpkUIAbW3k",
"start": 734,
"end": 743
}
},
{
"id": "1f1f8504-2f2a-4ee2-9628-72725e37f576",
"filename": "不可愛嗎.webm",
"text": {
"zh-tw": "不可愛嗎?",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "KjpkUIAbW3k",
"start": 749,
"end": 751
}
},
{
"id": "9f55574e-3441-4d2c-a28a-cc2a0fd8776c",
"filename": "不是只有草還有混沌.webm",
"text": {
"zh-tw": "不是只有草,還有混沌!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "KjpkUIAbW3k",
"start": 779,
"end": 782
}
},
{
"id": "b278de41-b379-4f84-93b2-2f59ee68ecc3",
"filename": "萌字頭上一把草啊.webm",
"text": {
"zh-tw": "「萌」字頭上一把草啊!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "KjpkUIAbW3k",
"start": 850,
"end": 854
}
},
{
"id": "a1de3c66-31be-4c1b-978c-efb9f2248c25",
"filename": "你們不要逼我.webm",
"text": {
"zh-tw": "你們不要逼我!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "KjpkUIAbW3k",
"start": 861,
"end": 863
}
},
{
"id": "470d156b-943b-4005-990c-a485bdac46de",
"filename": "我們就是一群可愛的草啊.webm",
"text": {
"zh-tw": "我們就是一群可愛的「草」啊~",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "KjpkUIAbW3k",
"start": 918,
"end": 921
}
},
{
"id": "8a238733-2adb-4c1f-ba83-b7f43146bb6d",
"filename": "辣妹.webm",
"text": {
"zh-tw": "辣妹!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {