-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvideo_list.json
More file actions
1028 lines (1028 loc) · 27.6 KB
/
video_list.json
File metadata and controls
1028 lines (1028 loc) · 27.6 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
[
{
"id": "wC5cC3mgBDw",
"title": "Mindblowing automated translation with Heygen - English, German, French, Polish, Hindi",
"duration": "219.0",
"type": "video"
},
{
"id": "WTjoFX6FNQY",
"title": "Artificial Intelligence, Games, Metaverse and the Future of Civilization",
"duration": "1585.0",
"type": "video"
},
{
"id": "TTjEr7TFcmQ",
"title": "AI and the Search for Truth and Answers | Aravind Srinivas | Perplexity.ai",
"duration": "2515.0",
"type": "video"
},
{
"id": "8A5SQ8AYbBA",
"title": "Winning the AI Virtual Worlds Hackathon | Ali El Rhermoul | Generative AI | Claude",
"duration": "3033.0",
"type": "video"
},
{
"id": "bU8SepyPTqs",
"title": "Skybox AI | Game Development | Adam B. Levine, Blockade Labs",
"duration": "3706.0",
"type": "video"
},
{
"id": "EJaIVAMOhiI",
"title": "AI Voice Synthesis with Zach Johnson | LMNT | Generative AI Games",
"duration": "3947.0",
"type": "video"
},
{
"id": "IKFEj0tjIVA",
"title": "Generative Emotes for Avatars | AI Animation | Yassine Tahi, CEO Kinetix",
"duration": "2746.0",
"type": "video"
},
{
"id": "CbmWgvnW_ZI",
"title": "Turning a photo into generative skyboxes",
"duration": "45.0",
"type": "video"
},
{
"id": "60LRTgTnSOY",
"title": "Building a World in Unreal Engine with Generative AI - ChatGPT & procedural generation",
"duration": "75.0",
"type": "video"
},
{
"id": "fsg83BvsXww",
"title": "Text-to-world: Generative AI for world creation with Kayla Comalli, Lovelace Studios | Nyric",
"duration": "2185.0",
"type": "video"
},
{
"id": "PyEgYK24ln0",
"title": "AI Storytelling and Narrative with Linus Ekenstam",
"duration": "2877.0",
"type": "video"
},
{
"id": "ZDwTNRSBIX4",
"title": "Creative Technology and Generative AI with Bilawal Sidhu",
"duration": "3467.0",
"type": "video"
},
{
"id": "HbcH4eL1d1c",
"title": "ChatGPT and Game Development with Cameron Wills",
"duration": "2517.0",
"type": "video"
},
{
"id": "gDG8zaHpUYY",
"title": "AI Art, Creativity & Copyright with Kris Kashtanova",
"duration": "2525.0",
"type": "video"
},
{
"id": "_rLJ9RhE0Tc",
"title": "Midjourney to Unity Game Development",
"duration": "224.0",
"type": "video"
},
{
"id": "sY92a7NJb4c",
"title": "Generative Graphics Workflow for Games with Jussi Kemppainen",
"duration": "3184.0",
"type": "video"
},
{
"id": "Wxc31uTuFuk",
"title": "Virtual Beings and Simulated Worlds - Edward Saatchi",
"duration": "2437.0",
"type": "video"
},
{
"id": "X9nX_jXCJXY",
"title": "Generative Art Assets for Games - Emmanuel de Maistre",
"duration": "2693.0",
"type": "video"
},
{
"id": "mQOMDFZAit0",
"title": "Generative AI in games using large language models (LLMs) - with Hilary Mason and Jon Radoff",
"duration": "2861.0",
"type": "video"
},
{
"id": "4fwepxTh6Tg",
"title": "Generative AI: Building the Metaverse Season 2",
"duration": "86.0",
"type": "video"
},
{
"id": "k-DNStn8mAk",
"title": "AccelerateGPT seeks to improve wellbeing, lifespan, colonize the galaxy & make super intelligent AI",
"duration": "1023.0",
"type": "video"
},
{
"id": "84SuIw8QJvg",
"title": "Eric Seufert and Jon Radoff on scaling games with advertising networks, mobile evolution, ATT",
"duration": "4562.0",
"type": "video"
},
{
"id": "sLEuXDgfAS4",
"title": "Scaling Game Technology and Engineering Teams - with Keith Adams, Ali El Rhermoul and Jon Radoff",
"duration": "4908.0",
"type": "video"
},
{
"id": "DgAgBuLzDNU",
"title": "Game Design and evolving Business Models with Alexander Brazie and Jon Radoff",
"duration": "4729.0",
"type": "video"
},
{
"id": "WK2bEmEgVOQ",
"title": "Cathy Hackl and Jon Radoff on Avatars and Digital Fashion",
"duration": "2801.0",
"type": "video"
},
{
"id": "2-p3t8TDe8c",
"title": "Uploading Myself to the Metaverse - Avatars, Ready Player Me, Animaze, VRChat, Interoperability",
"duration": "60.0",
"type": "video"
},
{
"id": "DNpEviw3jeI",
"title": "Live Streaming on Twitch, Earning a Living as a Gamer, TikTok - Jon Radoff and Swebliss",
"duration": "3549.0",
"type": "video"
},
{
"id": "wX7LJF45H4w",
"title": "Virtual Reality, AR, Art, Music, Comedy, Live Theater and NFTs: Finn Staber + Jon explore Experience",
"duration": "3610.0",
"type": "video"
},
{
"id": "DsCP-E8gQLY",
"title": "Play to Earn games with Mitch Zamara and Jon: designs, opportunities, misconceptions",
"duration": "3531.0",
"type": "video"
},
{
"id": "Rcyr1CSynPM",
"title": "Music and the Metaverse: Lucas Wilson and Jon talk about live performance, concerts, NFTs and more",
"duration": "3179.0",
"type": "video"
},
{
"id": "MoYRONQOb4s",
"title": "Trinidad Hermida and Jon Radoff talk about Diversity & Inclusion in the Metaverse, Web3, DAOs",
"duration": "3185.0",
"type": "video"
},
{
"id": "-ZHMKHe_roY",
"title": "Nicole Lazzaro and Jon Radoff talk about Emotion, Fun, Creativity and Augmented Reality",
"duration": "3987.0",
"type": "video"
},
{
"id": "ynrMmuuARXg",
"title": "James Zhang + Jon Radoff talk NFTs, Digital Collectibles, Games, Art, Blockchain, Frank Miller",
"duration": "3248.0",
"type": "video"
},
{
"id": "ko8qwQbh6vc",
"title": "Evo Heyning and Jon Radoff discuss artificial intelligence, virtual beings, creator economy & DAOs",
"duration": "3133.0",
"type": "video"
},
{
"id": "kWqo-5fy5RI",
"title": "Amy Jo Kim and Jon Radoff discuss the biggest game development trends in 2021",
"duration": "3392.0",
"type": "video"
},
{
"id": "qfyif5a3PyI",
"title": "Raph Koster and Jon Radoff talk about the Metaverse, Online Worlds, MMOs and virtual societies",
"duration": "4788.0",
"type": "video"
},
{
"id": "WeO4uqbZHng",
"title": "Unpacking the Metaverse - 2 minute tour",
"duration": "120.0",
"type": "video"
},
{
"id": "VLwqivmWM_I",
"title": "Creator Economy of the Metaverse - Roblox, Unity, Unreal and more!",
"duration": "875.0",
"type": "video"
},
{
"id": "2YWrqhZMwxE",
"title": "Metaverse Use Cases - what experiences will you have there?",
"duration": "1150.0",
"type": "video"
},
{
"id": "VG87A54cSAc",
"title": "9 Megatrends Shaping the Metaverse",
"duration": "1093.0",
"type": "video"
},
{
"id": "ZSgitLzAIis",
"title": "What is the Metaverse?",
"duration": "978.0",
"type": "video"
},
{
"id": "6rZMiKsVKuU",
"title": "Decentralized Tech Livestream- From Tangible to Token \u2014 Where Collectibles Meet the Blockchain",
"duration": "3947.0",
"type": "livestream"
},
{
"id": "hJ4U-HBnJek",
"title": "Decentralized Tech Livestream - Dawn: A DePIN Internet for a reliable future",
"duration": "3762.0",
"type": "livestream"
},
{
"id": "3Dd71-W2qoE",
"title": "AI Livestream: Remixing Everything: AI, Games, Web3 and the Future of Play",
"duration": "3771.0",
"type": "livestream"
},
{
"id": "HFta4ZkRzlc",
"title": "Decentralized Tech Livestream: Beyond Play-to-Earn: Building a Fair Gaming Economy",
"duration": "3434.0",
"type": "livestream"
},
{
"id": "O--25uQUmy8",
"title": "GameDev Livestream: Tech Meets Tactics: The FRAMEWORK of Stratosphere Games\u2019 Success",
"duration": "3739.0",
"type": "livestream"
},
{
"id": "EruFofdEVAM",
"title": "Artificial Intelligence Livestream - AI, Games, and DevOps \u2013 Build Smarter, Ship Faster",
"duration": "3892.0",
"type": "livestream"
},
{
"id": "_LjTmXh8sOg",
"title": "GameDev Livestream: Shadow City Mysteries- Transmedia Worldbuilding & Team Empowerment",
"duration": "3764.0",
"type": "livestream"
},
{
"id": "FPPvkXvftGk",
"title": "Hotspotty @ DePIN: Infrastructure Without Borders",
"duration": "3808.0",
"type": "livestream"
},
{
"id": "MhjFMp7-iTQ",
"title": "GameDev Livestream: Persistent, PvPvE, Player-Owned: Inside Reaper Actual\u2019s Open World",
"duration": "3630.0",
"type": "livestream"
},
{
"id": "uDSvCBw0ZOQ",
"title": "Decentralized Tech Livestream - Helium: Rising Above Centralized Networks",
"duration": "3619.0",
"type": "livestream"
},
{
"id": "_gi0dFK1958",
"title": "Game Development LiveStream: The Future of Game Creation: AI, Web3, and the Lussa Vision",
"duration": "3891.0",
"type": "livestream"
},
{
"id": "nVjU1eqzWeQ",
"title": "Game Development Livestream: Game Assets Without Borders: Interoperability & Player Empowerment",
"duration": "3021.0",
"type": "livestream"
},
{
"id": "1ZY_Ih2xjT0",
"title": "Game Dev Livestream: From Platforms to People: Adam Boyes on Reinventing Game Studios",
"duration": "3700.0",
"type": "livestream"
},
{
"id": "UdYjhqv_ZXM",
"title": "Rebroadcast: Decentralized Tech Livestream - Al Morris - Koii.network : DePIN & the People\u2019s Compute",
"duration": "3759.0",
"type": "livestream"
},
{
"id": "_mMnJNpQ_v4",
"title": "Building the Future: Ric Neil on Games, GenAI, and Legendary Teams",
"duration": "3756.0",
"type": "livestream"
},
{
"id": "jdKhK-9tL5g",
"title": "Rebroadcast : Web3 GameDev Livestream: \"Remember POGs? They\u2019re back\u2026 in Web3 form.\"",
"duration": "3907.0",
"type": "livestream"
},
{
"id": "TjK82aqiGNo",
"title": "Rebroadcast: AI Livestream - Kris Kashtanova - AI Educator, Influencer and Consultant",
"duration": "3607.0",
"type": "livestream"
},
{
"id": "YzuvdjB-1LQ",
"title": "REBROADCAST: Decentralized Tech Livestream - Fluence: Compute Without the Cloud",
"duration": "3729.0",
"type": "livestream"
},
{
"id": "c_SbcxeafOc",
"title": "Rebroadcast GameDev Livestream- Built in India, Built Better: LILA\u2019s Mission to Reinvent Game Dev",
"duration": "3679.0",
"type": "livestream"
},
{
"id": "CJa24bJjzQQ",
"title": "Rebroadcast : Web3 Game Dev Livestream: Wildcard and the Evolution of Competitive Play",
"duration": "3675.0",
"type": "livestream"
},
{
"id": "b2qi3EUrylk",
"title": "REBROADCAST AI Livestream- The Rise of AI Agents: Identity, Autonomy & the New Digital Life",
"duration": "3651.0",
"type": "livestream"
},
{
"id": "BuXoynE5XOA",
"title": "Decentralized Tech Livestream- onocoy: Decentralizing High-Precision GPS",
"duration": "3670.0",
"type": "livestream"
},
{
"id": "hvbN_cAh3dk",
"title": "Rebroadcast : Web3 GameDev Livestream: \"Remember POGs? They\u2019re back\u2026 in Web3 form.\"",
"duration": "3907.0",
"type": "livestream"
},
{
"id": "buuYZ4nrC4E",
"title": "Rebroadcast: Artificial Intelligence Livestream: Opening the Hidden Door with Hilary Mason",
"duration": "3747.0",
"type": "livestream"
},
{
"id": "y33n6scdTsc",
"title": "Fly-to-Earn: The Decentralized Drone-Powered Data Layer for Spatial Web3",
"duration": "3664.0",
"type": "livestream"
},
{
"id": "A8T5hspt--w",
"title": "Web3 GameDev Livestream- Shaping Onchain Worlds: Gigaverse, Tokens, Tech & Culture",
"duration": "3813.0",
"type": "livestream"
},
{
"id": "NPSNncWyup4",
"title": "AI Livestream- When the Clip Makes Itself: Smart Tools for the Next Creator Generation",
"duration": "3564.0",
"type": "livestream"
},
{
"id": "PrX2o9oWeF4",
"title": "Web3 GameDev Livestream: Designing the Onchain Frontier of Player-Owned Worlds",
"duration": "3586.0",
"type": "livestream"
},
{
"id": "pmt3JN7aNcE",
"title": "Decentralized Tech Livestream: From SQL to ZK: The Future of Trustless Blockchain Data",
"duration": "3662.0",
"type": "livestream"
},
{
"id": "XpQF7o3s_U8",
"title": "Game Development Livestream: Behind the Scenes of Grumpy Gaffer: Game Dev with RC Game Studio",
"duration": "3764.0",
"type": "livestream"
},
{
"id": "_x7MbFaOBhs",
"title": "Artificial Intelligence Livestream- The Rise of AI Agents: Identity, Autonomy & the New Digital Life",
"duration": "3652.0",
"type": "livestream"
},
{
"id": "Ie1w7FucBeg",
"title": "Decentralized Tech Livestream- Reform or Be Reformed: How AI & DAOs Are Rewriting Crypto Liquidity",
"duration": "3806.0",
"type": "livestream"
},
{
"id": "6MTlpGIEB08",
"title": "Web3 GameDev Livestream- Worldbuilding Meets Blockchain: The Moon Boi Approach to Web3",
"duration": "3695.0",
"type": "livestream"
},
{
"id": "PRTCt7DrblM",
"title": "Decentralized Tech Livestream- Ad Tech Meets DeFi: Inside Thirdwave\u2019s Wallet-Aware Revolution",
"duration": "3715.0",
"type": "livestream"
},
{
"id": "ipAAzi-ef8U",
"title": "Web3 GameDev Livestream - The New Era of Player Ownership w/ Magic Eden",
"duration": "3704.0",
"type": "livestream"
},
{
"id": "NSGN97wYQk4",
"title": "Decentralized Tech Livestream - Fluence: Compute Without the Cloud",
"duration": "3728.0",
"type": "livestream"
},
{
"id": "xDqw4xOaWlM",
"title": "Game Development Livestream- Built in India, Built Better: LILA\u2019s Mission to Reinvent Game Dev",
"duration": "3679.0",
"type": "livestream"
},
{
"id": "LeEK2HAQaaw",
"title": "Web3 GameDev Livestream: \"Remember POGs? They\u2019re back\u2026 in Web3 form.\"",
"duration": "3907.0",
"type": "livestream"
},
{
"id": "ber9R1pujVE",
"title": "Web3 Game Dev Livestream: Wildcard and the Evolution of Competitive Play",
"duration": "3674.0",
"type": "livestream"
},
{
"id": "yg6_BUh6o8I",
"title": "Artificial Intelligence Livestream: Opening the Hidden Door with Hilary Mason",
"duration": "3748.0",
"type": "livestream"
},
{
"id": "Gp9PTz4R0tE",
"title": "Beamable AMA Presents: Warped Games",
"duration": "3704.0",
"type": "livestream"
},
{
"id": "-bZMAGDesMA",
"title": "Decentralized Tech Livestream: Real-Time 3D over Decentralized Cloud Infrastructure",
"duration": "3733.0",
"type": "livestream"
},
{
"id": "7PmaSKUJ7eE",
"title": "Building the Next Great RTS: How IMMORTAL Aims to Redefine Competitive Strategy Games",
"duration": "3800.0",
"type": "livestream"
},
{
"id": "IZ9emtFLizU",
"title": "Rebroadcast: Web3 GameDev-Composability and DePIN- Ali El Rhermoul (Beamable) - Ken Anderson (Tashi)",
"duration": "3905.0",
"type": "livestream"
},
{
"id": "XNa7_yzjHqw",
"title": "Rebroadcast: Game Development Livestream - Avi Latner (Sloyd) and Guy Gadney (Charismatic.ai)",
"duration": "3259.0",
"type": "livestream"
},
{
"id": "56isSJH3iIw",
"title": "Re-broadcast: Web3 Game Development Livestream - Sinjin David Jung - MAYG.io",
"duration": "3809.0",
"type": "livestream"
},
{
"id": "v6sSTSc4WxU",
"title": "Rebroadcast - Artificial Intelligence Livestream - Tejas Kulkarni - Common Sense Machines - @CSM_ai",
"duration": "3649.0",
"type": "livestream"
},
{
"id": "8yX0WYJADFM",
"title": "Decentralized Tech Livestream - Al Morris - Koii.network : DePIN & the People\u2019s Compute Mesh",
"duration": "3747.0",
"type": "livestream"
},
{
"id": "RGqsvuK_dpQ",
"title": "Game Development Livestream \u2013 Alex St. Louis \u2013 Wonder Interactive \u2013 \u201cHigh Fidelity, Zero Downloads\u201d",
"duration": "3860.0",
"type": "livestream"
},
{
"id": "OCn_gQyzCvs",
"title": "Artificial Intelligence Livestream - Bilawal Sidhu - AI & Creativity",
"duration": "3687.0",
"type": "livestream"
},
{
"id": "lqLAzNjEjZU",
"title": "Decentralized Tech Livestream- Kartik Jain and Paul Thind- Aethir\" Powering the edge of AI + gaming.",
"duration": "3730.0",
"type": "livestream"
},
{
"id": "Enwvk7AzHV4",
"title": "Game Development Livestream - Jen MacLean - Dragon Snacks Games",
"duration": "3533.0",
"type": "livestream"
},
{
"id": "yL9_-TG8HmY",
"title": "Web3 Game Development Livestream - Kevin Lambert - Koin Games",
"duration": "3663.0",
"type": "livestream"
},
{
"id": "EjzPVghtVFE",
"title": "Artificial Intelligence Livestream - Kris Kashtanova - AI Educator, Influencer and Consultant",
"duration": "3607.0",
"type": "livestream"
},
{
"id": "EzZ2hWZxoJk",
"title": "Game Development Livestream - Mike Wilson - Co-founder @ Devolver Digital",
"duration": "28.0",
"type": "livestream"
},
{
"id": "yBMeyloGBSo",
"title": "Web3 Game Development Livestream - Sinjin David Jung - MAYG.io",
"duration": "3952.0",
"type": "livestream"
},
{
"id": "wvL6xih8hsQ",
"title": "Artificial Intelligence Livestream: Emmanuel de Maistre- Scenario, the Future of Game Asset Creation",
"duration": "3694.0",
"type": "livestream"
},
{
"id": "gQvd3vGaaaI",
"title": "How is AI reshaping game development? - Nuno Leiria (Nilo Technologies) - Tyler Wright (WanderHeart)",
"duration": "3724.0",
"type": "livestream"
},
{
"id": "dcD2YFEqV3U",
"title": "Web3 GameDev Livestream -Composability and DePIN- Ali El Rhermoul (Beamable) - Ken Anderson (Tashi)",
"duration": "3905.0",
"type": "livestream"
},
{
"id": "4A-llIBL5HY",
"title": "Artificial Intelligence Livestream - Tejas Kulkarni - Common Sense Machines - @CSM_ai",
"duration": "3649.0",
"type": "livestream"
},
{
"id": "TEcBOuBudno",
"title": "Game Development Livestream - Keith McCurdy (Advsr) - GDC 2025",
"duration": "3687.0",
"type": "livestream"
},
{
"id": "aiwqStYFqCA",
"title": "Web3 Game Development Livestream - Richard Warren (Windwalk) - Sworn",
"duration": "3727.0",
"type": "livestream"
},
{
"id": "2EI5WG3UbDM",
"title": "- WOLVES DEN - SUPER SECRET LIVESTREAM - Jon Radoff and Sam Steffanina",
"duration": "3717.0",
"type": "livestream"
},
{
"id": "MsgfZAOWrAw",
"title": "Game Development Livestream - David Chartrand - Squido Studio - VR, XR, AI",
"duration": "3786.0",
"type": "livestream"
},
{
"id": "Kcm2nWi7KJo",
"title": "Web 3 Game Development Livestream - Denis Dyack - Apocalypse Studios",
"duration": "3649.0",
"type": "livestream"
},
{
"id": "Y9X0G-GSqUQ",
"title": "Game Development Livestream - Renee Gittins and Ichiro Lambe",
"duration": "3873.0",
"type": "livestream"
},
{
"id": "53w73ifq0LU",
"title": "Web3 Game Development Livestream - Metaverse pioneer Tony Parisi discusses the future of Web3!",
"duration": "3733.0",
"type": "livestream"
},
{
"id": "Yy7xBkFTrhU",
"title": "Game Development Livestream",
"duration": "3258.0",
"type": "livestream"
},
{
"id": "7aexihtZJXI",
"title": "Game Development Livestream - Avi Latner (Sloyd) and Guy Gadney (Charismatic.ai)",
"duration": "17.0",
"type": "livestream"
},
{
"id": "oQORprdVqwQ",
"title": "Web3 Game Development Livestream",
"duration": "3542.0",
"type": "livestream"
},
{
"id": "AVgF701R-Ng",
"title": "Game Development Livestream - Publishing and Funding Games!",
"duration": "3924.0",
"type": "livestream"
},
{
"id": "Ez5XWjM8tsk",
"title": "Web3 Game Development - John Linden & Mythical Games",
"duration": "3813.0",
"type": "livestream"
},
{
"id": "NPcD7l74N74",
"title": "GameDev Livestream: MMOs and Sandboxes",
"duration": "3724.0",
"type": "livestream"
},
{
"id": "A934EURJsjg",
"title": "Web3 Game Development: TON and Telgram Gaming",
"duration": "3748.0",
"type": "livestream"
},
{
"id": "b1Y1U8xC_jY",
"title": "Game Development Livestream - IP-based Games",
"duration": "3611.0",
"type": "livestream"
},
{
"id": "Qm0eZ1-RhDY",
"title": "Web3 Game Development Livestream",
"duration": "3643.0",
"type": "livestream"
},
{
"id": "bXt7lbNvhSU",
"title": "Game Development Livestream",
"duration": "3790.0",
"type": "livestream"
},
{
"id": "IcRDGGYOGtc",
"title": "Web3 Game Development",
"duration": "3913.0",
"type": "livestream"
},
{
"id": "MH2l_MYwEQs",
"title": "Game Development Livestream",
"duration": "3713.0",
"type": "livestream"
},
{
"id": "OM-w-pED-tw",
"title": "Game Development Livestream",
"duration": "3653.0",
"type": "livestream"
},
{
"id": "76THn2vvtLw",
"title": "\"Age of the Moon: Behind the Game, Beyond the Mission\"",
"duration": "2526.0",
"type": "livestream"
},
{
"id": "zt7iuKAB7a4",
"title": "The New Space Frontier - Affordable Launches, Emerging Programs, and Space Democratization",
"duration": "3687.0",
"type": "livestream"
},
{
"id": "uhmiDxM4n4c",
"title": "\"Ghosts in the Machine: The Haunting Power\u00a0of\u00a0AI.\"\u00a0\ud83c\udf83\ud83d\udc7b",
"duration": "3745.0",
"type": "livestream"
},
{
"id": "HRg4XVuEm2s",
"title": "How NASA Uses AI in Its Libraries?",
"duration": "4173.0",
"type": "livestream"
},
{
"id": "2kbKNNVoBqU",
"title": "\"Space, AI, and IoT: Harnessing Satellite Technology to Tackle Climate Change and Urbanization\"",
"duration": "3639.0",
"type": "livestream"
},
{
"id": "1Lnp12cTXdg",
"title": "Starships to Mars: Elon Musk's Vision and the Future of Sustainable Space Ecosystems",
"duration": "4171.0",
"type": "livestream"
},
{
"id": "f59Re7xTcwk",
"title": "Reel vs. Real: The Portrayal of AI in Movies and Its Impact on Public Perception",
"duration": "3639.0",
"type": "livestream"
},
{
"id": "vUzrbumGcvw",
"title": "Is the AI bubble bursting?",
"duration": "2160.0",
"type": "livestream"
},
{
"id": "IEu9QU-DUvo",
"title": "Building the Future: A Journey in VR, AI, IoT and Off-World Ventures",
"duration": "3682.0",
"type": "livestream"
},
{
"id": "Rur5EXvocEI",
"title": "New Space: How are they bringing in AI?",
"duration": "3902.0",
"type": "livestream"
},
{
"id": "qI4qM2yBGBw",
"title": "State of Web3 Game Development",
"duration": "4276.0",
"type": "livestream"
},
{
"id": "daazERYNXTA",
"title": "Moonstruck: China's Historic Sample Returns From The Far Side Of The Moon",
"duration": "3575.0",
"type": "livestream"
},
{
"id": "WJjd1B9gALg",
"title": "Web3 Game Development Talk with BORED",
"duration": "4808.0",
"type": "livestream"
},
{
"id": "EiUXaDczr9A",
"title": "State of Web3 Game Development - From the Developer's Perspective",
"duration": "4929.0",
"type": "livestream"
},
{
"id": "2oHpfnRPebI",
"title": "State of Web3 Gaming",
"duration": "5127.0",
"type": "livestream"
},
{
"id": "zZiki3JZ12I",
"title": "Generative AI and use cases with Mike Lawton, Cofounder Oxford Dynamics.",
"duration": "3606.0",
"type": "livestream"
},
{
"id": "HSdRVbg0uZU",
"title": "Future of digital space",
"duration": "3057.0",
"type": "livestream"
},
{
"id": "8Z8CoqRgZiM",
"title": "Space, AI, and Frontier Technologies: Mining in Space with Matt Gialich, CEO of AstroForge!",
"duration": "3776.0",
"type": "livestream"
},
{
"id": "IVsxL3PUBvk",
"title": "Future of Digital Space",
"duration": "3911.0",
"type": "livestream"
},
{
"id": "M9hrzGvE2-g",
"title": "Why Web3 Games Need to Exceed Traditional Games",
"duration": "NA",
"type": "short"
},
{
"id": "x6cY9wBsnSs",
"title": "How AI Agents can Change Abstration",
"duration": "NA",
"type": "short"
},
{
"id": "Qzyl5Ssz8sU",
"title": "Will AI Replace Artists in Game Design?",
"duration": "NA",
"type": "short"
},
{
"id": "TjD60HlrkCQ",
"title": "Games with Emotional Engagement!",
"duration": "NA",
"type": "short"
},
{
"id": "cKejaB4lPWY",
"title": "Change in AI Tools",
"duration": "NA",
"type": "short"
},
{
"id": "Gx-FBYnkzGw",
"title": "Building Worlds by Talking to AI - Nilo Technologies",
"duration": "NA",
"type": "short"
},
{
"id": "icNwyQVkNa0",
"title": "What is Aethir DePIN?",
"duration": "NA",
"type": "short"
},
{
"id": "sZvrNj5bsnI",
"title": "What Happens if Solana Goes down?",
"duration": "NA",
"type": "short"
},
{
"id": "rTOyIxl49Yo",
"title": "Gaussian Splats or Meshes?",
"duration": "NA",
"type": "short"
},
{
"id": "QNvI32if54w",
"title": "What Makes Helium Sustainable?",
"duration": "NA",
"type": "short"
},
{
"id": "Kt0PUke-qws",
"title": "Will AI Replace Artists in Game Development?",
"duration": "NA",
"type": "short"
},
{
"id": "XGfxSPOvATM",
"title": "Web3 Game Longevity and Value",
"duration": "NA",
"type": "short"
},
{
"id": "a2_246_nIrc",
"title": "Why Web3 Gaming Hasn't 'Happened' Yet",
"duration": "NA",
"type": "short"
},
{
"id": "5ZDpNRDV_jM",
"title": "Why Web3 Gaming is still Tiny",
"duration": "NA",
"type": "short"
},
{
"id": "IoC8j3HZQug",
"title": "Why Blockchain? Why Tokens? Breaking Down the Real Use Case",
"duration": "NA",
"type": "short"
},
{
"id": "w-q1ZANUT18",
"title": "4 Reasons DePIN Needs Tokens to Scale",
"duration": "NA",
"type": "short"
},
{
"id": "ERv0M4M4apo",
"title": "DePIN Hub Verified",
"duration": "NA",
"type": "short"
},
{
"id": "fua6Uw63u3s",
"title": "Game Production with Generative AI",
"duration": "NA",
"type": "short"
},
{
"id": "_nKkJcr0FBw",
"title": "Generative AI Changes the Cost of Intelligence",
"duration": "NA",
"type": "short"
},
{
"id": "htnH4UrIEWs",
"title": "Hallucinating Language Models and Creativity",
"duration": "NA",
"type": "short"
},
{
"id": "QcK7-YFgcJM",
"title": "Generative Games: Creating Pong in 60 seconds with GPT-4",
"duration": "NA",
"type": "short"
},
{
"id": "nfinCaDrip0",
"title": "AI Breakthrough: GPT-4 is Multimodal",
"duration": "NA",
"type": "short"
},
{
"id": "LWJybwZm_0k",
"title": "Learning Guide for Generative AI",
"duration": "NA",
"type": "short"
},
{
"id": "kS-4VhJQCXk",
"title": "Artificial Intelligence Mindreading AI",
"duration": "NA",
"type": "short"
},
{
"id": "sC2M3IrCRiY",
"title": "Amazing Sketch-to-3D Generative AI demo!",
"duration": "NA",
"type": "short"
},
{
"id": "X3TZFHYZ83s",
"title": "Generating 3D Models with Neural Radiance Fields (NeRFs)",
"duration": "NA",
"type": "short"
},
{
"id": "4JC32CBrouI",
"title": "Make Game Crafting System with Generative AI",