-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvideo_config.json
More file actions
1380 lines (1366 loc) · 44.7 KB
/
video_config.json
File metadata and controls
1380 lines (1366 loc) · 44.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
{
"welcome": [
{
"src": "https://adapter.codelab.club/video/1593410656522462.mp4",
"title": ""
}
],
"首页": [
{
"src": "https://adapter.codelab.club/video/1593410656522462.mp4",
"title": "video"
},
{
"src": "https://adapter.codelab.club/video/1593410656522462.mp4",
"title": "video"
},
{
"src": "https://adapter.codelab.club/video/1593410656522462.mp4",
"title": "video"
},
{
"src": "https://adapter.codelab.club/video/1593410656522462.mp4",
"title": "video"
}
],
"横版视频": [
{
"src": "https://adapter.codelab.club/video/1624253382862846.mp4",
"title": "高级编辑器",
"id": "3",
"tags": [],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/1624253387482179.mp4",
"title": "在线交互计算课程(jupyterhub)",
"id": "3",
"tags": ["机器人"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/1623132452266836.mp4",
"title": "hi pi-top",
"id": "3",
"tags": ["机器人"],
"weight": "",
"project_url": "https://adapter.codelab.club/extension_guide/pi-top/"
},
{
"src": "https://adapter.codelab.club/video/1622610016956349.mp4",
"title": "机械臂",
"id": "3",
"tags": ["机器人"],
"weight": "",
"project_url": "https://discuss.codelab.club/t/topic/259"
},
{
"src": "https://adapter.codelab.club/video/c81708f21e688c6ddb574f54c27b43.MP4",
"title": "可编程舞台-舞台灯光",
"id": "3",
"tags": ["Neverland2"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/1620365dfdf3erf34rf.mp4",
"title": "物理引擎2.0-台球",
"id": "3",
"tags": ["物理引擎"],
"weight": "",
"project_url": "https://discuss.codelab.club/t/topic/235"
},
{
"src": "https://adapter.codelab.club/video/1620610444486932.mp4",
"title": "gamepad-漂移",
"id": "3",
"tags": ["高级编辑器"],
"weight": "",
"project_url": "https://discuss.codelab.club/t/topic/238"
},
{
"src": "https://adapter.codelab.club/video/1620610446385098.mp4",
"title": "高级编辑器-兼容gamepad",
"id": "3",
"tags": ["高级编辑器"],
"weight": "",
"project_url": "https://discuss.codelab.club/t/topic/237"
},
{
"src": "/img/1p2machine.MP4",
"title": "跨机器 Scratch 同步",
"id": "3",
"tags": ["Neverland2"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/d8ef88b3386eacfb5f37f81cd3ba8c.MP4",
"title": "addons & beats",
"id": "3",
"tags": [""],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/231b6206d9dd70a4656d3126f298d3.MP4",
"title": "接入小火车",
"id": "3",
"tags": [""],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/d1772718fc1292975b2ec0531f244d.MP4",
"title": "摇晃魔方控制智能灯",
"id": "3",
"tags": [""],
"weight": "",
"project_url": "https://discuss.codelab.club/t/topic/239"
},
{
"src": "https://adapter.codelab.club/video/a6b6c0576c150144e1ae0226b7bee8.MP4",
"title": "召唤变形金刚",
"id": "3",
"tags": [""],
"weight": "",
"project_url": "https://discuss.codelab.club/t/topic/236"
},
{
"src": "https://adapter.codelab.club/video/1615793877192664.mp4",
"title": "可编程沙盘",
"id": "3",
"tags": ["Neverland2"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/overdrive-ai-demo.MP4",
"title": "四驱兄弟之Neverland剧场版 (AI实时训练)",
"id": "3",
"tags": ["Neverland2"],
"weight": "",
"project_url": "https://discuss.codelab.club/t/topic/240"
},
{
"src": "https://adapter.codelab.club/video/54a5a5bbca6d01a0a7947afbe2e570.MP4",
"title": "环境与对象的可编程性",
"id": "3",
"tags": [],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/08022ae2b5ffe87c68f21ad9dee5ec.MP4",
"title": "3D世界作为Scratch的舞台",
"id": "3",
"tags": [],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/95ed6929a48e4af229f34599068319.MP4",
"title": "秋天场景里的可编程星舰",
"id": "3",
"tags": [],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/hello-blender.mp4",
"title": "Scratch & Blender 星舰剧场",
"id": "3",
"tags": ["Neverland2"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/89885caff19be76b24502f13f7d425.MP4",
"title": "microbit 无线油门",
"id": "3",
"tags": [],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/8b4596f7a47d6beb51cb878711a8a7.MP4",
"title": "Neverland 2.0 原型--踢香蕉",
"id": "3",
"tags": ["Neverland2"],
"weight": "",
"project_url": "https://discuss.codelab.club/t/topic/241"
},
{
"src": "https://adapter.codelab.club/video/0373483608052c3f6b63098392f826.MP4",
"title": "行为艺术",
"id": "3",
"tags": ["Neverland2"],
"weight": "",
"project_url": "https://discuss.codelab.club/t/topic/242"
},
{
"src": "https://adapter.codelab.club/video/fe5fb1d3ce1d311740faf31eb7cb1f.MP4",
"title": "jupyterlab Overdrive",
"id": "3",
"tags": [],
"weight": "",
"project_url": "https://discuss.codelab.club/t/topic/243"
},
{
"src": "https://adapter.codelab.club/video/1081e7f968389114158aea3601ef21.MP4",
"title": "Neverland 2.0 原型--记忆里翻牌游戏",
"id": "3",
"tags": ["Neverland2"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/8470b781e0551b782fba2e7d72382c.MP4",
"title": "Neverland 2.0 原型--记忆里翻牌游戏(与机器人协作)",
"id": "3",
"tags": ["Neverland2"],
"weight": "",
"project_url": "https://discuss.codelab.club/t/topic/244"
},
{
"src": "https://adapter.codelab.club/video/8a9edf95b1d1da2fd2dcc11ef3427a.MP4",
"title": "Hello Raspberry Pi Pico",
"id": "3",
"tags": ["Neverland2"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/6920462938283877706.MP4",
"title": "microbit驾驶仪",
"id": "3",
"tags": [],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/bfaa594b4419b4a056f1ebfc3022ae.MP4",
"title": "Neverland 2.0 原型--真的跨年",
"id": "3",
"tags": ["Neverland2"],
"weight": "",
"project_url": "https://discuss.codelab.club/t/topic/245"
},
{
"src": "https://adapter.codelab.club/video/eb22d4aeaf623afe259f30bd1aaefd.MP4",
"title": "Neverland 2.0 原型--在CodeLab跨年",
"id": "3",
"tags": ["Neverland2"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/6dfdf79.MP4",
"title": "Sphero RVR",
"id": "3",
"tags": ["Neverland2"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/6919292053349106690.MP4",
"title": "Neverland 2.0 原型--彩虹乐器",
"id": "3",
"tags": ["Neverland2"],
"weight": "",
"project_url": "https://discuss.codelab.club/t/topic/246"
},
{
"src": "https://adapter.codelab.club/video/legomario.MP4",
"title": "真的马里奥",
"id": "3",
"tags": ["Neverland2"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/1609339244644934.mp4",
"title": "Neverland 2.0 原型--画个圈圈",
"id": "3",
"tags": ["Neverland2"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/1609339245152003.mp4",
"title": "Neverland 2.0 原型--德尔斐箴言",
"id": "3",
"tags": ["Neverland2"],
"weight": "",
"project_url": "https://discuss.codelab.club/t/topic/247"
},
{
"src": "https://adapter.codelab.club/video/1609340165766239.mp4",
"title": "Neverland 2.0 原型--追光",
"id": "3",
"tags": ["Neverland2"],
"weight": "",
"project_url": "https://discuss.codelab.club/t/topic/248"
},
{
"src": "https://adapter.codelab.club/video/1609323186764794.mp4",
"title": "Neverland 2.0 原型--玻璃碎片",
"id": "3",
"tags": ["Neverland2"],
"weight": "",
"project_url": "https://discuss.codelab.club/t/topic/250"
},
{
"src": "https://adapter.codelab.club/video/1609323190133251.mp4",
"title": "Neverland 2.0 原型--墙面画笔",
"id": "3",
"tags": ["Neverland2"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/1609173005021776.mp4",
"title": "Neverland 2.0 原型--地面多点触控",
"id": "3",
"tags": ["Neverland2"],
"weight": "",
"project_url": "https://discuss.codelab.club/t/topic/249"
},
{
"src": "https://adapter.codelab.club/video/1608865673731432.mp4",
"title": "MIDI 乐器",
"id": "3",
"tags": ["Neverland2"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/1608804837247213.mp4",
"title": "tunnel",
"id": "3",
"tags": ["Neverland2"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/1608689235907497.mp4",
"title": "魔杖激活开场视频",
"id": "3",
"tags": ["Neverland2"],
"weight": "",
"project_url": "https://create.codelab.club/projects/8499/"
},
{
"src": "https://adapter.codelab.club/video/1608519188336306.mp4",
"title": "Neverland 2.0 原型-Welcome to CodeLab",
"id": "3",
"tags": ["Neverland2"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/1608519188329664.mp4",
"title": "Neverland 2.0 原型-投影测试",
"id": "3",
"tags": ["Neverland2"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/1608521723783350.mp4",
"title": "Scratch & 虚幻4(Unreal Engine)",
"id": "3",
"tags": ["Neverland2"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/1608367488419632.mp4",
"title": "Linda Lively/JavaScript client",
"id": "3",
"tags": [],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/1608095793244042.mp4",
"title": "Jupyter 与 Scratch 的互操作(基于Linda)",
"id": "3",
"tags": [],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/1608092417506796.mp4",
"title": "可理解的实时Python编程环境",
"id": "3",
"tags": [],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/1608041327753652.mp4",
"title": "2 Scratch & Python & Linda",
"id": "3",
"tags": ["Neverland2"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/1607594552142394.mp4",
"title": "交互地面",
"id": "3",
"tags": ["Neverland2"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/1607691889168038.mp4",
"title": "一起摇摆",
"id": "3",
"tags": ["Neverland2"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/1608024789501962.mp4",
"title": "城市音乐节",
"id": "3",
"tags": ["Neverland2"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/1607421421434030.mp4",
"title": "数码宝贝: Cozmo",
"id": "3",
"tags": ["机器人", "Neverland2"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/1605187287307932.mp4",
"title": "Etoys & CodeLab Adapter(Python extension)",
"id": "3",
"tags": [],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/12d30ae7cb52dcb0e894d7c9371da8.MP4",
"title": "将Python提升到Smalltalk-like沉浸式编程环境",
"id": "3",
"tags": [],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/1603782783858008.mp4",
"title": "浏览器里的 Smalltalk & Scratch & CodeLab Adapter",
"id": "3",
"tags": [],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/smalltalk-scratch.mp4",
"title": "Smalltalk & Scratch",
"id": "3",
"tags": ["物联网"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/新的marker.mp4",
"title": "DynamicTable marker 原型2",
"id": "3",
"tags": ["物联网"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/1604400289579774.mp4",
"title": "OSC 转 midi",
"id": "3",
"tags": [],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/1603105233433018.mp4",
"title": "接入 OSC 协议(手写板)",
"id": "3",
"tags": ["物联网"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/1601261973458887.mp4",
"title": "Neverland 2.0 demo",
"id": "3",
"tags": ["魔法"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/1588994952631075.mp4",
"title": "给你一点阳光",
"title-cn": "Give you some sunshine",
"tags": ["机器人", "物联网"],
"关键字":[],
"介绍":"",
"想法":"",
"材料":["硬件", "软件:xx", "纸张"],
"源码":"社区项目",
"制作步骤": "",
"id": "3",
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/1600057223631481.mp4",
"title": "水晶球",
"id": "3",
"tags": ["魔法"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/1600057226116780.mp4",
"title": "悟空是一只伪装成机器人的猴子",
"id": "3",
"tags": ["机器人"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/IMG_0657_1598435455275317.mp4 ",
"title": "魔法烟花秀",
"id": "3",
"tags": ["魔法"],
"weight": ""
},
{
"src": "https://codelab-adapter-docs.codelab.club/video/1590154622682774.mp4 ",
"title": "spelling",
"id": "3",
"tags": "DynamicTable",
"weight": ""
},
{
"src": "https://codelab-adapter-docs.codelab.club/video/1592575084486393.mp4",
"title": "生日贺卡",
"id": "3",
"tags": ["DynamicTable","物联网"],
"weight": ""
},
{
"src": "https://codelab-adapter-docs.codelab.club/video/1590237395592969.mp4 ",
"title": "皮卡与皮卡丘",
"id": "3",
"tags": "DynamicTable",
"weight": ""
},
{
"src": "https://codelab-adapter-docs.codelab.club/video/1590237319828796.mp4 ",
"title": "如何画一只会跑的独角兽🦄",
"id": "3",
"tags": ["魔法","DynamicTable"],
"weight": ""
},
{
"src": "https://codelab-adapter-docs.codelab.club/video/42.mp4 ",
"title": "42(DynamicTable4Math)",
"id": "3",
"tags": "DynamicTable",
"weight": ""
},
{
"src": "https://codelab-adapter-docs.codelab.club/video/1590665913541756.mp4 ",
"title": "动画原理1",
"id": "3",
"tags": "DynamicTable",
"weight": ""
},
{
"src": "https://codelab-adapter-docs.codelab.club/video/1590665910081123.mp4 ",
"title": "动画原理2",
"id": "3",
"tags": "DynamicTable",
"weight": ""
},
{
"src": "https://codelab-adapter-docs.codelab.club/video/1589296982429059.mp4 ",
"title": "COVID-19 1",
"id": "3",
"tags": ["DynamicTable"],
"weight": ""
},
{
"src": "https://codelab-adapter-docs.codelab.club/video/1589296982422368.mp4 ",
"title": "COVID-19 2",
"id": "3",
"tags": ["DynamicTable"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/一场烟火.mp4",
"title": "一场烟火",
"id": "69",
"tags": "DynamicTable",
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/二进制.mp4",
"title": "二进制",
"id": "71",
"tags": "DynamicTable",
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/body_programming.mp4",
"title": "Body Programming",
"id": "23",
"tags": ["DynamicTable","物联网"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/candy_vector.mp4 ",
"title": "Candy Language for Vector",
"id": "24",
"tags": ["AI","机器人"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/codelab_ipad.mp4",
"title": "空间魔方开关",
"id": "25",
"tags": "物联网",
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/1576905337206766.mp4",
"title": "魔杖升窗",
"id": "7",
"tags": ["魔法","物联网"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/1583984194594670.mp4 ",
"title": "读书与思考1",
"id": "8",
"tags": ["AI","物联网"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/读书与思考.mp4 ",
"title": "读书与思考2",
"id": "8",
"tags": ["AI","物联网"],
"weight": ""
},
{
"src": "https://codelab-adapter-docs.codelab.club/video/wand_catapult.mp4 ",
"title": "Fire!1",
"id": "3",
"tags": "开源硬件",
"weight": ""
},
{
"src": "https://codelab-adapter-docs.codelab.club/video/1593328552202841.mp4 ",
"title": "Hey Siri 1",
"id": "3",
"tags": ["物联网", "机器人"],
"weight": ""
},
{
"src": "https://codelab-adapter-docs.codelab.club/video/wand_catapult_demo.mp4 ",
"title": "Fire!2",
"id": "3",
"tags": "开源硬件",
"weight": ""
},
{
"src": "https://codelab-adapter-docs.codelab.club/video/1593410656522462.mp4 ",
"title": "Hey Siri 2",
"id": "3",
"tags": ["物联网", "机器人"],
"weight": ""
},
{
"src": "https://codelab-adapter-docs.codelab.club/video/1593428681227193.mp4 ",
"title": "Hey Siri 3",
"id": "3",
"tags": ["物联网", "机器人"],
"weight": ""
},
{
"src": "https://codelab-adapter-docs.codelab.club/video/1589459621915320.mp4",
"title": "桌面编程1",
"id": "3",
"tags": ["DynamicTable","机器人"],
"weight": ""
},
{
"src": "https://codelab-adapter-docs.codelab.club/video/1589459630916864.mp4 ",
"title": "桌面编程2",
"id": "3",
"tags": ["DynamicTable","机器人"],
"weight": ""
},
{
"src": "https://codelab-adapter-docs.codelab.club/video/1589977785885032.mp4 ",
"title": "小型解释器",
"id": "3",
"tags": ["DynamicTable","机器人"],
"weight": ""
},
{
"src": "https://codelab-adapter-docs.codelab.club/video/1591182636036039.mp4 ",
"title": "纸糊方向盘1",
"id": "3",
"tags": ["DynamicTable"],
"weight": ""
},
{
"src": "https://codelab-adapter-docs.codelab.club/video/1591187790289712.mp4",
"title": "纸糊方向盘2",
"id": "3",
"tags": ["DynamicTable","机器人"],
"weight": ""
},
{
"src": "https://codelab-adapter-docs.codelab.club/video/1591509029108719.mp4",
"title": "纸糊方向盘3",
"id": "3",
"tags": ["DynamicTable","机器人"],
"weight": ""
},
{
"src": "https://codelab-adapter-docs.codelab.club/video/1592219388632217.mp4",
"title": "震动检测器",
"id": "3",
"tags": ["DynamicTable"],
"weight": ""
},
{
"src": "https://codelab-adapter-docs.codelab.club/video/1597283986388211.mp4",
"title": "GameShell 1",
"id": "5",
"tags": ["物联网","机器人"],
"weight": ""
},
{
"src": "https://codelab-adapter-docs.codelab.club/video/1597283973481982.mp4",
"title": "GameShell 2",
"id": "6",
"tags": ["物联网"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/蜡笔调色盘.mp4",
"title": "蜡笔调色盘",
"id": "98",
"tags": "物联网",
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/重力效应.mp4 ",
"title": "重力效应",
"id": "100",
"tags": "",
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/1587801240738968.mp4",
"title": "积木消失了",
"id": "12",
"tags": ["AI","机器人"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/cosplayhi渡边君.mp4 ",
"title": "渡边君",
"id": "27",
"tags": "机器人",
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/scratch_rainrow.mp4",
"title": "彩虹的旋律",
"id": "45",
"tags": "AI",
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/tm_scratch_dy.mp4 ",
"title": "CodeLab Adapter ❤ Teachable Machine",
"id": "51",
"tags": ["AI","DynamicTable"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/toio_candy.mp4",
"title": "谁动了我的糖果",
"id": "53",
"tags": ["AI","机器人"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/toio_music.mp4",
"title": "Toio Music Interface1",
"id": "55",
"tags": "机器人",
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/toio_music2.mp4",
"title": "Toio Music Interface2",
"id": "56",
"tags": "机器人",
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/where-did-the-human-go.mp4 ",
"title": "Cozmo vs Vector: Where did the human go?",
"id": "68",
"tags": "机器人",
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/命运之手.mp4",
"title": "命运之手",
"id": "73",
"tags": "机器人",
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/cube symphony.mp4 ",
"title": "魔方交响乐",
"id": "28",
"tags": "物联网",
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/dynamicland_01.mp4 ",
"title": "拧动棱镜1",
"id": "30",
"tags": "DynamicTable",
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/dynamicland_02.mp4",
"title": "拧动棱镜2",
"id": "31",
"tags": "DynamicTable",
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/学会使用变量.mp4 ",
"title": "体验者初次学会使用变量",
"id": "76",
"tags": ["物联网","魔法"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/山寨版龟派气功.mp4",
"title": "山寨版龟派气功",
"id": "89",
"tags": "AI",
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/手势窗帘.mp4",
"title": "手势窗帘",
"id": "90",
"tags": "物联网",
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/Magic classroom.mp4",
"title": "魔法教室",
"id": "16",
"tags": ["魔法","物联网"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/magic-eye-tracker.mp4 ",
"title": "霍格沃兹模式1",
"id": "39",
"tags": "魔法",
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/magic_joy_con.mp4",
"title": "霍格沃兹模式2",
"id": "40",
"tags": "魔法",
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/1576905320614182.mp4",
"title": "闪现",
"id": "5",
"tags": "魔法",
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/1576905372587643.mp4",
"title": "Seeing Spaces",
"id": "6",
"tags": "开源硬件",
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/1588665494072465.mp4",
"title": "我的世界Minecraft",
"id": "13",
"tags": [],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/1588741044537372.mp4",
"title": "Sonic Pi",
"id": "14",
"tags": [],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/AR.mp4 ",
"title": "鼻梁上的老花镜(增强现实)",
"id": "15",
"tags": ["AI"],
"weight": ""
},
{
"src": "https://codelab-adapter-docs.codelab.club/img/bitbot.mp4",
"title": "无线控制bit:bot",
"id": "15",
"tags": "开源硬件",
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/adapter_google_teachable_machine.mp4",
"title": "Teachable Machine",
"id": "18",
"tags": ["AI"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/arduino.mp4",
"title": "接入arduino",
"id": "19",
"tags": ["开源硬件"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/blender.mp4 ",
"title": "接入blender(连接游戏、电影和VR)",
"id": "21",
"tags": "",
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/blockly_cozmo.mp4 ",
"title": "Cozmo接入在线课程平台",
"id": "22",
"tags": ["机器人"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/codelab有嘻哈.mp4 ",
"title": "CodeLab有嘻哈",
"id": "26",
"tags": ["开源硬件","物联网"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/dlib_face.mp4 ",
"title": "人脸地标(Python程序接入Scratch)",
"id": "29",
"tags": [],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/hi渡边君.mp4",
"title": "Hi 渡边君",
"id": "35",
"tags": [],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/leju_codelab.mp4 ",
"title": "CodeLab X Leju Robot",
"id": "38",
"tags": ["机器人","物联网"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/python_neverland.mp4",
"title": "I am reading!",
"id": "43",
"tags": ["物联网"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/scratch-smart-home.mp4",
"title": "运动检测开关灯",
"id": "44",
"tags": ["AI"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/turnofflight_byfinger.mp4 ",
"title": "收工,吃饭",
"id": "59",
"tags": ["物联网"],
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/unity.mp4 ",
"title": "Unity X Lego X Scratch 3 Adapter(by 联想研究院)",
"id": "60",
"tags": "",
"weight": ""
},
{
"src": "https://adapter.codelab.club/video/wechat.mp4",
"title": "做一个微信聊天界面",
"id": "65",
"tags": ["物联网"],
"weight": ""
},