-
Notifications
You must be signed in to change notification settings - Fork 0
/
last_response.json
2768 lines (2768 loc) · 226 KB
/
last_response.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
{
"kind": "youtube#videoListResponse",
"etag": "wvx72ZxgfnNGyL2rCve8vWyMxyg",
"items": [
{
"kind": "youtube#video",
"etag": "Wt1oI1pm08NaoMaeJBwTLsR522Y",
"id": "RFQqdx5Qj8c",
"snippet": {
"publishedAt": "2021-08-06T03:40:59Z",
"channelId": "UCP_dty0_6YeIaRoJLPlZLng",
"title": "New Hair Do (tiktok) #shorts credit mr.hairyleg",
"description": "\ud83d\udd34SUBSCRIBE \u27a4 \nFor the Best Beauty Tiktoks of 2021!\n\nPlease go and check out all the creators in the video!\n\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.\n\nI do not own any of the rights of these videos. \nFor credits/submissions/removal/business: booknatc@gmail.com\n\nShop the best vitamins and supplements with 10% off with code NAT10\nhttps://aresnutritionnj.com\n\nGet the most amazing portable blackhead vacuum! https://keepglowingskincare.com/products/blackhead-remover-pore-vacuum-cleaner-upgraded-blackhead-vacuum-rechargeable-face-vacuum-comedone-extractor-tool-for-blackhead?variant=39520028328130\n\n\nTags:\n#tiktok\u200b #funnytiktok\u200b #newtiktok\u200b #tiktokmusic\u200b #tiktok\u200b #music\u200b #tiktokcompilation\u200b , #tiktokmeme\u200b #tiktokchallenge\u200b #tiktokboys\u200b #tiktokgirls\u200b #tiktok\u200b #tiktok2021\u200b #tiktok2020\u200b #tiktokcringe\u200b #tiktokdance\u200b #besttiktok\u200b #compilation\u200b #tiktoktrend\u200b #shorts\u200b\u200b #viral #tiktokdances\u200b #trends #hype\n#tiktok\u200b #dancecompilation\u200b #dance\u200b #trend\u200b #challenge\u200b #hype\u200b #new_thang\u200b #funny #tiktokpranks\ntiktok trending , ultimate tiktok , tiktoks , funny tiktok , new tiktok , tiktok music , tiktok compilation , tiktok meme , tiktok memes , tiktok fails , tiktok challenge , tiktok girls , tiktok boys , tiktok 2020 , tik tok 2021 , tiktok cringe , tiktok dance , best tiktok compilation, tiktok songs, old tiktok, tiktok funny video , tiktok mashup, tiktok us , tiktok uk, new clean tiktok , tiktok compilation 2020 , tiktok compilation 2021 , best of tiktok , Charli D\u2019amelio , Addison Rae , Joey Klaasen , Nick Austin , Nathan Davis , Payton Moormeier , Noen Eubanks , Chase Hudson , Tony Lopez , Avani , James Charles , Ondreaz Lopez , Jackson Felt , The Hype House , Michael Le , Dixie D\u2019amelio , Tayler Holder , Bryce Hall , Riley Hubatka , Madi Monroe , Zoe Laverne , Jaden Hossler , Larray , Brent Rivera , Alex Warren , Kouvr Annon , Daisy Kerch , Loren Gray , Luv Anthony , The Sway House , Josh Richards , Nessa Barrett , Mads Lewis , Griffin Johnson , Ryland Storms, Sofie Dossi, \nThe Best TikTok Dance Compilation,Addison tiktok dance, Addison tiktok, Addisonsynchronized tiktok, charli and addison synchronized, Addison Rae tiktok compilation, charli damelio vs addison rae, charli tiktok , Addison Re , addison vs charli, charli damelio,musical.ly, musically, meme, memes, meme compilation, memes compilation, tiktok memes, tiktok, Addison mashup, mashup tiktok, tiktok dance, Lopez Brothers, Tony Lopez, Dixie Damelio, Charli Damelio, mashup, Tik tok mashup, Bryce, Jason Derulo, Dixie, Hudson, Connor Yates, Alex Warren, Addison Rae, Avani Gregg, Wyatt Xavier, Daisy Keech, Ryland Storms, Nick Austin, Ondreaz Lopez, Tony Lopez, Kouvr Annon, Thomas Petrou, Calvin Goldby, James Wright, Jack Wright, Patrick Huston, tik tok mashup, memes,tiktok compilations, tiktok gamers rise up,meme review,ironic tik toks,ironic tik tok,gamers,ironic tik tok trolls,art tiktok,tik tok compilation,tik tok 2020,tik tok musically,cringey tik toks,musically,cringey tik tok compilations,tiktok cringe,funny,tik tok funny videos,best of tik tok,funny memes,vines,visicks,fails, tik tok, tik tok video, tik tok video 2019, tik tok video 2018, tik tok video 2017, tik tok 2019, tik tok 2020, tik tok video 2020, tik tok 2018, tik tok 2017, tik tok compilation, tik tok compilation 2019, tik tok compilation 2018, tik tok compilation 2017, tik tok meme, tik tok meme 2019, tik tok meme 2018, tik tok meme 2017, , tiktok songs you don\u2019t know the name of, tik tok cringe, tik tok Kesha, tik tok songs playlist, tiktok memes that are actually funny, tiktok memes, tiktok that ease my depression, tik tok that hit harder than my depression, tiktok memes songs, hype house, hypehouse, hypehousecompilation, addison rae, tiktok hype house dance, hype house, swayla, theswayhouse, theswayla, Noah beck, bryce hall, Quinton Griggs, Blake Gray, Griffin Johnson, noah beck and dixie damelio.\n\n#beauty #skin #skincare #beautytips #makeupvideos #makeuptrends #viralmakeup #makeuplooks #hudabeauty #kyliejenner #kimk #celebmakeup #hairvideos #bestbeautytiktoks #skinhacks #beautyhacks #antiaging #plasticsurgery #lipinjections #skinhype #gorgeousmakeup #weddingmakeip #esthetics #beautytrends #makeupbymario #nikkitutorials #freebritney #britneyspears #gabi #arianagrande #celebritymakeover #jlo #meganfox #acne #pimples #pimplesolutions #backacne\n#cleaning #cleaningtiktoks\n#funnyvideos #oddlysatisfying #satisfying #cleaning #diy #diyhome #homedecor",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/RFQqdx5Qj8c/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/RFQqdx5Qj8c/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/RFQqdx5Qj8c/hqdefault.jpg",
"width": 480,
"height": 360
},
"standard": {
"url": "https://i.ytimg.com/vi/RFQqdx5Qj8c/sddefault.jpg",
"width": 640,
"height": 480
}
},
"channelTitle": "Viral Beautytok",
"categoryId": "22",
"liveBroadcastContent": "none",
"localized": {
"title": "New Hair Do (tiktok) #shorts credit mr.hairyleg",
"description": "\ud83d\udd34SUBSCRIBE \u27a4 \nFor the Best Beauty Tiktoks of 2021!\n\nPlease go and check out all the creators in the video!\n\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.\n\nI do not own any of the rights of these videos. \nFor credits/submissions/removal/business: booknatc@gmail.com\n\nShop the best vitamins and supplements with 10% off with code NAT10\nhttps://aresnutritionnj.com\n\nGet the most amazing portable blackhead vacuum! https://keepglowingskincare.com/products/blackhead-remover-pore-vacuum-cleaner-upgraded-blackhead-vacuum-rechargeable-face-vacuum-comedone-extractor-tool-for-blackhead?variant=39520028328130\n\n\nTags:\n#tiktok\u200b #funnytiktok\u200b #newtiktok\u200b #tiktokmusic\u200b #tiktok\u200b #music\u200b #tiktokcompilation\u200b , #tiktokmeme\u200b #tiktokchallenge\u200b #tiktokboys\u200b #tiktokgirls\u200b #tiktok\u200b #tiktok2021\u200b #tiktok2020\u200b #tiktokcringe\u200b #tiktokdance\u200b #besttiktok\u200b #compilation\u200b #tiktoktrend\u200b #shorts\u200b\u200b #viral #tiktokdances\u200b #trends #hype\n#tiktok\u200b #dancecompilation\u200b #dance\u200b #trend\u200b #challenge\u200b #hype\u200b #new_thang\u200b #funny #tiktokpranks\ntiktok trending , ultimate tiktok , tiktoks , funny tiktok , new tiktok , tiktok music , tiktok compilation , tiktok meme , tiktok memes , tiktok fails , tiktok challenge , tiktok girls , tiktok boys , tiktok 2020 , tik tok 2021 , tiktok cringe , tiktok dance , best tiktok compilation, tiktok songs, old tiktok, tiktok funny video , tiktok mashup, tiktok us , tiktok uk, new clean tiktok , tiktok compilation 2020 , tiktok compilation 2021 , best of tiktok , Charli D\u2019amelio , Addison Rae , Joey Klaasen , Nick Austin , Nathan Davis , Payton Moormeier , Noen Eubanks , Chase Hudson , Tony Lopez , Avani , James Charles , Ondreaz Lopez , Jackson Felt , The Hype House , Michael Le , Dixie D\u2019amelio , Tayler Holder , Bryce Hall , Riley Hubatka , Madi Monroe , Zoe Laverne , Jaden Hossler , Larray , Brent Rivera , Alex Warren , Kouvr Annon , Daisy Kerch , Loren Gray , Luv Anthony , The Sway House , Josh Richards , Nessa Barrett , Mads Lewis , Griffin Johnson , Ryland Storms, Sofie Dossi, \nThe Best TikTok Dance Compilation,Addison tiktok dance, Addison tiktok, Addisonsynchronized tiktok, charli and addison synchronized, Addison Rae tiktok compilation, charli damelio vs addison rae, charli tiktok , Addison Re , addison vs charli, charli damelio,musical.ly, musically, meme, memes, meme compilation, memes compilation, tiktok memes, tiktok, Addison mashup, mashup tiktok, tiktok dance, Lopez Brothers, Tony Lopez, Dixie Damelio, Charli Damelio, mashup, Tik tok mashup, Bryce, Jason Derulo, Dixie, Hudson, Connor Yates, Alex Warren, Addison Rae, Avani Gregg, Wyatt Xavier, Daisy Keech, Ryland Storms, Nick Austin, Ondreaz Lopez, Tony Lopez, Kouvr Annon, Thomas Petrou, Calvin Goldby, James Wright, Jack Wright, Patrick Huston, tik tok mashup, memes,tiktok compilations, tiktok gamers rise up,meme review,ironic tik toks,ironic tik tok,gamers,ironic tik tok trolls,art tiktok,tik tok compilation,tik tok 2020,tik tok musically,cringey tik toks,musically,cringey tik tok compilations,tiktok cringe,funny,tik tok funny videos,best of tik tok,funny memes,vines,visicks,fails, tik tok, tik tok video, tik tok video 2019, tik tok video 2018, tik tok video 2017, tik tok 2019, tik tok 2020, tik tok video 2020, tik tok 2018, tik tok 2017, tik tok compilation, tik tok compilation 2019, tik tok compilation 2018, tik tok compilation 2017, tik tok meme, tik tok meme 2019, tik tok meme 2018, tik tok meme 2017, , tiktok songs you don\u2019t know the name of, tik tok cringe, tik tok Kesha, tik tok songs playlist, tiktok memes that are actually funny, tiktok memes, tiktok that ease my depression, tik tok that hit harder than my depression, tiktok memes songs, hype house, hypehouse, hypehousecompilation, addison rae, tiktok hype house dance, hype house, swayla, theswayhouse, theswayla, Noah beck, bryce hall, Quinton Griggs, Blake Gray, Griffin Johnson, noah beck and dixie damelio.\n\n#beauty #skin #skincare #beautytips #makeupvideos #makeuptrends #viralmakeup #makeuplooks #hudabeauty #kyliejenner #kimk #celebmakeup #hairvideos #bestbeautytiktoks #skinhacks #beautyhacks #antiaging #plasticsurgery #lipinjections #skinhype #gorgeousmakeup #weddingmakeip #esthetics #beautytrends #makeupbymario #nikkitutorials #freebritney #britneyspears #gabi #arianagrande #celebritymakeover #jlo #meganfox #acne #pimples #pimplesolutions #backacne\n#cleaning #cleaningtiktoks\n#funnyvideos #oddlysatisfying #satisfying #cleaning #diy #diyhome #homedecor"
}
}
},
{
"kind": "youtube#video",
"etag": "GJvS6YjWurQjfGDUfN6UzZpqegY",
"id": "G9p08PEdIq4",
"snippet": {
"publishedAt": "2021-06-13T23:00:08Z",
"channelId": "UCBsL0f1FZylqqhuKs5jhXCQ",
"title": "Toddler tries to comfort dog with separation anxiety.",
"description": "*Subscribe to see more entertaining videos: https://www.youtube.com/c/bviral\n\n \u25ba For use of this video, please contact: licensing@bviral.com\n \ud83d\udd25 Follow us on Insta: https://www.instagram.com/bviral\n \ud83d\udcf9 @sierabearchell\n\n#adorable #toddlerlife #sosweet #wholesomecontent\n\nABOUT US:\nBVIRAL is the global leader in viral entertainment. Our exclusively licensed videos regularly go viral and are the topic of conversations around the globe. BVIRAL is focused on providing our subscribers with short-form video content that is sure to keep you, your family, and friends entertained. Our channels are subscribed to by over 35-million people and our owned content earns billions of monthly impressions. To learn more: www.bviral.com",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/G9p08PEdIq4/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/G9p08PEdIq4/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/G9p08PEdIq4/hqdefault.jpg",
"width": 480,
"height": 360
},
"standard": {
"url": "https://i.ytimg.com/vi/G9p08PEdIq4/sddefault.jpg",
"width": 640,
"height": 480
},
"maxres": {
"url": "https://i.ytimg.com/vi/G9p08PEdIq4/maxresdefault.jpg",
"width": 1280,
"height": 720
}
},
"channelTitle": "BVIRAL",
"tags": [
"animals",
"feels",
"baby",
"toddler",
"comfort",
"dog",
"pets",
"anxiety"
],
"categoryId": "24",
"liveBroadcastContent": "none",
"localized": {
"title": "Toddler tries to comfort dog with separation anxiety.",
"description": "*Subscribe to see more entertaining videos: https://www.youtube.com/c/bviral\n\n \u25ba For use of this video, please contact: licensing@bviral.com\n \ud83d\udd25 Follow us on Insta: https://www.instagram.com/bviral\n \ud83d\udcf9 @sierabearchell\n\n#adorable #toddlerlife #sosweet #wholesomecontent\n\nABOUT US:\nBVIRAL is the global leader in viral entertainment. Our exclusively licensed videos regularly go viral and are the topic of conversations around the globe. BVIRAL is focused on providing our subscribers with short-form video content that is sure to keep you, your family, and friends entertained. Our channels are subscribed to by over 35-million people and our owned content earns billions of monthly impressions. To learn more: www.bviral.com"
},
"defaultAudioLanguage": "en"
}
},
{
"kind": "youtube#video",
"etag": "7Ywg46cFkDboUEpIy4No7ZoNqfM",
"id": "Ip1GvDUxeFc",
"snippet": {
"publishedAt": "2021-07-21T12:08:22Z",
"channelId": "UC02rAIf5RYrww6AWhoI5S0w",
"title": "the world\u2019s COOLEST water bottle!!\ud83e\udd29\ud83e\udd29 #shorts",
"description": "please subscribe!!\n\n#shorts #unboxing",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/Ip1GvDUxeFc/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/Ip1GvDUxeFc/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/Ip1GvDUxeFc/hqdefault.jpg",
"width": 480,
"height": 360
},
"standard": {
"url": "https://i.ytimg.com/vi/Ip1GvDUxeFc/sddefault.jpg",
"width": 640,
"height": 480
},
"maxres": {
"url": "https://i.ytimg.com/vi/Ip1GvDUxeFc/maxresdefault.jpg",
"width": 1280,
"height": 720
}
},
"channelTitle": "Katie Feeney",
"categoryId": "22",
"liveBroadcastContent": "none",
"localized": {
"title": "the world\u2019s COOLEST water bottle!!\ud83e\udd29\ud83e\udd29 #shorts",
"description": "please subscribe!!\n\n#shorts #unboxing"
}
}
},
{
"kind": "youtube#video",
"etag": "B_yrd6kqR9VpQ8sW1_Pa2S-qGno",
"id": "IeOPpl-23aI",
"snippet": {
"publishedAt": "2021-05-01T22:52:03Z",
"channelId": "UCsEMkD9xEE5O0I-90K47f0A",
"title": "ksi \ud83d\udc10",
"description": "#ksi",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/IeOPpl-23aI/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/IeOPpl-23aI/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/IeOPpl-23aI/hqdefault.jpg",
"width": 480,
"height": 360
},
"standard": {
"url": "https://i.ytimg.com/vi/IeOPpl-23aI/sddefault.jpg",
"width": 640,
"height": 480
},
"maxres": {
"url": "https://i.ytimg.com/vi/IeOPpl-23aI/maxresdefault.jpg",
"width": 1280,
"height": 720
}
},
"channelTitle": "Mehrad Hub",
"categoryId": "22",
"liveBroadcastContent": "none",
"localized": {
"title": "ksi \ud83d\udc10",
"description": "#ksi"
}
}
},
{
"kind": "youtube#video",
"etag": "Bc-I3H7hHkEnUAHsaT4OqNUlZ20",
"id": "w-Az0smtpcg",
"snippet": {
"publishedAt": "2021-07-08T03:24:49Z",
"channelId": "UCCjrlfZHkMo89LwGlVIXL8A",
"title": "I Fixed the Earth with Crushed Ice & Grass \ud83d\ude01",
"description": "",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/w-Az0smtpcg/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/w-Az0smtpcg/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/w-Az0smtpcg/hqdefault.jpg",
"width": 480,
"height": 360
},
"standard": {
"url": "https://i.ytimg.com/vi/w-Az0smtpcg/sddefault.jpg",
"width": 640,
"height": 480
},
"maxres": {
"url": "https://i.ytimg.com/vi/w-Az0smtpcg/maxresdefault.jpg",
"width": 1280,
"height": 720
}
},
"channelTitle": "Satisfied Crush",
"categoryId": "24",
"liveBroadcastContent": "none",
"defaultLanguage": "en-US",
"localized": {
"title": "I Fixed the Earth with Crushed Ice & Grass \ud83d\ude01",
"description": ""
},
"defaultAudioLanguage": "en-US"
}
},
{
"kind": "youtube#video",
"etag": "FTFvdBGIKmyOWmSdIFTWvfR-4t4",
"id": "B1t4Fjlomi8",
"snippet": {
"publishedAt": "2021-07-13T15:01:21Z",
"channelId": "UCsBjURrPoezykLs9EqgamOA",
"title": "Why do computers use RGB for colors, and not RBY?",
"description": "Computer screens use red, green, and blue RGB as pixel colors, but why? They told us in kindergarten that RBY were the primary colors...\n\n#shorts #design #compsci",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/B1t4Fjlomi8/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/B1t4Fjlomi8/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/B1t4Fjlomi8/hqdefault.jpg",
"width": 480,
"height": 360
},
"standard": {
"url": "https://i.ytimg.com/vi/B1t4Fjlomi8/sddefault.jpg",
"width": 640,
"height": 480
},
"maxres": {
"url": "https://i.ytimg.com/vi/B1t4Fjlomi8/maxresdefault.jpg",
"width": 1280,
"height": 720
}
},
"channelTitle": "Fireship",
"tags": [
"webdev",
"shorts",
"color",
"design",
"rby vs rgb",
"rbg color",
"cmyk",
"computer colors",
"computer science"
],
"categoryId": "28",
"liveBroadcastContent": "none",
"localized": {
"title": "Why do computers use RGB for colors, and not RBY?",
"description": "Computer screens use red, green, and blue RGB as pixel colors, but why? They told us in kindergarten that RBY were the primary colors...\n\n#shorts #design #compsci"
},
"defaultAudioLanguage": "en"
}
},
{
"kind": "youtube#video",
"etag": "KdS8rbTFRa8lViqR7PQiYARzaPE",
"id": "PWVwLNZS8g0",
"snippet": {
"publishedAt": "2021-06-03T13:42:01Z",
"channelId": "UCzOfo6cPSq51ujVUwkrkfpQ",
"title": "Eid ul Adha Animal 2021 | Cow Tiktok | Cow Lover | Qurbani Eid Janwar | whatsapp status | #Shorts",
"description": "Eid ul Adha Animal 2021 | Cow Tiktok | Cow Lover | Qurbani Eid Janwar | Cow For Qurbani | #Shorts\nCow \nCow Tiktok Video\nQurbani eid cow\nBest animal for eid\n#Shorts\n\n\nWhatsApp\n\n\nCreator Studio\n\n\nFacebook\n\nGoogle Search\n\nWhatsApp Business\n\n\u06c1\u0627\u062a\u06be\u06cc \u0633\u06d2 \u0628\u06be\u06cc \u0628\u0691\u06d2 \u0642\u0631\u0628\u0627\u0646\u06cc \u06a9\u06d2 \u0628\u06cc\u0644 II Biggest And Most Unique Bulls In The World\n\n\nShahid Afridi's Most Expensive Super Bull Sultan | Afridi Cattle Farms 2020 | SpeakOut\n\nVery Funny ll Qurbani Animals Run Away during Unloading II Qurbani Animals out of Control Part I\n\nKhan house home Qurbani 2k\n\nBakra Eid Special Videos | Funny Eid Videos | Bari Eid Viral Funny video\n\ncow tiktok\n\n\ncow tik tok\n\n\ntiktok cow\n\n\nqurbani\n\n\ncow tiktok 2021\n\n\n\ncow tiktok\n\ncow tik tok\n\ntiktok cow\n\nqurbani\n\ncow tiktok 2021\n\ncow lover status\n\ncow lovers tik tok\n\nqurbani janwar\n\njanwar\n\ncow qurbani\n\ncow\n\nqurbani tiktok\n\nqurbani video\n\ncow qurbani tik tok\n\nqurbani janwar tik tok\n\ncowtiktok\n\neid ul adha\n\n\neid ul adha status\n\nqurbani status\n\ncow 2021\n\ncow status\n\neid ul adha tiktok\n\ncow lovers whatsapp status\n\ncow whatsapp Status \n\ncow tiktok videos\n\nqurbani ke janwar\n\nqurbani ka janwar tik tok\n\ncow ki tik tok\n\neid ul adha cow tiktok\n\ngoat tiktok\n\ncow lover\n\ntik tok cow\n\ncow videos tik tok\n\n\nqurbani funny video tik tok\n\ncows tiktok\n\neid ka janwar\n\nanimal cow\n\nqurbani ke janwar ki tik tok\n\ncow animal\n\ncow ki qurbani\n\ncow status for whatsapp\n\ncow video tik tok\n\ncow eid tikok\ncow eid tik tok\n\neid cow tiktok\n\ncow tiktok video\n\neid ul adha qurbani\n\nanimal qurbani\n\nqurbani animal\n\nqurbani tiktok 2021\n\ntiktok qurbani",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/PWVwLNZS8g0/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/PWVwLNZS8g0/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/PWVwLNZS8g0/hqdefault.jpg",
"width": 480,
"height": 360
}
},
"channelTitle": "MBH Vlogs",
"tags": [
"Cow mandi 2019",
"Karachi mandi 2019 karachi sohrab goth",
"Karachi mandi 2021 karachi sohrab goth",
"Cow mandi 2018",
"Cow videos",
"Cow 2019",
"Mandi 2019",
"Mandi",
"Mandi cow 2019",
"Mandi 2019 in karachi",
"Mandi vlog",
"Sohrab goth",
"Sohrab goth mandi",
"Sohrab goth cow mandi",
"Sohrab goth cow mandi live",
"Sohrab goth bakra mandi",
"Qurbani cow mandi",
"Qurbani cow mandi 2019",
"Qurbani ke janwar 2019",
"Qurbani",
"cow qurbani",
"maweshi mandi",
"bakra mandi pakistan",
"cow mandi",
"sohrab goth cow mandi 2019"
],
"categoryId": "22",
"liveBroadcastContent": "none",
"localized": {
"title": "Eid ul Adha Animal 2021 | Cow Tiktok | Cow Lover | Qurbani Eid Janwar | whatsapp status | #Shorts",
"description": "Eid ul Adha Animal 2021 | Cow Tiktok | Cow Lover | Qurbani Eid Janwar | Cow For Qurbani | #Shorts\nCow \nCow Tiktok Video\nQurbani eid cow\nBest animal for eid\n#Shorts\n\n\nWhatsApp\n\n\nCreator Studio\n\n\nFacebook\n\nGoogle Search\n\nWhatsApp Business\n\n\u06c1\u0627\u062a\u06be\u06cc \u0633\u06d2 \u0628\u06be\u06cc \u0628\u0691\u06d2 \u0642\u0631\u0628\u0627\u0646\u06cc \u06a9\u06d2 \u0628\u06cc\u0644 II Biggest And Most Unique Bulls In The World\n\n\nShahid Afridi's Most Expensive Super Bull Sultan | Afridi Cattle Farms 2020 | SpeakOut\n\nVery Funny ll Qurbani Animals Run Away during Unloading II Qurbani Animals out of Control Part I\n\nKhan house home Qurbani 2k\n\nBakra Eid Special Videos | Funny Eid Videos | Bari Eid Viral Funny video\n\ncow tiktok\n\n\ncow tik tok\n\n\ntiktok cow\n\n\nqurbani\n\n\ncow tiktok 2021\n\n\n\ncow tiktok\n\ncow tik tok\n\ntiktok cow\n\nqurbani\n\ncow tiktok 2021\n\ncow lover status\n\ncow lovers tik tok\n\nqurbani janwar\n\njanwar\n\ncow qurbani\n\ncow\n\nqurbani tiktok\n\nqurbani video\n\ncow qurbani tik tok\n\nqurbani janwar tik tok\n\ncowtiktok\n\neid ul adha\n\n\neid ul adha status\n\nqurbani status\n\ncow 2021\n\ncow status\n\neid ul adha tiktok\n\ncow lovers whatsapp status\n\ncow whatsapp Status \n\ncow tiktok videos\n\nqurbani ke janwar\n\nqurbani ka janwar tik tok\n\ncow ki tik tok\n\neid ul adha cow tiktok\n\ngoat tiktok\n\ncow lover\n\ntik tok cow\n\ncow videos tik tok\n\n\nqurbani funny video tik tok\n\ncows tiktok\n\neid ka janwar\n\nanimal cow\n\nqurbani ke janwar ki tik tok\n\ncow animal\n\ncow ki qurbani\n\ncow status for whatsapp\n\ncow video tik tok\n\ncow eid tikok\ncow eid tik tok\n\neid cow tiktok\n\ncow tiktok video\n\neid ul adha qurbani\n\nanimal qurbani\n\nqurbani animal\n\nqurbani tiktok 2021\n\ntiktok qurbani"
}
}
},
{
"kind": "youtube#video",
"etag": "N1V2URlsSP0UFoEp6KHjv6MrO-c",
"id": "gerRDFQIcas",
"snippet": {
"publishedAt": "2020-04-17T11:42:29Z",
"channelId": "UCAe4gWSzCLQQmqxXLhDupww",
"title": "How to change FASTag registered mobile number | Number change kaise kare",
"description": "Hey! Now buy FASTag for your vehicle directly from Paytm. Click on my link now! https://p.paytm.me/xCTH/300408ab\n\nHey! Now buy FASTag for your vehicle directly from Paytm. Click on my link now! https://p.paytm.me/xCTH/300408ab\n\nJoin us on Telegram https://t.me/allaboutfastag\nJoin us on Telegram https://t.me/allaboutfastag\nJoin us on Telegram https://t.me/allaboutfastag\nJoin us on Telegram https://t.me/allaboutfastag\n\n\n\n\n\n\nJoin us on Telegram https://t.me/allaboutfastag Fastag not working, In case the equipments are not working and your FASTag account is having sufficient balance, please pay the toll fee in cash at the plaza. Additionally, please call on 1033 toll free number and register the complaint. We will assist you in raising the issue with the relevant authority.\n\n\n\n\n FASTag is a simple to use, reloadable tag which enables automatic deduction of toll charges and lets you pass through the toll plaza without stopping for the cash transaction. FASTag is linked to a prepaid account from which the applicable toll amount is deducted. The tag employs Radio-frequency Identification (RFID) technology and is affixed on the vehicle's windscreen after the tag account is active.\n\n FASTag is a perfect solution for a hassle free trip on national highways. FASTag is presently operational at 180 toll plazas across national and state highways. More toll plazas will be brought under the FASTag program in the future.\n\n It needs to be affixed on the vehicle\u2019s windscreen. Each tag is linked to a registered Paytm Payments Bank account to facilitate instant automatic deduction of toll charges. This program is part of the National Electronic Toll Collection (NETC) initiative, rolled out by NPCI under the guidelines of NHAI & IHMCL.\n\nIf adequate balance is not maintained by the customer, the FASTag gets blacklisted at the toll plaza.\n\n\nl\n\n\n\n\nYou can activate your FASTag by following the steps below:\n\n1.\u00a0\u00a0\u00a0\u00a0Go to https://paytm.com/manage-fastag and login to your Paytm account with your registered mobile number using any web browser.\n2.\u00a0\u00a0\u00a0\u00a0Click on the Inactive tag tab.\n3.\u00a0\u00a0\u00a0\u00a0Now you can see the list of vehicles that were suspended by you from the Paytm App.\n4.\u00a0\u00a0\u00a0\u00a0Click on the toggle button for the respective vehicle to activate your FASTag.\u00a0\n\nNote: Once you activate your FASTag you will not be able to suspend it again from the web or the app.\n\n\n\n\n\n\n\nFor any other query mail us at paytmfastag@gmail.com\n\n\n\n\ud83d\ude4f\ud83c\udffbCOPYRIGHT NOTICE \u00a9 AllaboutFastag : This video is solely created by AllaboutFastag. Only sharing the link is allowed. Downloading & sharing or modifying this video without my permission on any platform is COMPLETELY ILLEGAL. Anyone doing so will have to suffer a case against under section 107 of the Copyright Act of 1976.\ud83d\ude4f\ud83c\udffb\n\n\n\n\nfastag, axis, fastag, paytm, fastag, banks, list, icici, fastag, login, home, hdfc, fastag, recharge, fastag, sticker, icici, bank, fastag, customer, login, fastag, mandatory, fastag, banks, list, fastag, hdfc, icicifastag, on, fastag, amazon, fastag, kotak, fastag, franchise, fastag, axis, fastag, sbi, fastag, meaning, pnb, fastag, apply, online, fastag, paytm, what, if, fastag, is, damaged, pnb, fastag, airtel, fastag, complaint, fastag, federal, bank, fastag, not, working, at, toll, paytm, fastag, not, working, fastag, portal, fastag, blacklisted, what, is, blacklist, in, fastag, if, fastag, is, not, working, axis, bank, fastag, fastag, scanner, machine, how, to, recharge, fastag, using, bhim, app, fastag, news, last, date, fastag, scanner, machine, hdfc, fastag, upi, id, nhai, toll, rules, for, 12, hours, nhai, toll, exemption, list, 2018, pdf, scan, fastag, qr, code, how, fastag, scanner, works, paytm, fastag, not, working, how, to, check, fastag, balance, rfid, scanner, paytm, fastag, activation, paytm, fastag, cheating, correction, in, fastag, fastag, activation, status, patty, com, fastag, google, pay, fastag, paytm, fastag, blacklisted, fastag, blacklisted, meaning, axis, bank, fastag, minimum, balance, how, to, remove, fastag, sticker, from, car, sbi, fastag, minimum, balance, paytm, fastag, minimum, balance, fastag, blacklisted, paytm, how, to, remove, the, fastag, from, blacklist, hdfc, fastag, blacklisted, fastag, color, code, sabse, sasta, fastag, fastag, class, 7, hdfc, fastag, customer, care, email, id, fastag, blacklisted, reason, hdfc, fastag, login, hdfc, fastag, pos, in, mumbai, fastag, in, odisha, toll, charges, without, fastag, fastag, news, today, how, fastag, works, nhai",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/gerRDFQIcas/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/gerRDFQIcas/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/gerRDFQIcas/hqdefault.jpg",
"width": 480,
"height": 360
},
"standard": {
"url": "https://i.ytimg.com/vi/gerRDFQIcas/sddefault.jpg",
"width": 640,
"height": 480
},
"maxres": {
"url": "https://i.ytimg.com/vi/gerRDFQIcas/maxresdefault.jpg",
"width": 1280,
"height": 720
}
},
"channelTitle": "All About Fastag",
"tags": [
"FASTag minimum balance",
"reserved balance",
"fastag recharge",
"recharge HDFC fastag",
"axis",
"paytm",
"banks",
"list",
"icici",
"login",
"home",
"hdfc",
"recharge",
"sticker",
"bank",
"customer",
"mandatory",
"icicifastag",
"on",
"amazon",
"kotak",
"franchise",
"sbi",
"meaning",
"pnb",
"apply",
"Fastag number change",
"number update"
],
"categoryId": "28",
"liveBroadcastContent": "none",
"defaultLanguage": "en",
"localized": {
"title": "How to change FASTag registered mobile number | Number change kaise kare",
"description": "Hey! Now buy FASTag for your vehicle directly from Paytm. Click on my link now! https://p.paytm.me/xCTH/300408ab\n\nHey! Now buy FASTag for your vehicle directly from Paytm. Click on my link now! https://p.paytm.me/xCTH/300408ab\n\nJoin us on Telegram https://t.me/allaboutfastag\nJoin us on Telegram https://t.me/allaboutfastag\nJoin us on Telegram https://t.me/allaboutfastag\nJoin us on Telegram https://t.me/allaboutfastag\n\n\n\n\n\n\nJoin us on Telegram https://t.me/allaboutfastag Fastag not working, In case the equipments are not working and your FASTag account is having sufficient balance, please pay the toll fee in cash at the plaza. Additionally, please call on 1033 toll free number and register the complaint. We will assist you in raising the issue with the relevant authority.\n\n\n\n\n FASTag is a simple to use, reloadable tag which enables automatic deduction of toll charges and lets you pass through the toll plaza without stopping for the cash transaction. FASTag is linked to a prepaid account from which the applicable toll amount is deducted. The tag employs Radio-frequency Identification (RFID) technology and is affixed on the vehicle's windscreen after the tag account is active.\n\n FASTag is a perfect solution for a hassle free trip on national highways. FASTag is presently operational at 180 toll plazas across national and state highways. More toll plazas will be brought under the FASTag program in the future.\n\n It needs to be affixed on the vehicle\u2019s windscreen. Each tag is linked to a registered Paytm Payments Bank account to facilitate instant automatic deduction of toll charges. This program is part of the National Electronic Toll Collection (NETC) initiative, rolled out by NPCI under the guidelines of NHAI & IHMCL.\n\nIf adequate balance is not maintained by the customer, the FASTag gets blacklisted at the toll plaza.\n\n\nl\n\n\n\n\nYou can activate your FASTag by following the steps below:\n\n1.\u00a0\u00a0\u00a0\u00a0Go to https://paytm.com/manage-fastag and login to your Paytm account with your registered mobile number using any web browser.\n2.\u00a0\u00a0\u00a0\u00a0Click on the Inactive tag tab.\n3.\u00a0\u00a0\u00a0\u00a0Now you can see the list of vehicles that were suspended by you from the Paytm App.\n4.\u00a0\u00a0\u00a0\u00a0Click on the toggle button for the respective vehicle to activate your FASTag.\u00a0\n\nNote: Once you activate your FASTag you will not be able to suspend it again from the web or the app.\n\n\n\n\n\n\n\nFor any other query mail us at paytmfastag@gmail.com\n\n\n\n\ud83d\ude4f\ud83c\udffbCOPYRIGHT NOTICE \u00a9 AllaboutFastag : This video is solely created by AllaboutFastag. Only sharing the link is allowed. Downloading & sharing or modifying this video without my permission on any platform is COMPLETELY ILLEGAL. Anyone doing so will have to suffer a case against under section 107 of the Copyright Act of 1976.\ud83d\ude4f\ud83c\udffb\n\n\n\n\nfastag, axis, fastag, paytm, fastag, banks, list, icici, fastag, login, home, hdfc, fastag, recharge, fastag, sticker, icici, bank, fastag, customer, login, fastag, mandatory, fastag, banks, list, fastag, hdfc, icicifastag, on, fastag, amazon, fastag, kotak, fastag, franchise, fastag, axis, fastag, sbi, fastag, meaning, pnb, fastag, apply, online, fastag, paytm, what, if, fastag, is, damaged, pnb, fastag, airtel, fastag, complaint, fastag, federal, bank, fastag, not, working, at, toll, paytm, fastag, not, working, fastag, portal, fastag, blacklisted, what, is, blacklist, in, fastag, if, fastag, is, not, working, axis, bank, fastag, fastag, scanner, machine, how, to, recharge, fastag, using, bhim, app, fastag, news, last, date, fastag, scanner, machine, hdfc, fastag, upi, id, nhai, toll, rules, for, 12, hours, nhai, toll, exemption, list, 2018, pdf, scan, fastag, qr, code, how, fastag, scanner, works, paytm, fastag, not, working, how, to, check, fastag, balance, rfid, scanner, paytm, fastag, activation, paytm, fastag, cheating, correction, in, fastag, fastag, activation, status, patty, com, fastag, google, pay, fastag, paytm, fastag, blacklisted, fastag, blacklisted, meaning, axis, bank, fastag, minimum, balance, how, to, remove, fastag, sticker, from, car, sbi, fastag, minimum, balance, paytm, fastag, minimum, balance, fastag, blacklisted, paytm, how, to, remove, the, fastag, from, blacklist, hdfc, fastag, blacklisted, fastag, color, code, sabse, sasta, fastag, fastag, class, 7, hdfc, fastag, customer, care, email, id, fastag, blacklisted, reason, hdfc, fastag, login, hdfc, fastag, pos, in, mumbai, fastag, in, odisha, toll, charges, without, fastag, fastag, news, today, how, fastag, works, nhai"
},
"defaultAudioLanguage": "hi"
}
},
{
"kind": "youtube#video",
"etag": "rH_ZC1CuoYvxIcDOiyVPzVWWJv4",
"id": "hsku9NsjnEU",
"snippet": {
"publishedAt": "2021-05-29T16:50:13Z",
"channelId": "UChZgGbEoB1NFCJq3LyYR47g",
"title": "Save tyre reduction# shorts",
"description": "",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/hsku9NsjnEU/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/hsku9NsjnEU/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/hsku9NsjnEU/hqdefault.jpg",
"width": 480,
"height": 360
},
"standard": {
"url": "https://i.ytimg.com/vi/hsku9NsjnEU/sddefault.jpg",
"width": 640,
"height": 480
}
},
"channelTitle": "Biju Roadster",
"categoryId": "22",
"liveBroadcastContent": "none",
"localized": {
"title": "Save tyre reduction# shorts",
"description": ""
}
}
},
{
"kind": "youtube#video",
"etag": "ZcOkauk1s4DZqAOyDdvaP4yw_7M",
"id": "QvQ6elkV1kM",
"snippet": {
"publishedAt": "2021-06-01T12:10:14Z",
"channelId": "UCi-pkXLbm7sqXFhV1NBLUfQ",
"title": "India\u2019s first unicorn protocol: Matic a.k.a Polygon",
"description": "You can follow Jaynti and Sandeep on Twitter:\n\n@sandeepnailwal \n@_jdkanani\n\nYou can donate to the Crypto India Relief Fund here: https://twitter.com/sandeepnailwal/status/1385968554508488709?s=20\n\n------------------\nFollow @thetanmay and @akshaybd on twitter.\n\n------------------\nTimestamp:\n\n0:00 - Intro\n0:20 - Introducing Matic\n3:48 - Matic Founders\n6:56 - How did they get this idea?\n11:19 - What is Blockchain Trilemma?\n14:50 - Simplified analogy to understand Matic\n17:56 - Projects currently using Matic\n21:05 - Why is Matic winning?\n26:12 - What problems should Indian Engineers work on?\n33:10 - Their Experience with Vitalik\n36:03 - How Ethereum community is best!\n38:54 - Sandeep's Covid relief initiative\n43:42 - How can Indian engineers get involved with Ethereum\n49:20 - How can non-tech people get involved with Ethereum\n51:27 - What do they think about other chains?\n55:29 - At what price did they bought Bitcoin?\n56:00 - Recommendation for someone who wants to start investing\n56:51 - What is their portfolio?\n1:00:36 - Advice for young investors\n1:07:03 - Outro\n\n------------------\n\nDisclaimer\n\nThe information contained herein is for informational and entertainment purposes only. Nothing herein shall be construed to be financial, legal or tax advice. Trading cryptocurrencies poses considerable risk of loss and viewers are advised to do their own research before making any decisions.",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/QvQ6elkV1kM/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/QvQ6elkV1kM/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/QvQ6elkV1kM/hqdefault.jpg",
"width": 480,
"height": 360
},
"standard": {
"url": "https://i.ytimg.com/vi/QvQ6elkV1kM/sddefault.jpg",
"width": 640,
"height": 480
},
"maxres": {
"url": "https://i.ytimg.com/vi/QvQ6elkV1kM/maxresdefault.jpg",
"width": 1280,
"height": 720
}
},
"channelTitle": "Superteam Podcast",
"categoryId": "22",
"liveBroadcastContent": "none",
"localized": {
"title": "India\u2019s first unicorn protocol: Matic a.k.a Polygon",
"description": "You can follow Jaynti and Sandeep on Twitter:\n\n@sandeepnailwal \n@_jdkanani\n\nYou can donate to the Crypto India Relief Fund here: https://twitter.com/sandeepnailwal/status/1385968554508488709?s=20\n\n------------------\nFollow @thetanmay and @akshaybd on twitter.\n\n------------------\nTimestamp:\n\n0:00 - Intro\n0:20 - Introducing Matic\n3:48 - Matic Founders\n6:56 - How did they get this idea?\n11:19 - What is Blockchain Trilemma?\n14:50 - Simplified analogy to understand Matic\n17:56 - Projects currently using Matic\n21:05 - Why is Matic winning?\n26:12 - What problems should Indian Engineers work on?\n33:10 - Their Experience with Vitalik\n36:03 - How Ethereum community is best!\n38:54 - Sandeep's Covid relief initiative\n43:42 - How can Indian engineers get involved with Ethereum\n49:20 - How can non-tech people get involved with Ethereum\n51:27 - What do they think about other chains?\n55:29 - At what price did they bought Bitcoin?\n56:00 - Recommendation for someone who wants to start investing\n56:51 - What is their portfolio?\n1:00:36 - Advice for young investors\n1:07:03 - Outro\n\n------------------\n\nDisclaimer\n\nThe information contained herein is for informational and entertainment purposes only. Nothing herein shall be construed to be financial, legal or tax advice. Trading cryptocurrencies poses considerable risk of loss and viewers are advised to do their own research before making any decisions."
}
}
},
{
"kind": "youtube#video",
"etag": "mHZg1rAM9XfpPXaOC3SnwAPp4Ag",
"id": "incrC8psr18",
"snippet": {
"publishedAt": "2021-06-04T10:45:35Z",
"channelId": "UCBHHmLr8DKgA-9RVzV0D59w",
"title": "HOW TO RELAX UR MUSCLES | ROHIT GUJJAR",
"description": "#shorts #chutki #gandizufra #GussaChhabra #gauravgera #rohitgujjar @Gaurav Gera Official",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/incrC8psr18/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/incrC8psr18/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/incrC8psr18/hqdefault.jpg",
"width": 480,
"height": 360
},
"standard": {
"url": "https://i.ytimg.com/vi/incrC8psr18/sddefault.jpg",
"width": 640,
"height": 480
},
"maxres": {
"url": "https://i.ytimg.com/vi/incrC8psr18/maxresdefault.jpg",
"width": 1280,
"height": 720
}
},
"channelTitle": "Rohit Gujjar",
"tags": [
"Gussa chhabra",
"comedy",
"chutki",
"gaurav gera",
"rohit gujjar",
"gandizufra",
"shorts"
],
"categoryId": "23",
"liveBroadcastContent": "none",
"localized": {
"title": "HOW TO RELAX UR MUSCLES | ROHIT GUJJAR",
"description": "#shorts #chutki #gandizufra #GussaChhabra #gauravgera #rohitgujjar @Gaurav Gera Official"
}
}
},
{
"kind": "youtube#video",
"etag": "JexHOswsStlGUnMtuZzs0SEYzTw",
"id": "ZpFsg6jLQHI",
"snippet": {
"publishedAt": "2021-06-16T12:00:14Z",
"channelId": "UCOmcA3f_RrH6b9NmcNa4tdg",
"title": "Why you should consider buying a Chromebook",
"description": "They\u2019re not for everyone but they\u2019re definitely not the browser-in-a-box laptops they were 10 years ago either. Here's a list of the best \u200bchromebooks you can buy now: https://www.cnet.com/news/best-chromebook/\n\nSubscribe to CNET: https://www.youtube.com/user/CNETTV\nLike us on Facebook: https://www.facebook.com/cnet\nFollow us on Twitter: https://www.twitter.com/cnet\nFollow us on Instagram: http://bit.ly/2icCYYm\nFollow us on TikTok: https://vm.tiktok.com/ZMd2h6yac/",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/ZpFsg6jLQHI/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/ZpFsg6jLQHI/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/ZpFsg6jLQHI/hqdefault.jpg",
"width": 480,
"height": 360
},
"standard": {
"url": "https://i.ytimg.com/vi/ZpFsg6jLQHI/sddefault.jpg",
"width": 640,
"height": 480
},
"maxres": {
"url": "https://i.ytimg.com/vi/ZpFsg6jLQHI/maxresdefault.jpg",
"width": 1280,
"height": 720
}
},
"channelTitle": "CNET",
"tags": [
"CNET",
"Technology",
"News",
"Tech",
"Review",
"mobile phone",
"apple",
"android",
"unboxing",
"vs",
"science",
"smartphone",
"chromebook",
"chromebooks"
],
"categoryId": "28",
"liveBroadcastContent": "none",
"localized": {
"title": "Why you should consider buying a Chromebook",
"description": "They\u2019re not for everyone but they\u2019re definitely not the browser-in-a-box laptops they were 10 years ago either. Here's a list of the best \u200bchromebooks you can buy now: https://www.cnet.com/news/best-chromebook/\n\nSubscribe to CNET: https://www.youtube.com/user/CNETTV\nLike us on Facebook: https://www.facebook.com/cnet\nFollow us on Twitter: https://www.twitter.com/cnet\nFollow us on Instagram: http://bit.ly/2icCYYm\nFollow us on TikTok: https://vm.tiktok.com/ZMd2h6yac/"
},
"defaultAudioLanguage": "en"
}
},
{
"kind": "youtube#video",
"etag": "FGzrKWnkZ54iHxOls9n_GOEtM2U",
"id": "hPcFz9J6lto",
"snippet": {
"publishedAt": "2020-09-01T12:15:02Z",
"channelId": "UCil9Hyx70kZqJNQhKc3odOw",
"title": "How to Fix Window Capture In OBS - OBS Black Screen Fix",
"description": "Hey guys! I've had this issue pop up many times in the last few months. Window capture for OBS on Mac has been a real pain. However, this is an easy fix to getting your window capture back up and running on OBS.\n\nFollow this step-by-step guide to fix your Window capture and black screen issues. AND IF YOU FIND THIS HELPFUL consider checking out some of my other content. If you like that too, please subscribe and help this channel grow.\n\n#OBS #WindowCapture #OBSstudio\n\nI am Angel Talamantes of Click Leads Local and we're a local digital marketing agency out of the Minneapolis Twin Cities Minnesota area that combines the power and creative of video with the analytics of digital marketing to create powerhouse local businesses that are seen all over their area.\n\nFacebook: http://clickleadslocal.com/Facebook\nYouTube: http://clickleadslocal.com/YouTube\nInstagram: http://clickleadslocal.com/instagram\nPodcast: http://clickeadslocal.com/podcast\nTwitter: http://clickleadslocal.com/twitter\nMedium: http://clickleadslocal.com/medium\nWebsite: http://clickleadslocal.com\n\n--------------------\n\n-Our Software-\n\nClickfunnels: http://bit.ly/1ObLAsQ\nFunnel Scripts: http://bit.ly/2pGTeke\nFunnel Hacks: http://bit.ly/2pyBZRz",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/hPcFz9J6lto/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/hPcFz9J6lto/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/hPcFz9J6lto/hqdefault.jpg",
"width": 480,
"height": 360
},
"standard": {
"url": "https://i.ytimg.com/vi/hPcFz9J6lto/sddefault.jpg",
"width": 640,
"height": 480
},
"maxres": {
"url": "https://i.ytimg.com/vi/hPcFz9J6lto/maxresdefault.jpg",
"width": 1280,
"height": 720
}
},
"channelTitle": "Click Leads Local - Angel Talamantes",
"tags": [
"NobleAddiction",
"Noble Arcade",
"how to fix obs black screen",
"how to fix obs black screen window capture",
"how to fix obs black screen amd",
"how to solve obs black screen problem",
"how to fix obs black screen on laptop",
"how to fix obs black screen recording",
"obs how to black screen",
"how to fix obs black screen video",
"obs",
"obs window capture not working",
"obs video not working",
"obs black screen video",
"obs has a black screen on video",
"obs tutorial",
"open broadcast tutorial",
"obs help"
],
"categoryId": "22",
"liveBroadcastContent": "none",
"defaultLanguage": "en",
"localized": {
"title": "How to Fix Window Capture In OBS - OBS Black Screen Fix",
"description": "Hey guys! I've had this issue pop up many times in the last few months. Window capture for OBS on Mac has been a real pain. However, this is an easy fix to getting your window capture back up and running on OBS.\n\nFollow this step-by-step guide to fix your Window capture and black screen issues. AND IF YOU FIND THIS HELPFUL consider checking out some of my other content. If you like that too, please subscribe and help this channel grow.\n\n#OBS #WindowCapture #OBSstudio\n\nI am Angel Talamantes of Click Leads Local and we're a local digital marketing agency out of the Minneapolis Twin Cities Minnesota area that combines the power and creative of video with the analytics of digital marketing to create powerhouse local businesses that are seen all over their area.\n\nFacebook: http://clickleadslocal.com/Facebook\nYouTube: http://clickleadslocal.com/YouTube\nInstagram: http://clickleadslocal.com/instagram\nPodcast: http://clickeadslocal.com/podcast\nTwitter: http://clickleadslocal.com/twitter\nMedium: http://clickleadslocal.com/medium\nWebsite: http://clickleadslocal.com\n\n--------------------\n\n-Our Software-\n\nClickfunnels: http://bit.ly/1ObLAsQ\nFunnel Scripts: http://bit.ly/2pGTeke\nFunnel Hacks: http://bit.ly/2pyBZRz"
},
"defaultAudioLanguage": "en"
}
},
{
"kind": "youtube#video",
"etag": "B420T8x3RduF1RWHNKk5u-qiZ58",
"id": "YRpisVZZ32E",
"snippet": {
"publishedAt": "2021-01-07T19:00:28Z",
"channelId": "UCUZdSiU-RnkdUnnyIQY5t9w",
"title": "How To Switch Lanes In A Sports Car!!",
"description": "This is a joke for entertainment purposes... kindaLol check your blind spots people \nI got a full video coming out today stay tuned it will be out in 5 hours or so \n#shorts",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/YRpisVZZ32E/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/YRpisVZZ32E/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/YRpisVZZ32E/hqdefault.jpg",
"width": 480,
"height": 360
}
},
"channelTitle": "Navs Garage",
"categoryId": "2",
"liveBroadcastContent": "none",
"localized": {
"title": "How To Switch Lanes In A Sports Car!!",
"description": "This is a joke for entertainment purposes... kindaLol check your blind spots people \nI got a full video coming out today stay tuned it will be out in 5 hours or so \n#shorts"
},
"defaultAudioLanguage": "en"
}
},
{
"kind": "youtube#video",
"etag": "OXzD9vMPRKbqJatVfyeEFIBSPJA",
"id": "qsrYZdF7nO8",
"snippet": {
"publishedAt": "2021-05-13T22:00:18Z",
"channelId": "UCjF2pUd6qxmKQIoxvtBI47A",
"title": "Things That Just Make Sense on a $480,000 Rolls-Royce Dawn #shorts",
"description": "Things that just make sense on a $480,000 #rollsroyce #dawn #convertible #cars #carbuzz #shorts #fyp #foryou #foryourpage #momcar",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/qsrYZdF7nO8/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/qsrYZdF7nO8/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/qsrYZdF7nO8/hqdefault.jpg",
"width": 480,
"height": 360
},
"standard": {
"url": "https://i.ytimg.com/vi/qsrYZdF7nO8/sddefault.jpg",
"width": 640,
"height": 480
},
"maxres": {
"url": "https://i.ytimg.com/vi/qsrYZdF7nO8/maxresdefault.jpg",
"width": 1280,
"height": 720
}
},
"channelTitle": "CarBuzz",
"tags": [
"Rolls-Royce",
"Rolls-Royce Dawn"
],
"categoryId": "2",
"liveBroadcastContent": "none",
"localized": {
"title": "Things That Just Make Sense on a $480,000 Rolls-Royce Dawn #shorts",
"description": "Things that just make sense on a $480,000 #rollsroyce #dawn #convertible #cars #carbuzz #shorts #fyp #foryou #foryourpage #momcar"
},
"defaultAudioLanguage": "en"
}
},
{
"kind": "youtube#video",
"etag": "_JcftYJVbmF6J_KF7MeIUo6in1A",
"id": "LfKMgEZ9bKo",
"snippet": {
"publishedAt": "2021-06-01T15:00:24Z",
"channelId": "UC9lztld5qPi-6WZ9_QIVR6g",
"title": "Sometimes The Shortest Distance Between Two Points is NOT a Straight Line: GEODESICS by Parth G",
"description": "What happens when the shortest distance between two points is NOT a straight line, and exactly what is a geodesic?\n\nHey everyone, in this video we'll be looking at how the surface we happen to be studying impacts the definition of the \"shortest\" distance between two points on that surface. A geodesic is exactly that, the shortest distance on a specific surface.\n\nOn a flat surface like a piece of paper or a computer screen, the shortest distance is always a straight line. This can be proved rigorously using calculus of variations, but is also quite intuitive. For example, we can try to imagine any path that isn't a straight line between two points, and then laying a piece of string along it. The string can then be straightened and compared to the straight line path - and the not-straight path will always be longer. This also applies in 3D space, assuming the space is \"flat\", or \"Euclidean\" as it's known.\n\nHowever, if we now consider two points on the surface of a sphere, then the shortest distance between them (if we are restricted to move along the surface) is a curve. And yet we can imagine digging into the surface along a straight line to take an even shorter path. But this only makes sense if we consider a 2D sphere \"embedded\" in 3D space.\n\nIn the study of relativity, embedding is just a useful visualization tool - but it doesn't necessarily refer to anything physical. Using our sphere example, it's a 2D surface that NEED NOT be embedded in 3D space, and so it makes no physical sense to dig into the sphere as we only have access to the two dimensions of the surface. \n\nSimilarly, our universe can be described by 4D spacetime in relativity. And it need not be embedded in anything 5D. So when spacetime itself is curved, the concept of a straight line does not have any physical meaning. Two points in this curved spacetime may have a curved geodesic between them.\n\nIt's important to note that light travels along these geodesics, which is why it is important that we study them. And it's also worth nothing that spacetime curvature is caused by mass or energy found within the spacetime, as explained by Einstein's Field Equations.\n\nSo the point is that the shortest distance between two points need not be a straight line, especially if the surface that the points are on is curved in some way. And the shortest distance for a given surface is known as a geodesic.\n\nMany of you have asked about the stuff I use to make my videos, so I'm posting some affiliate links here! I make a small commission if you make a purchase through these links.\nGeneral Relativity Textbook: https://amzn.to/3ytaKwt\nA Quantum Physics Book I Enjoy: https://amzn.to/3sxLlgL\nMy camera (Canon EOS M50): https://amzn.to/3lgq8FZ\nMy Lens (Canon EF-M 22mm): https://amzn.to/3qMBvqD\nMicrophone and Stand (Fifine): https://amzn.to/2OwyWvt\n\nThanks so much for watching - please do check out my socials here:\nInstagram - @parthvlogs\nSecond (Music) Channel - Parth G's Shenanigans\nPatreon - patreon.com/parthg\nMerch - https://parth-gs-merch-stand.creator-spring.com/",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/LfKMgEZ9bKo/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/LfKMgEZ9bKo/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/LfKMgEZ9bKo/hqdefault.jpg",
"width": 480,
"height": 360
},
"standard": {
"url": "https://i.ytimg.com/vi/LfKMgEZ9bKo/sddefault.jpg",
"width": 640,
"height": 480
},
"maxres": {
"url": "https://i.ytimg.com/vi/LfKMgEZ9bKo/maxresdefault.jpg",
"width": 1280,
"height": 720
}
},
"channelTitle": "Parth G",
"tags": [
"geodesic",
"curved spacetime",
"shortest distance",
"straight line",
"physics",
"relativity",
"general relativity",
"parth g",
"shortest distance between two points",
"flat spacetime",
"euclidean space"
],
"categoryId": "27",
"liveBroadcastContent": "none",
"localized": {
"title": "Sometimes The Shortest Distance Between Two Points is NOT a Straight Line: GEODESICS by Parth G",
"description": "What happens when the shortest distance between two points is NOT a straight line, and exactly what is a geodesic?\n\nHey everyone, in this video we'll be looking at how the surface we happen to be studying impacts the definition of the \"shortest\" distance between two points on that surface. A geodesic is exactly that, the shortest distance on a specific surface.\n\nOn a flat surface like a piece of paper or a computer screen, the shortest distance is always a straight line. This can be proved rigorously using calculus of variations, but is also quite intuitive. For example, we can try to imagine any path that isn't a straight line between two points, and then laying a piece of string along it. The string can then be straightened and compared to the straight line path - and the not-straight path will always be longer. This also applies in 3D space, assuming the space is \"flat\", or \"Euclidean\" as it's known.\n\nHowever, if we now consider two points on the surface of a sphere, then the shortest distance between them (if we are restricted to move along the surface) is a curve. And yet we can imagine digging into the surface along a straight line to take an even shorter path. But this only makes sense if we consider a 2D sphere \"embedded\" in 3D space.\n\nIn the study of relativity, embedding is just a useful visualization tool - but it doesn't necessarily refer to anything physical. Using our sphere example, it's a 2D surface that NEED NOT be embedded in 3D space, and so it makes no physical sense to dig into the sphere as we only have access to the two dimensions of the surface. \n\nSimilarly, our universe can be described by 4D spacetime in relativity. And it need not be embedded in anything 5D. So when spacetime itself is curved, the concept of a straight line does not have any physical meaning. Two points in this curved spacetime may have a curved geodesic between them.\n\nIt's important to note that light travels along these geodesics, which is why it is important that we study them. And it's also worth nothing that spacetime curvature is caused by mass or energy found within the spacetime, as explained by Einstein's Field Equations.\n\nSo the point is that the shortest distance between two points need not be a straight line, especially if the surface that the points are on is curved in some way. And the shortest distance for a given surface is known as a geodesic.\n\nMany of you have asked about the stuff I use to make my videos, so I'm posting some affiliate links here! I make a small commission if you make a purchase through these links.\nGeneral Relativity Textbook: https://amzn.to/3ytaKwt\nA Quantum Physics Book I Enjoy: https://amzn.to/3sxLlgL\nMy camera (Canon EOS M50): https://amzn.to/3lgq8FZ\nMy Lens (Canon EF-M 22mm): https://amzn.to/3qMBvqD\nMicrophone and Stand (Fifine): https://amzn.to/2OwyWvt\n\nThanks so much for watching - please do check out my socials here:\nInstagram - @parthvlogs\nSecond (Music) Channel - Parth G's Shenanigans\nPatreon - patreon.com/parthg\nMerch - https://parth-gs-merch-stand.creator-spring.com/"
},
"defaultAudioLanguage": "en"
}
},
{
"kind": "youtube#video",
"etag": "mZdIzAIwM5bEVpiuYnNAnqCs-Ys",
"id": "jmAcw4MuPbk",
"snippet": {
"publishedAt": "2021-06-08T11:52:27Z",
"channelId": "UCLBHPoY3NugnZYURxln3fKQ",
"title": "iOS 15 for iPhone \u2014 MEGA REACTION! (WWDC 2021)",
"description": "\ud83d\udd25 NO ADS + bonus content! CuriosityStream & Nebula for less than $15 a YEAR! https://curiositystream.com/reneritchie/\n\nApple has just announced iOS 15 for the iPhone and I'm watching along and give you my live analysis on all the new features and functionality, including FaceTime, Messages, Keys, Maps, SharePlay, Safari, Photos, and more!\n\n\ud83d\udd14 SUBSCRIBE https://www.youtube.com/reneritchie?sub_confirmation=1\n\n\ud83d\udda5 New Apple Products for 2021:\nhttps://www.youtube.com/playlist?list=PL3XJJi5sAjD1NQJsw9AWgBY2dzOWVpNWo\n\n\ud83d\udcbb Apple Silicon Macs (M1): \nhttps://www.youtube.com/playlist?list=PL3XJJi5sAjD1sCicSKd0irf5TnQ1KJvPm\n\n\ud83d\udcf1 iPhone 13 Coverage:\nhttps://www.youtube.com/playlist?list=PL3XJJi5sAjD2Os17f8JOjnAB47AY-Xmx2\n\n\ud83d\udd17 LINKS\n\n\ud83d\ude4f PATREON THANK YOU!\n\nGet access to exclusive Discord, previews, even your name in this description or credits! https://www.patreon.com/reneritchie \n\nJacob Uribe, John Malkin, Ryan Parman, Roy Burns, Henk van Ess, Paco Arango, Rich Stakounis, Chad Potts, Daniel Pinto, Rod Gray, Daniel Z Wilkerson, Daniel Pasco, Jeffrey David Marraccini, Steven Kaplan, Mark Lussier, Martin Perry, Christopher Wiggins, Dude, Jon Wheeler, Josef, Frederick Lakes Jr., Steven Perry, Michael Dreves, Sam Fingold, Sven Jasper, Kyle Giglio\n\n\ud83c\udf4e\ud83c\udf99 APPLE TALK PODCAST\n\nApple: https://podcasts.apple.com/ca/podcast/apple-talk/id1532933019?i=1000492160142\n\nRSS: https://rss.art19.com/apple-talk\nYouTube: https://www.youtube.com/channel/UCrunioydAXI6z5yuJIHk-0Q/\n\nNEBULA subscribers get a bonus topic each week:\n\nAudio: https://watchnebula.com/apple-talk-podcast\nVideo: https://watchnebula.com/apple-talk\n\nDISCLAIMER\n\nThis channel does not produce sponsored or paid reviews. Companies occasionally make sample products available to facilitate reviews but provide no payment and get no editorial input, content approval, or advanced previews of the reviews. They see them for the first time when you do. \n\nLinks may contain referrals for affiliate programs that provide this channel with a tiny commission should you make a purchase. They likewise receive zero editorial input or consideration.\n\n\ud83d\udcf7 Some video and imagery supplied by Getty Images\n\ud83c\udfb8 Some music supplied by Epidemic\n\nMORE\n\n\u2b50\ufe0f Nebula: https://watchnebula.com/reneritchie\n\ud83d\udc26 Twitter: https://twitter.com/reneritchie\n\ud83d\udcf8 Instagram: https://instagram.com/reneritchie\n\ud83c\udf0e Web: https://www.reneritchie.net\n\ud83c\udf4e Podcasts: http://apple.co/reneritchie\n\ud83c\udf25 Overcast: https://overcast.fm/p1644160-NUVafv\n\ud83d\udc56 Pocket Cast: https://pca.st/reneritchie\n\nThanks for watching, see you next video!",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/jmAcw4MuPbk/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/jmAcw4MuPbk/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/jmAcw4MuPbk/hqdefault.jpg",
"width": 480,
"height": 360
},
"standard": {
"url": "https://i.ytimg.com/vi/jmAcw4MuPbk/sddefault.jpg",
"width": 640,
"height": 480
},
"maxres": {
"url": "https://i.ytimg.com/vi/jmAcw4MuPbk/maxresdefault.jpg",
"width": 1280,
"height": 720
}
},
"channelTitle": "Rene Ritchie",
"tags": [
"Apple",
"Rene Ritchie",
"iPhone",
"iPhone 13",
"iPhone 12",
"iOS",
"iOS 15",
"New iOS",
"iOS 2021",
"iPhone 2021",
"WWDC",
"WWDC21",
"WWDC 2021",
"New Features",
"iOS features",
"iOS 15 features"
],
"categoryId": "28",
"liveBroadcastContent": "none",
"localized": {
"title": "iOS 15 for iPhone \u2014 MEGA REACTION! (WWDC 2021)",
"description": "\ud83d\udd25 NO ADS + bonus content! CuriosityStream & Nebula for less than $15 a YEAR! https://curiositystream.com/reneritchie/\n\nApple has just announced iOS 15 for the iPhone and I'm watching along and give you my live analysis on all the new features and functionality, including FaceTime, Messages, Keys, Maps, SharePlay, Safari, Photos, and more!\n\n\ud83d\udd14 SUBSCRIBE https://www.youtube.com/reneritchie?sub_confirmation=1\n\n\ud83d\udda5 New Apple Products for 2021:\nhttps://www.youtube.com/playlist?list=PL3XJJi5sAjD1NQJsw9AWgBY2dzOWVpNWo\n\n\ud83d\udcbb Apple Silicon Macs (M1): \nhttps://www.youtube.com/playlist?list=PL3XJJi5sAjD1sCicSKd0irf5TnQ1KJvPm\n\n\ud83d\udcf1 iPhone 13 Coverage:\nhttps://www.youtube.com/playlist?list=PL3XJJi5sAjD2Os17f8JOjnAB47AY-Xmx2\n\n\ud83d\udd17 LINKS\n\n\ud83d\ude4f PATREON THANK YOU!\n\nGet access to exclusive Discord, previews, even your name in this description or credits! https://www.patreon.com/reneritchie \n\nJacob Uribe, John Malkin, Ryan Parman, Roy Burns, Henk van Ess, Paco Arango, Rich Stakounis, Chad Potts, Daniel Pinto, Rod Gray, Daniel Z Wilkerson, Daniel Pasco, Jeffrey David Marraccini, Steven Kaplan, Mark Lussier, Martin Perry, Christopher Wiggins, Dude, Jon Wheeler, Josef, Frederick Lakes Jr., Steven Perry, Michael Dreves, Sam Fingold, Sven Jasper, Kyle Giglio\n\n\ud83c\udf4e\ud83c\udf99 APPLE TALK PODCAST\n\nApple: https://podcasts.apple.com/ca/podcast/apple-talk/id1532933019?i=1000492160142\n\nRSS: https://rss.art19.com/apple-talk\nYouTube: https://www.youtube.com/channel/UCrunioydAXI6z5yuJIHk-0Q/\n\nNEBULA subscribers get a bonus topic each week:\n\nAudio: https://watchnebula.com/apple-talk-podcast\nVideo: https://watchnebula.com/apple-talk\n\nDISCLAIMER\n\nThis channel does not produce sponsored or paid reviews. Companies occasionally make sample products available to facilitate reviews but provide no payment and get no editorial input, content approval, or advanced previews of the reviews. They see them for the first time when you do. \n\nLinks may contain referrals for affiliate programs that provide this channel with a tiny commission should you make a purchase. They likewise receive zero editorial input or consideration.\n\n\ud83d\udcf7 Some video and imagery supplied by Getty Images\n\ud83c\udfb8 Some music supplied by Epidemic\n\nMORE\n\n\u2b50\ufe0f Nebula: https://watchnebula.com/reneritchie\n\ud83d\udc26 Twitter: https://twitter.com/reneritchie\n\ud83d\udcf8 Instagram: https://instagram.com/reneritchie\n\ud83c\udf0e Web: https://www.reneritchie.net\n\ud83c\udf4e Podcasts: http://apple.co/reneritchie\n\ud83c\udf25 Overcast: https://overcast.fm/p1644160-NUVafv\n\ud83d\udc56 Pocket Cast: https://pca.st/reneritchie\n\nThanks for watching, see you next video!"
},
"defaultAudioLanguage": "en"
}
},
{
"kind": "youtube#video",
"etag": "hSSg2dqM3lZg9rBDk8TrmnybKBA",
"id": "lfWxMg5SOck",
"snippet": {
"publishedAt": "2021-05-28T18:20:01Z",
"channelId": "UCfw2hvuj40AChU7n-N-PRHA",
"title": "Why Apple Products Come With Stickers",
"description": "Whether you buy an iPhone, MacBook, or iMac, you\u2019ll find that they come with Apple stickers. And this has caused people to wonder why. Which is what I\u2019ll explain in this video.",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/lfWxMg5SOck/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/lfWxMg5SOck/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/lfWxMg5SOck/hqdefault.jpg",
"width": 480,
"height": 360
},
"standard": {
"url": "https://i.ytimg.com/vi/lfWxMg5SOck/sddefault.jpg",
"width": 640,
"height": 480
},
"maxres": {
"url": "https://i.ytimg.com/vi/lfWxMg5SOck/maxresdefault.jpg",
"width": 1280,
"height": 720
}
},
"channelTitle": "Apple Explained",
"tags": [
"Why do Apple give you apple stickers?",
"How do I get apple stickers?",
"What is the white Apple sticker for?",
"Where can I use Apple stickers?",
"history of apple",
"history of the iPhone"
],
"categoryId": "28",
"liveBroadcastContent": "none",
"defaultLanguage": "en",
"localized": {
"title": "Why Apple Products Come With Stickers",
"description": "Whether you buy an iPhone, MacBook, or iMac, you\u2019ll find that they come with Apple stickers. And this has caused people to wonder why. Which is what I\u2019ll explain in this video."
},
"defaultAudioLanguage": "en"
}
},
{
"kind": "youtube#video",
"etag": "HPeRcI_zuiw6k4zWPK36N4JPAfs",
"id": "DsSt2sd-f-c",
"snippet": {
"publishedAt": "2021-05-25T21:00:03Z",
"channelId": "UCZaT_X_mc0BI-djXOlfhqWQ",
"title": "Oklahoma Just Made It Easier to Run Over Protesters",
"description": "A new law in Oklahoma will punish protestors who obstruct street traffic or cars with up to a $5,000 fine and possible jail time. The law also protects drivers who kill or injure protestors while \u201cfleeing from a riot\" if they believe they were in danger. VICE News goes to Oklahoma to find out how this law could make protesting a lot more dangerous.\n\r\nSubscribe to VICE News here: http://bit.ly/Subscribe-to-VICE-News\r\n\r\nCheck out VICE News for more: http://vicenews.com\r\n\r\nFollow VICE News here:\r\nFacebook: https://www.facebook.com/vicenews\r\nTwitter: https://twitter.com/vicenews\r\nTumblr: http://vicenews.tumblr.com/\r\nInstagram: http://instagram.com/vicenews\r\nMore videos from the VICE network: https://www.fb.com/vicevideo\r\n\r\n#VICENews #News",
"thumbnails": {
"default": {
"url": "https://i.ytimg.com/vi/DsSt2sd-f-c/default.jpg",
"width": 120,
"height": 90
},
"medium": {
"url": "https://i.ytimg.com/vi/DsSt2sd-f-c/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
"url": "https://i.ytimg.com/vi/DsSt2sd-f-c/hqdefault.jpg",
"width": 480,
"height": 360
},
"standard": {
"url": "https://i.ytimg.com/vi/DsSt2sd-f-c/sddefault.jpg",
"width": 640,
"height": 480
},
"maxres": {
"url": "https://i.ytimg.com/vi/DsSt2sd-f-c/maxresdefault.jpg",
"width": 1280,
"height": 720
}