-
Notifications
You must be signed in to change notification settings - Fork 2
/
channel_videos.json
1951 lines (1951 loc) · 70.1 KB
/
channel_videos.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
{
"channel": {
"title": "老高與小茉 Mr & Mrs Gao",
"description": "大家好!這裡是【老高與小茉 Mr & Mrs Gao】頻道。\n在這個頻道里我們會定期更新有趣的影片,希望大家能夠喜歡。\n不要忘記訂閱我們哦!\n一會兒影片里見咯!",
"viewCount": "1586866916",
"subscriberCount": "5530000",
"videoCount": "360",
"upload_playlist": "UUMUnInmOkrWN4gof9KlhNmQ"
},
"videos": [
{
"publishedAt": "2023-02-22T12:45:07Z",
"title": "【震撼】chatGPT太可怕,但一切才剛剛開始,我們要做好準備了 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "2880099",
"commentCount": "7137",
"video_id": "7uljoeHgN4g"
},
{
"publishedAt": "2023-02-15T13:46:36Z",
"title": "辛普森預言 2023 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "2684470",
"commentCount": "2534",
"video_id": "iLyiGy1gsqY"
},
{
"publishedAt": "2023-02-08T13:45:10Z",
"title": "1~7級宇宙文明什麼樣,剛剛發現一個比人類先進十萬年以上的二級宇宙文明 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "3128809",
"commentCount": "3744",
"video_id": "B4joIhlThpc"
},
{
"publishedAt": "2023-02-01T12:34:07Z",
"title": "這是一支需要反覆觀看的影片 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "3507458",
"commentCount": "3403",
"video_id": "aeqIeeXjYQw"
},
{
"publishedAt": "2023-01-25T12:55:10Z",
"title": "2040年人類將攻克絕症進入不死時代 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "3492081",
"commentCount": "4414",
"video_id": "ruN852_4XWc"
},
{
"publishedAt": "2023-01-18T12:30:08Z",
"title": "【震撼】信息量太大,四十三分鐘講完這個世界所有的真相 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "4379213",
"commentCount": "9422",
"video_id": "gEdn2Riy9Y0"
},
{
"publishedAt": "2023-01-11T12:00:07Z",
"title": "每天喝咖啡究竟會怎樣 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "3914852",
"commentCount": "5438",
"video_id": "nCuye7YN0DA"
},
{
"publishedAt": "2023-01-04T12:00:09Z",
"title": "2023,絕對不能實現的預言 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "4139612",
"commentCount": "5059",
"video_id": "jMfOYTfIv90"
},
{
"publishedAt": "2022-12-28T13:00:08Z",
"title": "山羊,梅西 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "2798461",
"commentCount": "3246",
"video_id": "iM0PsdXObes"
},
{
"publishedAt": "2022-12-21T12:00:08Z",
"title": "一般人我不告訴他,NASA突然要再次登月的真正原因 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "3505515",
"commentCount": "3636",
"video_id": "3P7ADC_r8ws"
},
{
"publishedAt": "2022-12-14T12:15:09Z",
"title": "沒人可以看完這個影片,因為不超過2分鐘你就會睡著了 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "3786387",
"commentCount": "3644",
"video_id": "EyPi1OlkCJE"
},
{
"publishedAt": "2022-12-07T15:20:20Z",
"title": "不能說的足球起源,年薪最高的球員,梅西第二,C羅第四,沒想到第一竟是他 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "3381073",
"commentCount": "2469",
"video_id": "SeGNp8eLpo8"
},
{
"publishedAt": "2022-11-30T13:01:53Z",
"title": "中了6億的男人告訴你,中彩票後人生發生的巨大變化和中彩票的方法 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "3950764",
"commentCount": "4440",
"video_id": "_fnRKk32qR8"
},
{
"publishedAt": "2022-11-23T12:15:15Z",
"title": "【神作】二十八分鐘詳解《天空之城》背後的故事,宮崎駿刪除的內容,克拉克三原則 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "3304158",
"commentCount": "2420",
"video_id": "ALpFEuzIN80"
},
{
"publishedAt": "2022-11-16T13:45:11Z",
"title": "【神作】三十分鐘講完阿米,宇宙基本法則,阿米對人類最後的警告,愛的真諦,人生在世的意義 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "3920742",
"commentCount": "6819",
"video_id": "GtsQ0XGNJ6M"
},
{
"publishedAt": "2022-11-09T13:15:10Z",
"title": "16個小時不吃東西,人體將啟動的一個高級的隱藏功能 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "4579252",
"commentCount": "9401",
"video_id": "aK8aT0-L6hE"
},
{
"publishedAt": "2022-11-02T12:00:08Z",
"title": "人類首次發現來自遙遠星系的訪客,它的形狀為何如此怪異,為何閃光,為何加速 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "3377326",
"commentCount": "3468",
"video_id": "eGBp8jyEoII"
},
{
"publishedAt": "2022-10-26T13:00:06Z",
"title": "因流言和訴訟飽受爭議,元祖蜘蛛人的真實人生 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "3197074",
"commentCount": "3624",
"video_id": "e40gNNwnz8U"
},
{
"publishedAt": "2022-10-19T13:45:06Z",
"title": "【震撼和感動】出生前的記憶,原來父母和兄弟姐妹都是自己選的,這才是我們來到這個世界的真正原因 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "4026229",
"commentCount": "6727",
"video_id": "2KmMwvze7yY"
},
{
"publishedAt": "2022-10-12T13:30:12Z",
"title": "NASA發現另一個地球,但卻反証我們的存在不合理 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5516537",
"commentCount": "3454",
"video_id": "FngxkO8NQgc"
},
{
"publishedAt": "2022-10-05T13:15:12Z",
"title": "尼斯湖水怪,1933-2022年 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "3453867",
"commentCount": "2513",
"video_id": "I8d50K4gmjw"
},
{
"publishedAt": "2022-09-28T13:00:12Z",
"title": "千萬不要吃這些食物,吃了毀一生 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5191586",
"commentCount": "6815",
"video_id": "Z0HkQco_xGE"
},
{
"publishedAt": "2022-09-21T14:00:11Z",
"title": "【震撼】外星人審○影像,它說出了信仰的真相,一個人引發了世界大戰,這個影片不簡單 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "4222838",
"commentCount": "6831",
"video_id": "1dudOwY9Jp4"
},
{
"publishedAt": "2022-09-14T13:01:36Z",
"title": "古書中記載的一個女月球人 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "3619482",
"commentCount": "3229",
"video_id": "zCwrcao41Iw"
},
{
"publishedAt": "2022-09-07T13:01:10Z",
"title": "【神作】只有五歲抬頭才能看注意到的那些超小細節,神隱少女(千與千尋) | 老高與小茉 Mr & Mrs Gao",
"viewCount": "4375926",
"commentCount": "4147",
"video_id": "cusG7CPDhD4"
},
{
"publishedAt": "2022-08-31T13:00:26Z",
"title": "詳解“人類消減計畫”,未來可能只剩下八種語言 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "4231058",
"commentCount": "3949",
"video_id": "Z2bUPc2uwz0"
},
{
"publishedAt": "2022-08-24T13:05:03Z",
"title": "這個島上全是“神人”,卻困在這裡上千年直到滅絕 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "4790617",
"commentCount": "2939",
"video_id": "YDyDrIBa31M"
},
{
"publishedAt": "2022-08-17T12:14:57Z",
"title": "【目前最長影片】人類不能知道的,完全另一個版本的世界的真相 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "7253580",
"commentCount": "5694",
"video_id": "A7h2clFxyj0"
},
{
"publishedAt": "2022-08-10T14:01:59Z",
"title": "【震撼】人類歷史最重要的考古發現,死海文書 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "4356341",
"commentCount": "3147",
"video_id": "BFMqm7zkld8"
},
{
"publishedAt": "2022-08-03T14:22:15Z",
"title": "【震撼】這就是目前人類最高的科技水平,超出你想像的詹姆斯韋伯空間望遠鏡 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "4283500",
"commentCount": "2948",
"video_id": "toK9rcrRzlk"
},
{
"publishedAt": "2022-07-27T14:41:21Z",
"title": "猴痘預言 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "3211394",
"commentCount": "3674",
"video_id": "ccqOc3VGOzE"
},
{
"publishedAt": "2022-07-25T09:39:33Z",
"title": "【重新上傳】不能說的都市傳說,●室 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "3548554",
"commentCount": "4899",
"video_id": "ROEaPaSSQRc"
},
{
"publishedAt": "2022-07-13T15:02:59Z",
"title": "只有俄羅斯沒有的快餐店 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "3730099",
"commentCount": "3387",
"video_id": "UMWKE2u8sPw"
},
{
"publishedAt": "2022-07-06T13:30:10Z",
"title": "【震撼】LaMDA,很有可能被刪掉的一期,盡快看吧 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5117012",
"commentCount": "11929",
"video_id": "1rmPnO1eqL4"
},
{
"publishedAt": "2022-06-29T13:51:31Z",
"title": "地獄共八層,最下一層千萬不能去 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "4259167",
"commentCount": "5725",
"video_id": "vLw2rbJaMXE"
},
{
"publishedAt": "2022-06-22T12:03:36Z",
"title": "飛來飛去的飛人事件 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "4230037",
"commentCount": "5095",
"video_id": "9gXPmfLWO4U"
},
{
"publishedAt": "2022-06-15T13:16:04Z",
"title": "這都什麼情況,人類不可能完成的巨石建築 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5017102",
"commentCount": "3485",
"video_id": "wYNxrXRXUxU"
},
{
"publishedAt": "2022-06-08T13:00:54Z",
"title": "【驚險】所有人都應該看的一期,男人和女人的區別 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5393348",
"commentCount": "9805",
"video_id": "tdQxAIJpGGE"
},
{
"publishedAt": "2022-06-01T14:59:42Z",
"title": "阿努納奇之吉爾伽美什,以眼還眼以牙還牙的真正意義 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "4178724",
"commentCount": "3453",
"video_id": "P2RnqrECp1I"
},
{
"publishedAt": "2022-05-25T14:25:23Z",
"title": "鳳凰城光點 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "3457089",
"commentCount": "2894",
"video_id": "N4S1ZhlvN-s"
},
{
"publishedAt": "2022-05-18T14:02:41Z",
"title": "【震撼】瀕死體驗中看到好多人在排隊,領取一樣非常重要的東西 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5805927",
"commentCount": "7135",
"video_id": "2V9tF2ngPn8"
},
{
"publishedAt": "2022-05-11T14:11:42Z",
"title": "【震撼】“我”其實根本不存在,“被動意識”假說 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "4841405",
"commentCount": "7368",
"video_id": "vu1H39yi1Pc"
},
{
"publishedAt": "2022-05-04T14:01:08Z",
"title": "【雖然被警告不要說】但是我還是決定公開這一期 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "7598036",
"commentCount": "5216",
"video_id": "QMsbQ97Ah_M"
},
{
"publishedAt": "2022-04-27T13:31:01Z",
"title": "二十分鐘講完宇宙的一生,從一切的開始到結束 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "3696829",
"commentCount": "3986",
"video_id": "iMntG5KjUmM"
},
{
"publishedAt": "2022-04-20T14:21:14Z",
"title": "【不好意思,今天的標題可能嚇到各位,但我必須說】我們之間其實沒有任何關係 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "6953803",
"commentCount": "5533",
"video_id": "nhnrfTb8xzA"
},
{
"publishedAt": "2022-04-13T14:01:25Z",
"title": "世界末日可能和這兩個國家有關 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5023969",
"commentCount": "5466",
"video_id": "O1DR0O-t12Y"
},
{
"publishedAt": "2022-04-06T13:00:57Z",
"title": "反物理法則,墨西哥火山附近出現的各種神奇的不明飛行物 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "3904300",
"commentCount": "2914",
"video_id": "at6SJkmogvQ"
},
{
"publishedAt": "2022-03-30T14:07:22Z",
"title": "【如果爆發核戰爭】我會立即這樣做 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "4383934",
"commentCount": "6448",
"video_id": "nIVgberBC5Y"
},
{
"publishedAt": "2022-03-23T13:39:11Z",
"title": "【講到流淚】二十分鐘講完第一次世界大戰 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "7053687",
"commentCount": "21506",
"video_id": "G5y85I52HRg"
},
{
"publishedAt": "2022-03-16T13:21:55Z",
"title": "【千萬不要發生】第三次世界大戰預言,世界上只有一個地方可以躲過這個災難 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "6376283",
"commentCount": "7963",
"video_id": "NqJ0BrUh9S4"
},
{
"publishedAt": "2022-03-09T12:52:18Z",
"title": "【匿名者】一個存在了二十年的神秘團體 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "3891825",
"commentCount": "4618",
"video_id": "UVQ9zE8C3aE"
},
{
"publishedAt": "2022-03-02T13:16:46Z",
"title": "人變成惡魔的方法 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "3801751",
"commentCount": "4277",
"video_id": "WAwi7sbJL3U"
},
{
"publishedAt": "2022-02-23T13:01:12Z",
"title": "【緊急】一個正在發生的預言 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5034716",
"commentCount": "5928",
"video_id": "ZIJZyIqDD6I"
},
{
"publishedAt": "2022-02-16T13:00:28Z",
"title": "超出想像的黑魔法,蠱 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "4014101",
"commentCount": "3821",
"video_id": "YTZn2a33sDY"
},
{
"publishedAt": "2022-02-09T13:21:26Z",
"title": "把死人復活的正確方法,你不知道的埃及 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5555699",
"commentCount": "2941",
"video_id": "EBVNj5vQqHA"
},
{
"publishedAt": "2022-02-02T13:13:31Z",
"title": "真實事件 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "3548711",
"commentCount": "1807",
"video_id": "OaOb_V7-CWw"
},
{
"publishedAt": "2022-01-26T13:16:04Z",
"title": "《我看到未來》目前最準的預言漫畫 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5782117",
"commentCount": "5302",
"video_id": "L-EeLJHnimU"
},
{
"publishedAt": "2022-01-22T07:35:21Z",
"title": "【】 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "0",
"commentCount": "0",
"video_id": "MAV_bn03-Ms"
},
{
"publishedAt": "2022-01-19T13:11:16Z",
"title": "【錢的極限】人一輩子最多能賺多少錢 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5444319",
"commentCount": "3401",
"video_id": "-oqs6PcuUCI"
},
{
"publishedAt": "2022-01-12T13:16:33Z",
"title": "三根手指的木乃伊仰望天空,他在等誰 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "4977505",
"commentCount": "2774",
"video_id": "WzR7onF418E"
},
{
"publishedAt": "2022-01-10T14:30:42Z",
"title": "【NFT】Youtube送給我的小禮物 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "1546613",
"commentCount": "735",
"video_id": "MhNNU4kxn4o"
},
{
"publishedAt": "2022-01-05T12:39:09Z",
"title": "沒想到居然是上海 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5470333",
"commentCount": "6814",
"video_id": "hFKSeFjTZM4"
},
{
"publishedAt": "2021-12-29T13:12:10Z",
"title": "印度神童阿南德的預言 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "4403189",
"commentCount": "3264",
"video_id": "pQbYI0vEnWo"
},
{
"publishedAt": "2021-12-22T12:07:05Z",
"title": "癌症悖論,鯨魚超長壽命的秘密 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "4084036",
"commentCount": "4118",
"video_id": "hVmNVv83FEs"
},
{
"publishedAt": "2021-12-15T13:14:15Z",
"title": "一個被封印的事件 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5908571",
"commentCount": "5821",
"video_id": "vGdg7YC0B6g"
},
{
"publishedAt": "2021-12-08T12:00:14Z",
"title": "這也許才是世界的真相,我們其實一直都生活在幻象之中 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "4877463",
"commentCount": "4450",
"video_id": "D2cbC0-qnFc"
},
{
"publishedAt": "2021-12-01T12:00:46Z",
"title": "考古學上最震撼的發現,超越想象的古代高科技 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5534217",
"commentCount": "3296",
"video_id": "q3JD4mHJWig"
},
{
"publishedAt": "2021-11-24T12:02:06Z",
"title": "類人,黑猩猩為什麼像人卻永遠無法成為人 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "3599327",
"commentCount": "3746",
"video_id": "A-adUADPCFI"
},
{
"publishedAt": "2021-11-17T12:00:48Z",
"title": "不可不知的NFT,元宇宙的根本,另一個世界的證明 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "4245673",
"commentCount": "4774",
"video_id": "cDk1FPoCfqI"
},
{
"publishedAt": "2021-11-10T12:02:26Z",
"title": "千萬不要錯過,將會徹底改變世界的元宇宙 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "4307654",
"commentCount": "10447",
"video_id": "hm5K-PBz0rg"
},
{
"publishedAt": "2021-11-03T12:03:34Z",
"title": "千萬不要碰,帶來短暫幸福和永恆災難的植物 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5352306",
"commentCount": "5186",
"video_id": "37bIDXBGvEs"
},
{
"publishedAt": "2021-10-27T12:30:11Z",
"title": "現實版越獄,從惡魔島逃出來的人 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5183082",
"commentCount": "2312",
"video_id": "mNadMVe5iQY"
},
{
"publishedAt": "2021-10-20T12:00:30Z",
"title": "漢堡的故事,漢堡是怎麼來的 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "3904298",
"commentCount": "4190",
"video_id": "V85ST7qn6Aw"
},
{
"publishedAt": "2021-10-13T12:15:01Z",
"title": "看完這個影片你將開始成爲有錢人,普通人成為有錢人的唯一方法 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5845270",
"commentCount": "6855",
"video_id": "_IMww7gwIus"
},
{
"publishedAt": "2021-10-06T12:00:19Z",
"title": "超越認知的印度 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "7207038",
"commentCount": "6772",
"video_id": "0cXTyTmDRUI"
},
{
"publishedAt": "2021-09-29T12:00:10Z",
"title": "科學最大難題,“拉普拉斯惡魔”的存在 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "4692376",
"commentCount": "9385",
"video_id": "P7YJbeuaTXQ"
},
{
"publishedAt": "2021-09-22T12:00:35Z",
"title": "人體冷凍,目前永生的唯一選擇 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "3916563",
"commentCount": "3076",
"video_id": "yWj2Z4K3LpY"
},
{
"publishedAt": "2021-09-15T12:04:51Z",
"title": "超出你想象的貴族階級,普通人成爲貴族的唯一方法 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "6182218",
"commentCount": "4367",
"video_id": "LS4fUFElLzY"
},
{
"publishedAt": "2021-09-08T13:00:45Z",
"title": "千萬不要看她的眼睛,否則後果不堪想象 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5181273",
"commentCount": "4199",
"video_id": "UiQCan3GSEs"
},
{
"publishedAt": "2021-09-01T12:00:03Z",
"title": "人爲什麽一定要死?其實“不死”比“死”更為可怕 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "6377083",
"commentCount": "6453",
"video_id": "AK4l017rTt4"
},
{
"publishedAt": "2021-08-25T12:30:16Z",
"title": "【神作】三十六分鐘完全解説這部完美閉合的漫畫 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "8561056",
"commentCount": "9570",
"video_id": "ZN4yFKJuS4Y"
},
{
"publishedAt": "2021-08-18T12:00:24Z",
"title": "空中最可怕的生物,第一名居然捕食猴子 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "4721438",
"commentCount": "4279",
"video_id": "OUBGMzW6TPI"
},
{
"publishedAt": "2021-08-11T12:00:02Z",
"title": "超出你想象的地球故事 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "9420123",
"commentCount": "6152",
"video_id": "5AseSLCG7wI"
},
{
"publishedAt": "2021-08-04T12:00:08Z",
"title": "世界上最高風險高收入的職業 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "4909236",
"commentCount": "3462",
"video_id": "9TsXrxXn0u4"
},
{
"publishedAt": "2021-07-28T12:30:08Z",
"title": "27分鐘講完十二泰坦與衆神,超越你想象的希臘神話 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "6032355",
"commentCount": "5158",
"video_id": "Yyzb2uvihp4"
},
{
"publishedAt": "2021-07-21T12:00:14Z",
"title": "打疫苗前你應該先看這個影片 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "4197709",
"commentCount": "8510",
"video_id": "b5wq2mSQMjU"
},
{
"publishedAt": "2021-07-14T12:00:30Z",
"title": "用影片證明2027年人類消失?目前最火的一個未來人 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5528525",
"commentCount": "12279",
"video_id": "Y1xOWrqebVs"
},
{
"publishedAt": "2021-07-12T03:23:18Z",
"title": "【吃飯影片&首次公開】老高的房間 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "4225898",
"commentCount": "6770",
"video_id": "kvDfe2iSM5s"
},
{
"publishedAt": "2021-07-07T12:00:35Z",
"title": "消除失眠疲勞的根本方法,自律神經 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5368045",
"commentCount": "6075",
"video_id": "m0tzzlqj3LQ"
},
{
"publishedAt": "2021-06-30T12:00:31Z",
"title": "全面解密真正的51區 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5446515",
"commentCount": "4367",
"video_id": "oQ3ihvjrfxo"
},
{
"publishedAt": "2021-06-23T13:00:14Z",
"title": "宇宙有多大,人類最遠可以到達宇宙的什麽地方 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "7727389",
"commentCount": "8789",
"video_id": "gH_NIUqOJos"
},
{
"publishedAt": "2021-06-16T13:15:00Z",
"title": "碰到就玩完了,世界上最可怕的十大海洋生物 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "7138989",
"commentCount": "4444",
"video_id": "ZYjCi4rpAiQ"
},
{
"publishedAt": "2021-06-09T12:02:41Z",
"title": "價值千億,可口可樂的神秘配方 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5064635",
"commentCount": "7839",
"video_id": "WMQ_trKsxAw"
},
{
"publishedAt": "2021-06-02T13:07:41Z",
"title": "【神作】四十分鐘講完三體 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "11517657",
"commentCount": "10011",
"video_id": "2vowHo2y-hI"
},
{
"publishedAt": "2021-05-26T12:30:06Z",
"title": "超出你想象的地表最强生物 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5113341",
"commentCount": "7699",
"video_id": "T0yrWmNYZ7Q"
},
{
"publishedAt": "2021-05-19T12:30:08Z",
"title": "你所不知道的達爾文 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "4955631",
"commentCount": "4827",
"video_id": "wUoP_PXtOso"
},
{
"publishedAt": "2021-05-12T12:00:29Z",
"title": "世界上最危險的五個黑客(駭客) | 老高與小茉 Mr & Mrs Gao",
"viewCount": "4287542",
"commentCount": "3462",
"video_id": "Z2TtWeVK8CI"
},
{
"publishedAt": "2021-05-05T12:00:18Z",
"title": "一直活到現在的地球原住民 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5454981",
"commentCount": "3697",
"video_id": "KuX7OFTOQ48"
},
{
"publishedAt": "2021-04-21T12:00:04Z",
"title": "千萬不要去!世界十大人類禁地 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "9745348",
"commentCount": "5886",
"video_id": "6SwJpgNLvTk"
},
{
"publishedAt": "2021-04-14T12:00:10Z",
"title": "這裏出現了太多“不該出現的”東西,和任何古文明都不一樣的三星堆 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5922749",
"commentCount": "6045",
"video_id": "RWuUcYXAleM"
},
{
"publishedAt": "2021-04-07T12:00:02Z",
"title": "當人工智能開始說謊,人類末日就會來臨 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "4201584",
"commentCount": "4886",
"video_id": "6u_cV7vV0fY"
},
{
"publishedAt": "2021-03-31T12:00:10Z",
"title": "你每天都做這件事,但你真的知道自己在做什麽嗎 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "4434105",
"commentCount": "6004",
"video_id": "GmkPHh2wVmQ"
},
{
"publishedAt": "2021-03-24T12:00:19Z",
"title": "學會這種語言,你就能夠看到未來 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5619135",
"commentCount": "7701",
"video_id": "WBm7WORmgQk"
},
{
"publishedAt": "2021-03-17T12:00:15Z",
"title": "【震撼】看完這期你就無敵了,史上最強戰術,不戰而勝的奧義,孫子兵法 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "7411343",
"commentCount": "7979",
"video_id": "4CvVL-rSX8E"
},
{
"publishedAt": "2021-03-10T12:15:17Z",
"title": "如何讓你的時間比別人流逝的更慢 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "4450308",
"commentCount": "5085",
"video_id": "XQNz8pL6Vms"
},
{
"publishedAt": "2021-03-03T12:00:17Z",
"title": "【震撼】最詳盡的阿努納奇的傳説,人類誕生的真正原因,蜥蜴人是怎么来的,莉莉丝究竟是谁 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "6389449",
"commentCount": "4820",
"video_id": "XRHM-KHxqTw"
},
{
"publishedAt": "2021-02-24T12:30:16Z",
"title": "十一維度的世界!未來和過去的真正關係 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5813041",
"commentCount": "6759",
"video_id": "S6zZTkR5y4Y"
},
{
"publishedAt": "2021-02-17T12:15:15Z",
"title": "反重力,違反自然規律的終極表現 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5125366",
"commentCount": "6744",
"video_id": "Uz_odwmwNPU"
},
{
"publishedAt": "2021-02-10T12:30:18Z",
"title": "世界首富為我們設計的未來世界,馬斯克2021 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5366517",
"commentCount": "8082",
"video_id": "3mBLjHxwwmo"
},
{
"publishedAt": "2021-02-03T12:30:12Z",
"title": "誤入平行宇宙事件,不存在的同學潘博文 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5366724",
"commentCount": "10559",
"video_id": "-2u6RirE7aI"
},
{
"publishedAt": "2021-01-27T13:30:12Z",
"title": "【神作】二十分鐘講完《EVA》中的人類補完計劃 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5149000",
"commentCount": "7214",
"video_id": "kXeBsuO3D10"
},
{
"publishedAt": "2021-01-20T12:30:14Z",
"title": "我要搬家了,在探索太陽系的時候偶然發現了真正的2021預言,大災難與太陽黑子數量之間可能存在某種聯係 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "6385180",
"commentCount": "6492",
"video_id": "so8E3Cp_OAw"
},
{
"publishedAt": "2021-01-13T12:15:11Z",
"title": "世界正在無限循環,你要做的只有這件事 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5785955",
"commentCount": "9912",
"video_id": "QfJG_Yoy2sM"
},
{
"publishedAt": "2021-01-06T12:15:14Z",
"title": "目前最搞笑的一期,我們本來都是神但由於選擇了美貌而變成了人 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "7857687",
"commentCount": "7697",
"video_id": "p25SV0WQWjA"
},
{
"publishedAt": "2020-12-30T12:15:11Z",
"title": "隱藏了百年的關於這個世界的第三個預言 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5786919",
"commentCount": "6968",
"video_id": "_D1hvfIaW_c"
},
{
"publishedAt": "2020-12-23T12:45:13Z",
"title": "地球上智商最高的九種動物,第一名就快變成人了 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "7175385",
"commentCount": "5908",
"video_id": "mjk1Huc_FoY"
},
{
"publishedAt": "2020-12-16T12:15:13Z",
"title": "四千億隻蝗蟲哪去了?這可能就是人類的結局 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5796604",
"commentCount": "6166",
"video_id": "FE15vkiXuwE"
},
{
"publishedAt": "2020-12-09T12:15:13Z",
"title": "猶他州神秘的金屬柱消失后又出來三根,人類起源可能真的跟柱子有關 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5545005",
"commentCount": "4480",
"video_id": "yOw1Bo7p9eo"
},
{
"publishedAt": "2020-12-02T12:15:09Z",
"title": "超超超超罕見的四種人 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5713433",
"commentCount": "5460",
"video_id": "LP7PxJUi_yI"
},
{
"publishedAt": "2020-11-25T13:30:12Z",
"title": "鬼滅之刃,一定要看的真正原因 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "6468057",
"commentCount": "12107",
"video_id": "sHsHOjYvgX4"
},
{
"publishedAt": "2020-11-18T13:45:11Z",
"title": "可怕的巨大史前生物,我們該慶幸它們已經滅絕了 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "7988546",
"commentCount": "5011",
"video_id": "BXybSLUlFvM"
},
{
"publishedAt": "2020-11-11T12:00:26Z",
"title": "人有一個很大的弱點,你知道嗎 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5168672",
"commentCount": "9667",
"video_id": "WNJYh9TgN-Y"
},
{
"publishedAt": "2020-11-04T12:15:09Z",
"title": "目前信息量最大的一期,重力 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "9657885",
"commentCount": "7667",
"video_id": "-TDVKQjmf7c"
},
{
"publishedAt": "2020-10-28T13:15:09Z",
"title": "目前結尾最特別的一期,PS5和虛幻引擎5 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5514892",
"commentCount": "8258",
"video_id": "zhh42BM3vTQ"
},
{
"publishedAt": "2020-10-21T12:00:12Z",
"title": "引起抑鬱的真正原因 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5690874",
"commentCount": "10102",
"video_id": "EYV9Pjk8cRA"
},
{
"publishedAt": "2020-10-14T13:30:11Z",
"title": "目前最亂的一期,北歐神話 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5683981",
"commentCount": "5421",
"video_id": "bmmtumVQgrg"
},
{
"publishedAt": "2020-10-07T13:00:12Z",
"title": "目前最長的一期,只有五歲抬頭才能看懂的天能(信条) | 老高與小茉 Mr & Mrs Gao",
"viewCount": "9364297",
"commentCount": "11388",
"video_id": "UiyWuEwxCNQ"
},
{
"publishedAt": "2020-09-30T12:15:12Z",
"title": "目前最細思極恐的一期,二十五號宇宙 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "7633639",
"commentCount": "10542",
"video_id": "htz2xCJb3Lc"
},
{
"publishedAt": "2020-09-23T13:30:16Z",
"title": "不可思议的前世記憶,可能你也有 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "6746813",
"commentCount": "7654",
"video_id": "v3kfH0a_dDY"
},
{
"publishedAt": "2020-09-16T12:00:14Z",
"title": "歐米娜預言,她不是未來人也不是地球人 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5293022",
"commentCount": "10010",
"video_id": "lKhDjOP5EEs"
},
{
"publishedAt": "2020-09-09T12:30:12Z",
"title": "自私的基因,其實我們都被基因利用了 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "4219270",
"commentCount": "5425",
"video_id": "Z2ZGlH0FrX0"
},
{
"publishedAt": "2020-09-02T12:00:11Z",
"title": "神作!星際效應,用最簡單的方式告訴你什麽是五維時空 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "8104840",
"commentCount": "9422",
"video_id": "KefYmjM0E7g"
},
{
"publishedAt": "2020-08-26T13:15:13Z",
"title": "世界是虛擬的但有一個東西是真實的 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "6922861",
"commentCount": "9960",
"video_id": "B-I2guiXzRA"
},
{
"publishedAt": "2020-08-19T13:00:12Z",
"title": "你看到的都是錯覺 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5090361",
"commentCount": "6078",
"video_id": "5S8jvUaqg-Q"
},
{
"publishedAt": "2020-08-12T13:45:14Z",
"title": "十天之內三個國家發射火星探測器,火星移民開始 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5721238",
"commentCount": "6064",
"video_id": "cpWRUoEB5VQ"
},
{
"publishedAt": "2020-08-05T13:30:12Z",
"title": "KFK預言,目前爲止最可信的一個未來人 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "7015831",
"commentCount": "17340",
"video_id": "ZTxc1YY64cM"
},
{
"publishedAt": "2020-07-29T14:00:39Z",
"title": "把左腦和右腦分割之後產生的不可思議的現象 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5406609",
"commentCount": "7001",
"video_id": "pDZyb1xhLPE"
},
{
"publishedAt": "2020-07-22T14:45:32Z",
"title": "雪山上發生的最不可思議的事 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "7135408",
"commentCount": "6877",
"video_id": "8Y-l9WaOd_w"
},
{
"publishedAt": "2020-07-15T13:30:31Z",
"title": "【震撼】進化,從1859到2020 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "7247081",
"commentCount": "7484",
"video_id": "yNFgOL-7nOw"
},
{
"publishedAt": "2020-07-08T13:15:12Z",
"title": "折磨了人類三百年的難題 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "5620958",
"commentCount": "6960",
"video_id": "jaoqxAjpSUE"
},
{
"publishedAt": "2020-07-01T13:00:38Z",
"title": "人類的隱藏能力,從氣功到超能力還有另一個世界的存在 | 老高與小茉 Mr & Mrs Gao",
"viewCount": "9474830",
"commentCount": "12163",
"video_id": "3Okf8nOIVLY"
},
{
"publishedAt": "2020-06-24T13:00:12Z",
"title": "學校永遠不會教你的知識,錢是什麽 | 老高與小茉 Mr & Mrs Gao",