-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathhighlight_test_release.jsonl
1542 lines (1542 loc) · 200 KB
/
highlight_test_release.jsonl
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
{"qid": 3158, "query": "A video covering hill and water from a boat", "duration": 150, "vid": "_6hnl_BrFvs_360.0_510.0"}
{"qid": 7920, "query": "Woman talks to the camera out the window of a car.", "duration": 150, "vid": "_6hnl_BrFvs_60.0_210.0"}
{"qid": 8039, "query": "Vlogger walks around a large hotel pool.", "duration": 150, "vid": "_6hnl_BrFvs_210.0_360.0"}
{"qid": 9320, "query": "A woman is talking by phone from Haiti", "duration": 150, "vid": "wFVkOVSNrEU_360.0_510.0"}
{"qid": 9467, "query": "Police stand in a group together.", "duration": 142, "vid": "mpBDaqeaJIQ_60.0_210.0"}
{"qid": 9732, "query": "Woman with patterned top talks directly to camera.", "duration": 150, "vid": "Qbt79MLVBG0_60.0_210.0"}
{"qid": 9738, "query": "Computer scrolling through a law while a woman talks about it to the side.", "duration": 150, "vid": "Qbt79MLVBG0_210.0_360.0"}
{"qid": 9822, "query": "Woman speaks directly to camera with her instagram handle on the top.", "duration": 150, "vid": "Qbt79MLVBG0_360.0_510.0"}
{"qid": 998, "query": "Video game toys are on display.", "duration": 150, "vid": "xtmc4rgoxU4_60.0_210.0"}
{"qid": 4665, "query": "Couple enjoy there trip in Tokyo sharing some awesome pictures", "duration": 150, "vid": "xtmc4rgoxU4_360.0_510.0"}
{"qid": 5471, "query": "A couple are on the plane and showing their face, food as well as inside the plane", "duration": 150, "vid": "xtmc4rgoxU4_210.0_360.0"}
{"qid": 8999, "query": "Man and woman wait for a train together.", "duration": 150, "vid": "xtmc4rgoxU4_660.0_810.0"}
{"qid": 797, "query": "Drone footage of ancient structures from above.", "duration": 150, "vid": "u-UA8t2EVpA_210.0_360.0"}
{"qid": 2079, "query": "Two men are discussing Ireland and examples are shown.", "duration": 150, "vid": "u-UA8t2EVpA_60.0_210.0"}
{"qid": 5886, "query": "Two men have a conversation on a couch.", "duration": 150, "vid": "u-UA8t2EVpA_360.0_510.0"}
{"qid": 9241, "query": "A weatherman in a white shirt and gray pants stands in front of a large blue streak on the map and is pointing out different areas.", "duration": 150, "vid": "RLClUPuho6A_210.0_360.0"}
{"qid": 1023, "query": "A woman orders street food and explains what the food is.", "duration": 150, "vid": "-OmUBsxPguE_60.0_210.0"}
{"qid": 4204, "query": "Asian woman vlogs while eating dinner.", "duration": 150, "vid": "-OmUBsxPguE_360.0_510.0"}
{"qid": 4558, "query": "A lady tasting different street foods", "duration": 150, "vid": "-OmUBsxPguE_210.0_360.0"}
{"qid": 1978, "query": "A young man pretends to do chin ups at the gym for comedy value before jumping in a cold bath.", "duration": 150, "vid": "a13cXTeCius_210.0_360.0"}
{"qid": 2319, "query": "A guy doing a room tour immediately after checked into the room", "duration": 150, "vid": "a13cXTeCius_60.0_210.0"}
{"qid": 8226, "query": "Group of people are swimming in a pool.", "duration": 150, "vid": "a13cXTeCius_360.0_510.0"}
{"qid": 3895, "query": "Woman in red top ignores the salad in front of her.", "duration": 150, "vid": "iJJprA7tnLA_210.0_360.0"}
{"qid": 4935, "query": "A woman raising her hand while talking in front of her salad", "duration": 150, "vid": "iJJprA7tnLA_60.0_210.0"}
{"qid": 6094, "query": "Woman in black coat walks outside.", "duration": 150, "vid": "iJJprA7tnLA_360.0_510.0"}
{"qid": 8334, "query": "a woman addresses the camera directly", "duration": 144, "vid": "iJJprA7tnLA_510.0_660.0"}
{"qid": 3452, "query": "Man and woman have a conversation superimposed in front of their hotel.", "duration": 150, "vid": "ExOC3jFZKAo_360.0_510.0"}
{"qid": 4739, "query": "Elephants and other animals are walking together across a golden plain.", "duration": 150, "vid": "ExOC3jFZKAo_210.0_360.0"}
{"qid": 5745, "query": "A man is walking in the culture center and recording the place.", "duration": 150, "vid": "ExOC3jFZKAo_60.0_210.0"}
{"qid": 893, "query": "Water flows down a rather wide river and off a small waterfall.", "duration": 150, "vid": "OIv_Nd84bK4_60.0_210.0"}
{"qid": 3094, "query": "A guy filming the inside of an art store.", "duration": 150, "vid": "OIv_Nd84bK4_210.0_360.0"}
{"qid": 3410, "query": "A girl showing and tasting a fish platter with fries", "duration": 150, "vid": "OIv_Nd84bK4_360.0_510.0"}
{"qid": 600, "query": "A woman visits a busy city at night and then goes to a shopping centre.", "duration": 150, "vid": "hxdrPdD8nnA_60.0_210.0"}
{"qid": 4579, "query": "A woman vlogs about her flight with a friend.", "duration": 150, "vid": "hxdrPdD8nnA_210.0_360.0"}
{"qid": 6385, "query": "A group of kids smile and laugh and talk to the vloggers.", "duration": 150, "vid": "hxdrPdD8nnA_360.0_510.0"}
{"qid": 261, "query": "Woman holds food and drink in the car.", "duration": 150, "vid": "Zhx9Ki9bUkE_60.0_210.0"}
{"qid": 1688, "query": "A girl speaking from her car", "duration": 150, "vid": "Zhx9Ki9bUkE_360.0_510.0"}
{"qid": 2734, "query": "A girl's selfie video from her bedroom", "duration": 150, "vid": "Zhx9Ki9bUkE_210.0_360.0"}
{"qid": 8305, "query": "Woman wearing sunglasses sits in a parked car.", "duration": 150, "vid": "Zhx9Ki9bUkE_510.0_660.0"}
{"qid": 208, "query": "Two young women walk out in the cool Florida sunshine to get some super thick French toast", "duration": 150, "vid": "xDt8qY4uhtk_60.0_210.0"}
{"qid": 3827, "query": "A group of friends is playing a board game in the living room.", "duration": 150, "vid": "xDt8qY4uhtk_360.0_510.0"}
{"qid": 6217, "query": "A girl is showing a new bag that she just got.", "duration": 150, "vid": "xDt8qY4uhtk_210.0_360.0"}
{"qid": 3116, "query": "A father explains the need for all Indians to stick together to overcome the pandemic", "duration": 150, "vid": "yPyNZtMGZTk_360.0_510.0"}
{"qid": 4663, "query": "Woman raising her hands and talking to the camera", "duration": 150, "vid": "yPyNZtMGZTk_60.0_210.0"}
{"qid": 5930, "query": "Woman monologues in front of a decorated wall.", "duration": 150, "vid": "yPyNZtMGZTk_210.0_360.0"}
{"qid": 1507, "query": "The view from out the driver's window of a car in motion.", "duration": 150, "vid": "1FQbzjvqr1w_360.0_510.0"}
{"qid": 2715, "query": "The passenger side view of the car travelling down a forest road.", "duration": 150, "vid": "1FQbzjvqr1w_210.0_360.0"}
{"qid": 5143, "query": "A woman applies eye liner and lipstick and brushes her hair.", "duration": 150, "vid": "1FQbzjvqr1w_60.0_210.0"}
{"qid": 6994, "query": "Mom helps son climb a stone wall.", "duration": 150, "vid": "1FQbzjvqr1w_660.0_810.0"}
{"qid": 8404, "query": "A mother and her son sit outside and enjoy a meal.", "duration": 150, "vid": "1FQbzjvqr1w_510.0_660.0"}
{"qid": 678, "query": "Man and woman have a conversation in matching yellow tops.", "duration": 150, "vid": "pVFMS1p2-0Q_210.0_360.0"}
{"qid": 2190, "query": "A family having a causal chat inside a lift before their way outside", "duration": 150, "vid": "pVFMS1p2-0Q_60.0_210.0"}
{"qid": 7899, "query": "Man and woman wear matching yellow shirts in the car.", "duration": 150, "vid": "pVFMS1p2-0Q_360.0_510.0"}
{"qid": 154, "query": "The chef makes french toast.", "duration": 150, "vid": "rsn9u3HhgXs_60.0_210.0"}
{"qid": 3853, "query": "Overhead shots of a chef cooking curry.", "duration": 150, "vid": "rsn9u3HhgXs_360.0_510.0"}
{"qid": 4860, "query": "Overhead shot of spices being added to stir fry in a saute pan.", "duration": 150, "vid": "rsn9u3HhgXs_210.0_360.0"}
{"qid": 9368, "query": "A man in a black sweater is talking to a man in a white sweater.", "duration": 150, "vid": "S8ZUWshc1C4_360.0_510.0"}
{"qid": 9430, "query": "Police van entering and also Images of police on the protesting site", "duration": 150, "vid": "S8ZUWshc1C4_210.0_360.0"}
{"qid": 9465, "query": "Man briefing about BLM protestor", "duration": 150, "vid": "S8ZUWshc1C4_60.0_210.0"}
{"qid": 493, "query": "A woman is giving a tour of a restaurant dining area decorated with many red elements.", "duration": 150, "vid": "AIYfAAX7XL0_210.0_360.0"}
{"qid": 5259, "query": "A woman in a denim jacket waves her friend along and they go through a wet tunnel area.", "duration": 150, "vid": "AIYfAAX7XL0_60.0_210.0"}
{"qid": 2168, "query": "Man in black jacket stands and talks to people in a parking lot.", "duration": 150, "vid": "6xQqXvwyLbg_360.0_510.0"}
{"qid": 4400, "query": "A man stops at a convenient store and buys the passengers in the backseat some items.", "duration": 150, "vid": "6xQqXvwyLbg_210.0_360.0"}
{"qid": 6438, "query": "A man is adjusting his seat and entering the car.", "duration": 150, "vid": "6xQqXvwyLbg_60.0_210.0"}
{"qid": 679, "query": "A woman sitting in front of a mirror showing and using her face beauty products", "duration": 150, "vid": "mGrtBavobAU_210.0_360.0"}
{"qid": 2171, "query": "One day at the beach", "duration": 150, "vid": "mGrtBavobAU_360.0_510.0"}
{"qid": 6837, "query": "A girl in a large yellow sunhat is walking down the street with her friend.", "duration": 150, "vid": "mGrtBavobAU_60.0_210.0"}
{"qid": 2413, "query": "A car sits in a storage facility with the trunk open as it gets loaded with items.", "duration": 150, "vid": "ICSrUsHxilM_210.0_360.0"}
{"qid": 2886, "query": "A girl stacking a shelf with the cloths from suitcases", "duration": 134, "vid": "ICSrUsHxilM_360.0_510.0"}
{"qid": 3861, "query": "Woman is wearing a blue sweatshirt in the car.", "duration": 150, "vid": "ICSrUsHxilM_60.0_210.0"}
{"qid": 2184, "query": "A lady enjoying with the comfort of a bed in her room", "duration": 150, "vid": "ISVl0Xz2iuQ_210.0_360.0"}
{"qid": 2389, "query": "A lady enjoying stunning views of greeneries and a water falls from a bus window", "duration": 150, "vid": "ISVl0Xz2iuQ_360.0_510.0"}
{"qid": 4639, "query": "The woman in a white shirt sticks her head out of the car window to enjoy the views.", "duration": 150, "vid": "ISVl0Xz2iuQ_60.0_210.0"}
{"qid": 2120, "query": "A couple trying a yogurt like drink which is not salty", "duration": 150, "vid": "N2ab7XwTNpg_210.0_360.0"}
{"qid": 3442, "query": "A couple showing the market they are in with many food stands around them.", "duration": 150, "vid": "N2ab7XwTNpg_360.0_510.0"}
{"qid": 4484, "query": "Woman wears checked tank top in front of white columns.", "duration": 150, "vid": "N2ab7XwTNpg_60.0_210.0"}
{"qid": 1426, "query": "Mexican women making yummy meal for family", "duration": 150, "vid": "eLwBKEpGTxE_360.0_510.0"}
{"qid": 3856, "query": "A family is eating a meal together at a Burger King where the burgers are wrapped in foil.", "duration": 150, "vid": "eLwBKEpGTxE_210.0_360.0"}
{"qid": 6186, "query": "A video showing a typical family day inside the mall", "duration": 150, "vid": "eLwBKEpGTxE_60.0_210.0"}
{"qid": 8288, "query": "A man is pointing out his pair of black shoes and his gray pants.", "duration": 150, "vid": "eLwBKEpGTxE_510.0_660.0"}
{"qid": 6706, "query": "A house is being shown with two little pictures on the side.", "duration": 150, "vid": "GlxQ8hZDT6w_60.0_210.0"}
{"qid": 3281, "query": "A woman in a white top is talking behind a whitish curtain.", "duration": 150, "vid": "ccMqbhacbpY_360.0_510.0"}
{"qid": 4599, "query": "A group of friends watching a large water fountain show outside at night.", "duration": 150, "vid": "ccMqbhacbpY_210.0_360.0"}
{"qid": 8208, "query": "Vlogger shows view of hotel room located in the middle of a lot of buildings.", "duration": 150, "vid": "ccMqbhacbpY_60.0_210.0"}
{"qid": 9067, "query": "people ride on an all terrain vehicle", "duration": 150, "vid": "ccMqbhacbpY_660.0_810.0"}
{"qid": 874, "query": "Group of people dance on stage together.", "duration": 150, "vid": "pKGH1tyyCcY_210.0_360.0"}
{"qid": 7590, "query": "Man in white hoodie is driving a moving SUV.", "duration": 150, "vid": "pKGH1tyyCcY_60.0_210.0"}
{"qid": 8064, "query": "Dash cam view of a car driving through the city at night.", "duration": 150, "vid": "pKGH1tyyCcY_360.0_510.0"}
{"qid": 719, "query": "Scenes from a view from a plane are shown.", "duration": 150, "vid": "jsoKOrYSpm0_210.0_360.0"}
{"qid": 4518, "query": "Tourist sharing metro station footage", "duration": 150, "vid": "jsoKOrYSpm0_360.0_510.0"}
{"qid": 5691, "query": "People walk around the airport lobby.", "duration": 150, "vid": "jsoKOrYSpm0_60.0_210.0"}
{"qid": 2122, "query": "a man wearing black shirt boards a plane, eats airplane food then arrive at destination with girl green shirt and backpack", "duration": 150, "vid": "7exVohbA524_210.0_360.0"}
{"qid": 3162, "query": "A man describes Maybank and we are shown different coloured bank notes.", "duration": 150, "vid": "7exVohbA524_360.0_510.0"}
{"qid": 8096, "query": "Bearded man holds out arm to hold camera in the hallway.", "duration": 150, "vid": "7exVohbA524_60.0_210.0"}
{"qid": 392, "query": "Woman has her hair up and wearing a black hoodie.", "duration": 150, "vid": "9erWlhsParM_60.0_210.0"}
{"qid": 2686, "query": "Woman in black writes in a binder.", "duration": 150, "vid": "9erWlhsParM_210.0_360.0"}
{"qid": 6265, "query": "The bookcase is filled with books.", "duration": 150, "vid": "9erWlhsParM_360.0_510.0"}
{"qid": 7327, "query": "Woman in blue shirt uses hand weights while standing", "duration": 150, "vid": "9erWlhsParM_660.0_810.0"}
{"qid": 7582, "query": "A woman in a black shirt is sitting in front of an open door speaking about a challenge.", "duration": 150, "vid": "9erWlhsParM_510.0_660.0"}
{"qid": 1844, "query": "My visit to a local market", "duration": 150, "vid": "xGWnyxWo4sk_60.0_210.0"}
{"qid": 2273, "query": "A beautiful day out with my friends and family", "duration": 150, "vid": "xGWnyxWo4sk_210.0_360.0"}
{"qid": 1279, "query": "A baby boy is in a white crib.", "duration": 150, "vid": "xird09yJOJ4_210.0_360.0"}
{"qid": 4125, "query": "Woman removing eye makeup with a cloth", "duration": 150, "vid": "xird09yJOJ4_360.0_510.0"}
{"qid": 4835, "query": "A woman taking out carryout food a plastic bag", "duration": 150, "vid": "xird09yJOJ4_60.0_210.0"}
{"qid": 7052, "query": "Man is carrying a baby to their chest.", "duration": 150, "vid": "xird09yJOJ4_510.0_660.0"}
{"qid": 9635, "query": "The defense minster gives a statement on television.", "duration": 150, "vid": "vK4c5-_A9vs_360.0_510.0"}
{"qid": 9648, "query": "A striped two tone cat wearing a red tie comes into view.", "duration": 150, "vid": "vK4c5-_A9vs_60.0_210.0"}
{"qid": 9923, "query": "Donald Trump speaks at a rally.", "duration": 150, "vid": "vK4c5-_A9vs_210.0_360.0"}
{"qid": 6430, "query": "A blonde woman is talking in front of the camera in Greece with her friends", "duration": 150, "vid": "rUycc1YD41Q_60.0_210.0"}
{"qid": 6534, "query": "Two blonde women are sunbathing in bikinis beside the pool.", "duration": 150, "vid": "rUycc1YD41Q_210.0_360.0"}
{"qid": 7762, "query": "Woman in white moves all around the bed.", "duration": 150, "vid": "rUycc1YD41Q_360.0_510.0"}
{"qid": 3412, "query": "Man gives a presentation next to a large rock by the ocean.", "duration": 150, "vid": "BwzSUld6bS8_60.0_210.0"}
{"qid": 4430, "query": "A man with a white top stands in front of a arched bridge.", "duration": 150, "vid": "BwzSUld6bS8_360.0_510.0"}
{"qid": 6736, "query": "A guy sits cross legged on the beach and talks.", "duration": 150, "vid": "BwzSUld6bS8_210.0_360.0"}
{"qid": 3902, "query": "Vlogger prepares a salad on a plate.", "duration": 150, "vid": "3waJEHGNYug_210.0_360.0"}
{"qid": 5208, "query": "Vlogger shows us her McDonalds food.", "duration": 150, "vid": "3waJEHGNYug_60.0_210.0"}
{"qid": 6135, "query": "A woman is cleaning her face in an irregularly shaped mirror.", "duration": 120, "vid": "3waJEHGNYug_360.0_510.0"}
{"qid": 5630, "query": "Asian teen girls eat a bowl of noodles.", "duration": 150, "vid": "aIGR9knS1B0_210.0_360.0"}
{"qid": 6869, "query": "People are playing on the beach and feeding birds in the area.", "duration": 150, "vid": "aIGR9knS1B0_60.0_210.0"}
{"qid": 7662, "query": "Dogs are interacting in groups.", "duration": 150, "vid": "aIGR9knS1B0_360.0_510.0"}
{"qid": 9191, "query": "A weatherman in a grey suit with stubble on his face stands in front of a pink and purple graphic while he is explaining it.", "duration": 150, "vid": "1_HvY7N0XVA_360.0_510.0"}
{"qid": 2438, "query": "Guy from India giving tips to make vlog", "duration": 150, "vid": "LwHau3lqvtg_360.0_510.0"}
{"qid": 3867, "query": "A man wearing a red hat is talking in a room with bamboo in the roof.", "duration": 150, "vid": "LwHau3lqvtg_60.0_210.0"}
{"qid": 5997, "query": "Man monologues wearing a red cap.", "duration": 150, "vid": "LwHau3lqvtg_210.0_360.0"}
{"qid": 2068, "query": "The front dash view when the car is driving.", "duration": 150, "vid": "plsiz20Q_ho_360.0_510.0"}
{"qid": 4581, "query": "Woman in the front seat has a conversation with her friends in the back.", "duration": 150, "vid": "plsiz20Q_ho_210.0_360.0"}
{"qid": 6402, "query": "A couple joke around as they try to fit their luggage into a car", "duration": 150, "vid": "plsiz20Q_ho_60.0_210.0"}
{"qid": 9104, "query": "a man and woman walk through a garden", "duration": 150, "vid": "plsiz20Q_ho_660.0_810.0"}
{"qid": 9750, "query": "Man sits down at a panel while everyone is clapping then he talks.", "duration": 150, "vid": "kBAWeVHNlBo_360.0_510.0"}
{"qid": 10136, "query": "George Bush starts to cry during his speach.", "duration": 150, "vid": "kBAWeVHNlBo_60.0_210.0"}
{"qid": 10218, "query": "A politician mentions \"baseball\" when answering a power grab question", "duration": 150, "vid": "kBAWeVHNlBo_210.0_360.0"}
{"qid": 9213, "query": "Ruins of an area are smoldering after a fire and emergency vehicles are driving down the road to lend aid.", "duration": 150, "vid": "WZr3CPCe8BI_60.0_210.0"}
{"qid": 221, "query": "Tourist sharing some beautiful street view", "duration": 150, "vid": "CyAyEewgdEc_360.0_510.0"}
{"qid": 2420, "query": "A man in a blue polo talks beside a woman in a blue head covering.", "duration": 150, "vid": "CyAyEewgdEc_60.0_210.0"}
{"qid": 4126, "query": "Man and woman get food and drink in a restaurant.", "duration": 150, "vid": "CyAyEewgdEc_210.0_360.0"}
{"qid": 7351, "query": "Man walks through the men's clothes section.", "duration": 150, "vid": "CyAyEewgdEc_510.0_660.0"}
{"qid": 7563, "query": "Dash cam views of car driving down narrow roads.", "duration": 150, "vid": "CyAyEewgdEc_660.0_810.0"}
{"qid": 1694, "query": "A guy feeding water for the dogs from a water bottle", "duration": 150, "vid": "l5cTU4dhUGY_360.0_510.0"}
{"qid": 3744, "query": "Man hunting for rabbit with his dogs", "duration": 150, "vid": "l5cTU4dhUGY_210.0_360.0"}
{"qid": 3885, "query": "A man is walking several dogs through a desert path.", "duration": 150, "vid": "l5cTU4dhUGY_60.0_210.0"}
{"qid": 7561, "query": "Man with blue doesn't eat the breakfast in front of him.", "duration": 150, "vid": "l5cTU4dhUGY_510.0_660.0"}
{"qid": 8886, "query": "A guy with grey jacket is taking his vitamins in the restaurant sitting by the table.", "duration": 150, "vid": "l5cTU4dhUGY_660.0_810.0"}
{"qid": 138, "query": "White horse is rolling around in the hay.", "duration": 150, "vid": "ZudB4C8rtQU_60.0_210.0"}
{"qid": 1728, "query": "Vet takes care of the legs of the horse.", "duration": 150, "vid": "ZudB4C8rtQU_360.0_510.0"}
{"qid": 4966, "query": "A woman is preparing bedding for a horse.", "duration": 150, "vid": "ZudB4C8rtQU_210.0_360.0"}
{"qid": 7386, "query": "Children are riding on little horses in a type of bouncy house.", "duration": 150, "vid": "ZudB4C8rtQU_510.0_660.0"}
{"qid": 3052, "query": "Two women in sweatshirts eat dinner together.", "duration": 134, "vid": "O2FF_trMWS4_210.0_360.0"}
{"qid": 3160, "query": "Woman talks to camera wearing a black mask and her hood up.", "duration": 150, "vid": "O2FF_trMWS4_60.0_210.0"}
{"qid": 1701, "query": "Group of Indian boys having fun in religious festival", "duration": 150, "vid": "yvx5SmeFdjM_360.0_510.0"}
{"qid": 4918, "query": "Three young men walking on the street at night", "duration": 150, "vid": "yvx5SmeFdjM_60.0_210.0"}
{"qid": 6284, "query": "A building flashes it's many lights.", "duration": 150, "vid": "yvx5SmeFdjM_210.0_360.0"}
{"qid": 7457, "query": "A clay pot is being heated up on a brass pan using tongs to hold it.", "duration": 150, "vid": "yvx5SmeFdjM_510.0_660.0"}
{"qid": 1193, "query": "Two women and a tour guide look at some craft items and jewellery on a table.", "duration": 150, "vid": "7YEQ0iDR4sw_360.0_510.0"}
{"qid": 4482, "query": "Vlogger does shopping in a street bazaar.", "duration": 150, "vid": "7YEQ0iDR4sw_60.0_210.0"}
{"qid": 5956, "query": "Man stands outside his gray SUV.", "duration": 150, "vid": "7YEQ0iDR4sw_210.0_360.0"}
{"qid": 521, "query": "A girl is organizing her wardrobe", "duration": 150, "vid": "DOET406zX8A_210.0_360.0"}
{"qid": 3757, "query": "Folded clothes are laid out on the bed and a man in a robe is getting ready near them.", "duration": 150, "vid": "DOET406zX8A_60.0_210.0"}
{"qid": 5287, "query": "Woman moves glass jars around.", "duration": 150, "vid": "DOET406zX8A_360.0_510.0"}
{"qid": 8361, "query": "somebody is at a desk writing in a note pad.", "duration": 150, "vid": "DOET406zX8A_510.0_660.0"}
{"qid": 8596, "query": "A girl is designing new year and birthday cards", "duration": 150, "vid": "DOET406zX8A_660.0_810.0"}
{"qid": 2328, "query": "Young woman stands between two elders wearing feathers.", "duration": 150, "vid": "MOThH7E8fzc_360.0_510.0"}
{"qid": 5432, "query": "Africans sing and dance in their village.", "duration": 150, "vid": "MOThH7E8fzc_60.0_210.0"}
{"qid": 6344, "query": "A group of natives dance in a circle while holding hands.", "duration": 150, "vid": "MOThH7E8fzc_210.0_360.0"}
{"qid": 5579, "query": "Three friends are spending time together and taking pictures.", "duration": 150, "vid": "ooJUCHRH0OM_60.0_210.0"}
{"qid": 7786, "query": "Woman in blue top sits on a bench filled with people.", "duration": 150, "vid": "ooJUCHRH0OM_360.0_510.0"}
{"qid": 7951, "query": "Woman wears sunglasses while talking in the car.", "duration": 150, "vid": "ooJUCHRH0OM_210.0_360.0"}
{"qid": 3268, "query": "Different parts of a large hindu temple are being shown.", "duration": 150, "vid": "6t9xyE7kABg_210.0_360.0"}
{"qid": 4272, "query": "Food shown from different restaurants.", "duration": 150, "vid": "6t9xyE7kABg_60.0_210.0"}
{"qid": 7702, "query": "Woman walks by a building wearing white sunglasses.", "duration": 150, "vid": "6t9xyE7kABg_360.0_510.0"}
{"qid": 464, "query": "Mom and girl eat birthday cake.", "duration": 150, "vid": "HsjGbDcVXn4_60.0_210.0"}
{"qid": 1381, "query": "A woman and a little girl being filmed while having dinner", "duration": 150, "vid": "HsjGbDcVXn4_210.0_360.0"}
{"qid": 3008, "query": "A woman in blue coat sits and waves to the camera as a man in a lab coat takes a sample.", "duration": 150, "vid": "0kAcEdn-C1M_360.0_510.0"}
{"qid": 3507, "query": "A woman talking to the camera about her plans and her sweaty face.", "duration": 150, "vid": "0kAcEdn-C1M_60.0_210.0"}
{"qid": 4715, "query": "Girl leaving for tour sharing videos from airport", "duration": 150, "vid": "0kAcEdn-C1M_210.0_360.0"}
{"qid": 3367, "query": "A girl talking from a bus window on a running bus", "duration": 150, "vid": "nkJy_9F8nS4_210.0_360.0"}
{"qid": 4682, "query": "A woman in a green shawl walking along a spiral staircase and covering her eyes from the sun.", "duration": 150, "vid": "nkJy_9F8nS4_360.0_510.0"}
{"qid": 6301, "query": "A young woman speaks about her touring of the country of Pakistan.", "duration": 150, "vid": "nkJy_9F8nS4_60.0_210.0"}
{"qid": 9757, "query": "A rental sister guides the reporter to where her client lives", "duration": 150, "vid": "q9IRmUEsz6g_60.0_210.0"}
{"qid": 10073, "query": "A woman in an orange top is checking in at a glass window.", "duration": 150, "vid": "q9IRmUEsz6g_360.0_510.0"}
{"qid": 10074, "query": "Two men walk down the stairs and into a building.", "duration": 150, "vid": "q9IRmUEsz6g_210.0_360.0"}
{"qid": 358, "query": "A woman is painting with her fingers on the tiled floor.", "duration": 150, "vid": "s92vs3XgNPE_60.0_210.0"}
{"qid": 2584, "query": "A woman draws a flower on the floor and puts candles next to them.", "duration": 150, "vid": "s92vs3XgNPE_210.0_360.0"}
{"qid": 969, "query": "A man speaks while standing in front of a TV.", "duration": 150, "vid": "Jhr9DdFk0cI_360.0_510.0"}
{"qid": 3358, "query": "Siri Lankan family having fun during trip and sharing reviews", "duration": 150, "vid": "Jhr9DdFk0cI_60.0_210.0"}
{"qid": 5569, "query": "Woman holds up a metal cup to her mouth.", "duration": 150, "vid": "Jhr9DdFk0cI_210.0_360.0"}
{"qid": 4751, "query": "A man with long hair moving his hand and pointing out a location while talking", "duration": 150, "vid": "s7MesIm6VLw_360.0_510.0"}
{"qid": 7974, "query": "Men are asleep on the bed together under red lights.", "duration": 150, "vid": "s7MesIm6VLw_60.0_210.0"}
{"qid": 7991, "query": "Two men are having a conversation in a car.", "duration": 150, "vid": "s7MesIm6VLw_210.0_360.0"}
{"qid": 3526, "query": "A long shot capturing a cruise and water", "duration": 150, "vid": "Bjl5AomF9BY_210.0_360.0"}
{"qid": 5696, "query": "A woman waves to herself in a mirror.", "duration": 150, "vid": "Bjl5AomF9BY_60.0_210.0"}
{"qid": 1013, "query": "Man in red jacket rides in a car passenger seat.", "duration": 150, "vid": "DNDMJEnD2oY_210.0_360.0"}
{"qid": 8178, "query": "Man in red top eats a burrito.", "duration": 150, "vid": "DNDMJEnD2oY_60.0_210.0"}
{"qid": 2014, "query": "A man explains what the bus system in malta is like and we see people riding the bus.", "duration": 150, "vid": "TwtZ8oinQck_360.0_510.0"}
{"qid": 4741, "query": "V logger sharing some awesome scenes from Europe", "duration": 150, "vid": "TwtZ8oinQck_60.0_210.0"}
{"qid": 6498, "query": "A video showing around in London", "duration": 150, "vid": "TwtZ8oinQck_210.0_360.0"}
{"qid": 1516, "query": "The person is preparing and eating a peanut butter and jam sandwich and a glass of water.", "duration": 150, "vid": "yQ5wwBumNG8_210.0_360.0"}
{"qid": 4848, "query": "Plain bread is lying on a white plate.", "duration": 150, "vid": "yQ5wwBumNG8_60.0_210.0"}
{"qid": 6271, "query": "Chef constructs a egg dish on a plate.", "duration": 150, "vid": "yQ5wwBumNG8_360.0_510.0"}
{"qid": 8441, "query": "The Chicken wrap is eaten next to the laptop", "duration": 132, "vid": "yQ5wwBumNG8_510.0_660.0"}
{"qid": 1237, "query": "A lady cooking a slow cooked ham with onions", "duration": 150, "vid": "bUa-0ptWL5M_210.0_360.0"}
{"qid": 1416, "query": "A lady talking about her job and her plans for lunch", "duration": 150, "vid": "bUa-0ptWL5M_60.0_210.0"}
{"qid": 3831, "query": "A lady talking and having breakfast", "duration": 150, "vid": "bUa-0ptWL5M_360.0_510.0"}
{"qid": 7521, "query": "Woman makes cards on the table.", "duration": 150, "vid": "bUa-0ptWL5M_510.0_660.0"}
{"qid": 8835, "query": "A woman is preparing the glaze for a ham", "duration": 150, "vid": "bUa-0ptWL5M_660.0_810.0"}
{"qid": 42, "query": "A woman in a purple shirt opens a package and goes through the gifts.", "duration": 150, "vid": "l_VtY7btNRA_210.0_360.0"}
{"qid": 3674, "query": "Woman in blue top sets up a tripod then speaks to it.", "duration": 150, "vid": "l_VtY7btNRA_60.0_210.0"}
{"qid": 6262, "query": "A woman finds to her relief that the video from her radio interview won't be broadcast", "duration": 150, "vid": "l_VtY7btNRA_360.0_510.0"}
{"qid": 8460, "query": "A little girl talks to her mother while strapped into a carseat.", "duration": 150, "vid": "l_VtY7btNRA_510.0_660.0"}
{"qid": 2575, "query": "A guy is giving his opinion of a car while driving the car down the road.", "duration": 150, "vid": "EoojNzIL2cQ_210.0_360.0"}
{"qid": 2701, "query": "A man stands by the side of a car and talks about its features.", "duration": 150, "vid": "EoojNzIL2cQ_60.0_210.0"}
{"qid": 1325, "query": "People are hiking through the wilderness.", "duration": 150, "vid": "5Ib6GnYyw-o_210.0_360.0"}
{"qid": 1771, "query": "The shirtless man and the woman are hiking on a rocky trail.", "duration": 150, "vid": "5Ib6GnYyw-o_360.0_510.0"}
{"qid": 3704, "query": "A couple talking on a parked car", "duration": 150, "vid": "5Ib6GnYyw-o_60.0_210.0"}
{"qid": 8748, "query": "A girl with military top is going undergoing shuttle with her friend.", "duration": 150, "vid": "5Ib6GnYyw-o_510.0_660.0"}
{"qid": 602, "query": "Woman gives a monologue with her drink in front of her.", "duration": 150, "vid": "iJRwe2oCX0E_210.0_360.0"}
{"qid": 4614, "query": "A woman with a black blouse adding sugar to her coffee and mixing it with a spoon.", "duration": 150, "vid": "iJRwe2oCX0E_60.0_210.0"}
{"qid": 7730, "query": "Vlogger looks at items in a clothing store.", "duration": 150, "vid": "iJRwe2oCX0E_360.0_510.0"}
{"qid": 3936, "query": "A man is sitting across from a bed a woman is lying on and making her laugh.", "duration": 150, "vid": "DRTht2xuV-k_210.0_360.0"}
{"qid": 5099, "query": "A man opens a folder and reads different papers.", "duration": 150, "vid": "DRTht2xuV-k_60.0_210.0"}
{"qid": 6263, "query": "A bearded man sits against a wall as he checks his smartphone.", "duration": 150, "vid": "DRTht2xuV-k_360.0_510.0"}
{"qid": 524, "query": "Overhead view of curry in a wok.", "duration": 150, "vid": "Ray65ZMJzNE_210.0_360.0"}
{"qid": 2718, "query": "A woman cooking on a double burner electric stove.", "duration": 150, "vid": "Ray65ZMJzNE_60.0_210.0"}
{"qid": 2752, "query": "A woman is putting a black bag in a jar then puts it away.", "duration": 150, "vid": "Ray65ZMJzNE_360.0_510.0"}
{"qid": 8414, "query": "A girl is cooking Split chickpeas and potato curry", "duration": 150, "vid": "Ray65ZMJzNE_510.0_660.0"}
{"qid": 9346, "query": "A man in a bright green jacket talks into the mic that an interviewer holds to him as they both stand in snow covered streets.", "duration": 144, "vid": "aIVkRdcBqX4_60.0_210.0"}
{"qid": 5417, "query": "A man in sunglasses holds up a piece of fruit and eats it.", "duration": 150, "vid": "ijMTooG4Llk_360.0_510.0"}
{"qid": 5487, "query": "A couple in bicycle helmets are taking a break alongside a road.", "duration": 150, "vid": "ijMTooG4Llk_210.0_360.0"}
{"qid": 6884, "query": "A video showing a couple exploring a beautiful city", "duration": 150, "vid": "ijMTooG4Llk_60.0_210.0"}
{"qid": 908, "query": "Street vendors at a busy fair make pancakes for customers.", "duration": 150, "vid": "CYWXtYzDdqo_210.0_360.0"}
{"qid": 1020, "query": "Group of people are in a parade with orange flags.", "duration": 150, "vid": "CYWXtYzDdqo_60.0_210.0"}
{"qid": 9357, "query": "Weather forecast showing the trajectory of hurricane Delta", "duration": 128, "vid": "Ijcz9y7h2Dw_60.0_210.0"}
{"qid": 2002, "query": "Tourist girl having drink and meal in Vancouver Canada tourist site", "duration": 150, "vid": "OLVgoQEnvqg_210.0_360.0"}
{"qid": 3319, "query": "A blonde woman puts on a helmet then takes it off.", "duration": 150, "vid": "OLVgoQEnvqg_60.0_210.0"}
{"qid": 5969, "query": "Woman shows the food she is eating on the beach.", "duration": 150, "vid": "OLVgoQEnvqg_360.0_510.0"}
{"qid": 201, "query": "Two friends have a conversation on the side of the street.", "duration": 150, "vid": "MxM1yP8cRD4_360.0_510.0"}
{"qid": 1302, "query": "A guy eating a hot food with a chopstick", "duration": 150, "vid": "MxM1yP8cRD4_210.0_360.0"}
{"qid": 5302, "query": "Man puts objects into a bag.", "duration": 150, "vid": "MxM1yP8cRD4_60.0_210.0"}
{"qid": 7247, "query": "Group of men stretch together in a dance studio.", "duration": 150, "vid": "MxM1yP8cRD4_510.0_660.0"}
{"qid": 8539, "query": "An Asian young man cooking some food on the microwave", "duration": 150, "vid": "MxM1yP8cRD4_660.0_810.0"}
{"qid": 3380, "query": "A blonde woman is hanging on the beach under some green umbrellas.", "duration": 150, "vid": "U2Svw1Y9X3E_210.0_360.0"}
{"qid": 4434, "query": "A couple overlooking a pool on the edge beside the ocean.", "duration": 150, "vid": "U2Svw1Y9X3E_60.0_210.0"}
{"qid": 8197, "query": "Man in beret hold out his drink then sips it.", "duration": 150, "vid": "U2Svw1Y9X3E_360.0_510.0"}
{"qid": 9021, "query": "Man lays down on a patio bench.", "duration": 150, "vid": "U2Svw1Y9X3E_660.0_810.0"}
{"qid": 291, "query": "People are swimming underwater in scuba gear.", "duration": 150, "vid": "BlZaRZqMZ84_360.0_510.0"}
{"qid": 2692, "query": "Family having fun and lunch at restaurant", "duration": 150, "vid": "BlZaRZqMZ84_60.0_210.0"}
{"qid": 2710, "query": "A video collection of kids outing", "duration": 150, "vid": "BlZaRZqMZ84_210.0_360.0"}
{"qid": 8324, "query": "Kids are running on the beach in scuba suits.", "duration": 150, "vid": "BlZaRZqMZ84_660.0_810.0"}
{"qid": 8505, "query": "A guy with grey top is using sand to clean his ring", "duration": 150, "vid": "BlZaRZqMZ84_510.0_660.0"}
{"qid": 4768, "query": "Noodles are in a white bowl.", "duration": 150, "vid": "q6GBvs14vtU_210.0_360.0"}
{"qid": 6490, "query": "A woman enters a Bangalore restaurant started by four north Indian guys", "duration": 150, "vid": "q6GBvs14vtU_60.0_210.0"}
{"qid": 6874, "query": "A couple is served two overflowing stainless steel bowls of food on a wooden table.", "duration": 150, "vid": "q6GBvs14vtU_360.0_510.0"}
{"qid": 570, "query": "A door is white surrounded by white walls.", "duration": 150, "vid": "MlXof8hF4ck_210.0_360.0"}
{"qid": 1353, "query": "A man eating his breakfast", "duration": 150, "vid": "MlXof8hF4ck_360.0_510.0"}
{"qid": 2490, "query": "Asian girl making some food using air fryer", "duration": 150, "vid": "MlXof8hF4ck_60.0_210.0"}
{"qid": 7102, "query": "Woman gives a tour of their closet.", "duration": 150, "vid": "MlXof8hF4ck_510.0_660.0"}
{"qid": 7430, "query": "Woman applies makeup to her face.", "duration": 150, "vid": "MlXof8hF4ck_660.0_810.0"}
{"qid": 2664, "query": "Woman sits down in her chair and works are her desk.", "duration": 140, "vid": "NyOx_Dussuo_360.0_510.0"}
{"qid": 2678, "query": "A display of colourful healthy foods on a plate and a girl eating it.", "duration": 150, "vid": "NyOx_Dussuo_210.0_360.0"}
{"qid": 3646, "query": "A woman showing a healthy green smoothie in a bottle and a smaller yellow drink.", "duration": 150, "vid": "NyOx_Dussuo_60.0_210.0"}
{"qid": 2459, "query": "A couple riding down the street together on a motorbike.", "duration": 150, "vid": "-IFlOCAf3M4_60.0_210.0"}
{"qid": 2706, "query": "A lady preparing food plates for lunch", "duration": 150, "vid": "-IFlOCAf3M4_360.0_510.0"}
{"qid": 4822, "query": "A man in a blue vest and glasses is making a type of sandwich.", "duration": 150, "vid": "-IFlOCAf3M4_210.0_360.0"}
{"qid": 8428, "query": "A lady with yellow sari is talking to the girl with red top on.", "duration": 150, "vid": "-IFlOCAf3M4_660.0_810.0"}
{"qid": 8618, "query": "Two women in saris sit on the floor.", "duration": 150, "vid": "-IFlOCAf3M4_510.0_660.0"}
{"qid": 1308, "query": "Woman sits in front of a many photos of Campbells soup.", "duration": 150, "vid": "9_UC5c7LFN4_60.0_210.0"}
{"qid": 1557, "query": "Girl Introducing editing software for vloggers", "duration": 150, "vid": "9_UC5c7LFN4_210.0_360.0"}
{"qid": 4141, "query": "A girl explaining about her video editing techniques", "duration": 150, "vid": "9_UC5c7LFN4_360.0_510.0"}
{"qid": 497, "query": "A man is sharing some tips to be a successful you tuber", "duration": 150, "vid": "5JpHeR2YWIQ_60.0_210.0"}
{"qid": 3685, "query": "A bearded man wearing a hat talks to viewers on how to be a successful Youtuber.", "duration": 150, "vid": "5JpHeR2YWIQ_210.0_360.0"}
{"qid": 5011, "query": "Man in baseball cap monologues against rocks.", "duration": 150, "vid": "5JpHeR2YWIQ_360.0_510.0"}
{"qid": 7132, "query": "End of video still featuring a man in a baseball cap but tells the viewer to sbscribe.", "duration": 134, "vid": "5JpHeR2YWIQ_660.0_810.0"}
{"qid": 8725, "query": "A guy with black cap on is holding his camera and talking", "duration": 150, "vid": "5JpHeR2YWIQ_510.0_660.0"}
{"qid": 9536, "query": "Woman set up for interview with white skyscrapers in the background.", "duration": 150, "vid": "MRkoyixoWPc_210.0_360.0"}
{"qid": 9546, "query": "Workers in hazmat suits work in a fitness center.", "duration": 150, "vid": "MRkoyixoWPc_60.0_210.0"}
{"qid": 9596, "query": "Covid cases and deaths are discussed for India", "duration": 150, "vid": "MRkoyixoWPc_360.0_510.0"}
{"qid": 183, "query": "A large plastic bottle has a white label.", "duration": 150, "vid": "8sWfdCTFW8o_60.0_210.0"}
{"qid": 4954, "query": "A man is coughing and laughing while eating food with chopsticks beside his friend.", "duration": 150, "vid": "8sWfdCTFW8o_360.0_510.0"}
{"qid": 5024, "query": "Restaurant workers bring food to counter and ring it up.", "duration": 150, "vid": "8sWfdCTFW8o_210.0_360.0"}
{"qid": 8745, "query": "A woman is pressing settings on her white and black cube shaped alarm clock.", "duration": 138, "vid": "8sWfdCTFW8o_660.0_810.0"}
{"qid": 8838, "query": "Lady in grey top is having lunch in the college canteen", "duration": 150, "vid": "8sWfdCTFW8o_510.0_660.0"}
{"qid": 645, "query": "A family meets characters from Toy Story.", "duration": 150, "vid": "jwGzcJ3s0Sw_210.0_360.0"}
{"qid": 4369, "query": "A family explore a busy park together in the sunshine.", "duration": 150, "vid": "jwGzcJ3s0Sw_60.0_210.0"}
{"qid": 5460, "query": "Little boy and mom rides in a roller coaster.", "duration": 150, "vid": "jwGzcJ3s0Sw_360.0_510.0"}
{"qid": 9164, "query": "Women take pictures with the Pirates of Caribbean characters before seeing the show.", "duration": 150, "vid": "jwGzcJ3s0Sw_510.0_660.0"}
{"qid": 1419, "query": "The man is at the gym performing a clean and jerk lift.", "duration": 150, "vid": "qpb2Z8lpPhA_60.0_210.0"}
{"qid": 3702, "query": "A fluffy brown puppy is playing with a man near a dresser.", "duration": 150, "vid": "qpb2Z8lpPhA_210.0_360.0"}
{"qid": 5474, "query": "Various places that are near the beach.", "duration": 150, "vid": "srP7RFVdjWc_360.0_510.0"}
{"qid": 5571, "query": "Fishes are swimming in a aquarium.", "duration": 150, "vid": "srP7RFVdjWc_210.0_360.0"}
{"qid": 6664, "query": "Capetown's Castle of Good Hope is located in the City Bowl, an amplitheatre-shaped area surrounded by mountains and plateaus", "duration": 150, "vid": "srP7RFVdjWc_60.0_210.0"}
{"qid": 1176, "query": "Woman in striped shirt drives a car filled with her friends.", "duration": 150, "vid": "T77WjQ_xKRM_360.0_510.0"}
{"qid": 2354, "query": "Woman in sunglasses walk through a parking lot.", "duration": 150, "vid": "T77WjQ_xKRM_60.0_210.0"}
{"qid": 6349, "query": "On a road trip, the women in front sing, chat, and laugh while the men in the back use their cell phones", "duration": 150, "vid": "T77WjQ_xKRM_210.0_360.0"}
{"qid": 696, "query": "A man holds a can while riding in a car.", "duration": 150, "vid": "q_omrXXmkeE_60.0_210.0"}
{"qid": 975, "query": "Man kneels next to a red car.", "duration": 150, "vid": "q_omrXXmkeE_210.0_360.0"}
{"qid": 3333, "query": "A travel blogger capturing a water falls", "duration": 150, "vid": "q_omrXXmkeE_360.0_510.0"}
{"qid": 1676, "query": "A man holding different snakes in his hand", "duration": 150, "vid": "U3QUfxqnfJg_60.0_210.0"}
{"qid": 2736, "query": "A man tries to feed black and white alligators at Gatorland", "duration": 150, "vid": "U3QUfxqnfJg_210.0_360.0"}
{"qid": 4050, "query": "A woman wearing a tank top holding and showing different snake species on her hands.", "duration": 150, "vid": "U3QUfxqnfJg_360.0_510.0"}
{"qid": 8918, "query": "A man in red t-shirt is touching an animal", "duration": 150, "vid": "U3QUfxqnfJg_510.0_660.0"}
{"qid": 4334, "query": "Tribal villagers are performing a ceremony with smoke and fire.", "duration": 150, "vid": "7Q3Gpf51QFU_360.0_510.0"}
{"qid": 6806, "query": "A man tastes the local food in Jaisalmer and Bikaner", "duration": 150, "vid": "7Q3Gpf51QFU_60.0_210.0"}
{"qid": 8211, "query": "Man in blue top holds soup in his spoon.", "duration": 150, "vid": "7Q3Gpf51QFU_210.0_360.0"}
{"qid": 9122, "query": "Chef prepared vegetables over a griddle.", "duration": 150, "vid": "7Q3Gpf51QFU_510.0_660.0"}
{"qid": 9228, "query": "Fire fighter drilling wild fire prevention", "duration": 124, "vid": "_P9Us86pumA_210.0_360.0"}
{"qid": 9270, "query": "Inmate volunteer fireman prepare for roadside brush clearing work", "duration": 150, "vid": "_P9Us86pumA_60.0_210.0"}
{"qid": 378, "query": "Woman is doing her eye makeup.", "duration": 150, "vid": "ZhIAoqsl0GY_210.0_360.0"}
{"qid": 1449, "query": "Indian girl sharing religious and cultural views", "duration": 150, "vid": "ZhIAoqsl0GY_60.0_210.0"}
{"qid": 4937, "query": "A woman standing in a foyer is very pleased to show off the big box bouquet of red roses in her possession.", "duration": 150, "vid": "ZhIAoqsl0GY_360.0_510.0"}
{"qid": 1736, "query": "Girl making green tea and share review", "duration": 150, "vid": "iy6kh6tBCmI_60.0_210.0"}
{"qid": 4174, "query": "Young woman wearing a black tank top holding a big cup of tea while talking to the camera.", "duration": 150, "vid": "iy6kh6tBCmI_360.0_510.0"}
{"qid": 4939, "query": "Woman holds up a glass of milk.", "duration": 150, "vid": "iy6kh6tBCmI_210.0_360.0"}
{"qid": 7068, "query": "A woman is decorating and setting a table with flowers.", "duration": 150, "vid": "iy6kh6tBCmI_660.0_810.0"}
{"qid": 7272, "query": "A woman has an image from her instagram pulled up on her laptop.", "duration": 150, "vid": "iy6kh6tBCmI_510.0_660.0"}
{"qid": 648, "query": "Woman has her hand around a man and a umbrella.", "duration": 150, "vid": "b_gbAILvCQo_60.0_210.0"}
{"qid": 3468, "query": "People are performing martial arts with swords.", "duration": 150, "vid": "b_gbAILvCQo_210.0_360.0"}
{"qid": 9616, "query": "A group of young boys are sitting in the dirt shoulder to shoulder in the forest.", "duration": 150, "vid": "HAttn-5lM3Y_210.0_360.0"}
{"qid": 10214, "query": "A group of younger male children are talking to an interviewer in a wooded area outside.", "duration": 150, "vid": "HAttn-5lM3Y_60.0_210.0"}
{"qid": 63, "query": "Man is getting a ekg.", "duration": 150, "vid": "BUxz53FWaj4_60.0_210.0"}
{"qid": 514, "query": "Man is receiving a MRI.", "duration": 150, "vid": "BUxz53FWaj4_210.0_360.0"}
{"qid": 9273, "query": "A weatherwoman in a black dress explains the weather as the map clears to reveal the pacific US.", "duration": 150, "vid": "4w82QErvrxI_210.0_360.0"}
{"qid": 233, "query": "Brother and sister are standing by a window together.", "duration": 150, "vid": "b5DIp2wHa8Q_60.0_210.0"}
{"qid": 553, "query": "A young girl in yellow is cleaning a birdcage while talking to her friend.", "duration": 150, "vid": "b5DIp2wHa8Q_210.0_360.0"}
{"qid": 3897, "query": "The family hands out in a room with a large happy face sign.", "duration": 150, "vid": "b5DIp2wHa8Q_360.0_510.0"}
{"qid": 7025, "query": "Man reads when he's sitting in the car.", "duration": 150, "vid": "b5DIp2wHa8Q_510.0_660.0"}
{"qid": 9605, "query": "Woman is holding her kid during a interview.", "duration": 150, "vid": "YTxYga2Xyhc_210.0_360.0"}
{"qid": 9743, "query": "People are filing out of a bus and following a man in a black uniform.", "duration": 150, "vid": "YTxYga2Xyhc_60.0_210.0"}
{"qid": 9936, "query": "A woman gives a commentary on footage of Joe Biden in a room of people.", "duration": 150, "vid": "YTxYga2Xyhc_360.0_510.0"}
{"qid": 1217, "query": "A woman is walking in a street while her mask is pulled down her chin.", "duration": 150, "vid": "fMActfTJboI_60.0_210.0"}
{"qid": 3884, "query": "Couple having yummy lunch", "duration": 150, "vid": "fMActfTJboI_210.0_360.0"}
{"qid": 6231, "query": "A woman in black jacket is talking in front of a camera after take off her mask while walking on the street", "duration": 150, "vid": "fMActfTJboI_360.0_510.0"}
{"qid": 6911, "query": "A small brown dog is running around excitedly in the living room, wagging it's tail.", "duration": 150, "vid": "fMActfTJboI_510.0_660.0"}
{"qid": 672, "query": "A family has a conversation in the car.", "duration": 150, "vid": "PKEIlBFxXp4_360.0_510.0"}
{"qid": 693, "query": "Woman holds a box of Pop Tarts.", "duration": 150, "vid": "PKEIlBFxXp4_60.0_210.0"}
{"qid": 5379, "query": "A group of kids in a blue tops wave to the camera.", "duration": 150, "vid": "PKEIlBFxXp4_210.0_360.0"}
{"qid": 1581, "query": "A lady talking and having a cup of tea", "duration": 150, "vid": "jL7v3S2mFww_60.0_210.0"}
{"qid": 2597, "query": "A natural view with a forest is seen from a car traveling through it.", "duration": 150, "vid": "jL7v3S2mFww_360.0_510.0"}
{"qid": 4965, "query": "A woman talks about her outfit while looking in the mirror.", "duration": 150, "vid": "jL7v3S2mFww_210.0_360.0"}
{"qid": 7191, "query": "A woman is showing her tomato soup and salad combo from a restaurant.", "duration": 150, "vid": "jL7v3S2mFww_660.0_810.0"}
{"qid": 7312, "query": "A store table is all set up for Christmas dinner.", "duration": 150, "vid": "jL7v3S2mFww_510.0_660.0"}
{"qid": 3413, "query": "A bearded man reviews a backpack after putting it on his back.", "duration": 150, "vid": "LPLJ1mPAs7M_360.0_510.0"}
{"qid": 3544, "query": "A guy doing a travelling bag review", "duration": 150, "vid": "LPLJ1mPAs7M_210.0_360.0"}
{"qid": 5550, "query": "Man shows off a beige and black bag.", "duration": 150, "vid": "LPLJ1mPAs7M_60.0_210.0"}
{"qid": 3135, "query": "Blonde woman wears a white peasant top and black backpack walking around.", "duration": 150, "vid": "7JUPCETmSR8_60.0_210.0"}
{"qid": 6386, "query": "A woman sitting at a table and showing a sandwich to the camera", "duration": 150, "vid": "7JUPCETmSR8_210.0_360.0"}
{"qid": 6535, "query": "A dark tunnel is illuminated by the reflection on the bright blue water it surrounds.", "duration": 150, "vid": "7JUPCETmSR8_360.0_510.0"}
{"qid": 9051, "query": "A woman swims in beautiful sunlit shallow tropic waters", "duration": 150, "vid": "7JUPCETmSR8_510.0_660.0"}
{"qid": 3284, "query": "A woman shows off the street view from her window and buildings opposite.", "duration": 150, "vid": "c1lX1gd5I78_60.0_210.0"}
{"qid": 3368, "query": "Young tourist girl sharing elegant guest house scene from Belgium", "duration": 150, "vid": "c1lX1gd5I78_210.0_360.0"}
{"qid": 7704, "query": "Blonde woman monologues from a hotel room.", "duration": 150, "vid": "c1lX1gd5I78_360.0_510.0"}
{"qid": 8979, "query": "Vlogger travels through a canal.", "duration": 150, "vid": "c1lX1gd5I78_660.0_810.0"}
{"qid": 1150, "query": "Vloggers go to a museum of building models.", "duration": 150, "vid": "ja7n-uhv9bg_210.0_360.0"}
{"qid": 2138, "query": "Beautiful sky scrappers behind a 60 feet high fountain", "duration": 150, "vid": "ja7n-uhv9bg_360.0_510.0"}
{"qid": 3218, "query": "The inside of a church has a lot of stained glass.", "duration": 150, "vid": "ja7n-uhv9bg_60.0_210.0"}
{"qid": 6428, "query": "A couple friends are showing their order from McDonalds with a wrap and hashbrowns.", "duration": 150, "vid": "guxM1xmo9Gg_210.0_360.0"}
{"qid": 7684, "query": "Girls are visiting Marina mall UAE first time", "duration": 150, "vid": "guxM1xmo9Gg_60.0_210.0"}
{"qid": 7701, "query": "Vlogger travels past a famous mosque at night.", "duration": 150, "vid": "guxM1xmo9Gg_360.0_510.0"}
{"qid": 613, "query": "Woman wears a white headwrap.", "duration": 150, "vid": "Ns9nKnuhgE0_60.0_210.0"}
{"qid": 3002, "query": "A lady talking about her euro tour", "duration": 150, "vid": "Ns9nKnuhgE0_210.0_360.0"}
{"qid": 6818, "query": "A woman is visiting what appears to be an ancient stone temple.", "duration": 150, "vid": "Ns9nKnuhgE0_360.0_510.0"}
{"qid": 2803, "query": "Asian girls enjoying some chocolates and having fun", "duration": 150, "vid": "CYGNn8t90Wk_210.0_360.0"}
{"qid": 4032, "query": "Teen girl goes through her beauty routine.", "duration": 150, "vid": "CYGNn8t90Wk_360.0_510.0"}
{"qid": 6049, "query": "Girl talks to camera while sitting in the back of the car.", "duration": 150, "vid": "CYGNn8t90Wk_60.0_210.0"}
{"qid": 189, "query": "They're making coffee for themselves and for their dad.", "duration": 150, "vid": "13RZnGLj-iQ_210.0_360.0"}
{"qid": 2778, "query": "Someone sitting down at the table to plate and eat bacon, eggs and toast.", "duration": 150, "vid": "13RZnGLj-iQ_60.0_210.0"}
{"qid": 6003, "query": "A girl is cutting the pictures and pasting them on the diary", "duration": 150, "vid": "13RZnGLj-iQ_360.0_510.0"}
{"qid": 8814, "query": "A girl is writing dairy in her dairy book", "duration": 150, "vid": "13RZnGLj-iQ_510.0_660.0"}
{"qid": 5470, "query": "Best things to know to travel to Los Angles", "duration": 150, "vid": "tvDH4JM_gME_210.0_360.0"}
{"qid": 6663, "query": "A video showing which it is the best app for smartphone for helping you", "duration": 150, "vid": "tvDH4JM_gME_360.0_510.0"}
{"qid": 8051, "query": "A Google map illustration of the area visiting.", "duration": 150, "vid": "tvDH4JM_gME_60.0_210.0"}
{"qid": 3324, "query": "Young girl leaving for LA alone at 3 A;M sharing her views", "duration": 150, "vid": "wfIWTD30gCw_60.0_210.0"}
{"qid": 7695, "query": "Woman rides in a van her her hood up.", "duration": 150, "vid": "wfIWTD30gCw_210.0_360.0"}
{"qid": 7884, "query": "Blonde girl talks in the car while the dad drives.", "duration": 150, "vid": "wfIWTD30gCw_360.0_510.0"}
{"qid": 3, "query": "Girl sharing some street view during wlk", "duration": 150, "vid": "vsykXfqk_4A_60.0_210.0"}
{"qid": 4823, "query": "We see the interior of a beautiful building as a woman walks around.", "duration": 150, "vid": "vsykXfqk_4A_210.0_360.0"}
{"qid": 5041, "query": "A woman is working on a scrapbook on a black desk.", "duration": 150, "vid": "vsykXfqk_4A_360.0_510.0"}
{"qid": 7331, "query": "Vlogger goes through the memorabilia on the table.", "duration": 150, "vid": "vsykXfqk_4A_660.0_810.0"}
{"qid": 8845, "query": "The Vlogger is showing the sweets packet in the shop.", "duration": 150, "vid": "vsykXfqk_4A_510.0_660.0"}
{"qid": 3422, "query": "A man explaining about the setting a selfie stick and controlling it", "duration": 150, "vid": "KyrcDEJmR5w_210.0_360.0"}
{"qid": 5692, "query": "A man is showing the entrance to a temple complex on a lush hill.", "duration": 150, "vid": "KyrcDEJmR5w_360.0_510.0"}
{"qid": 5769, "query": "Man sits down to get a water bottle out of his bag.", "duration": 150, "vid": "KyrcDEJmR5w_60.0_210.0"}
{"qid": 6602, "query": "A video showing different places in the morning, in the afternoon and at night", "duration": 150, "vid": "DIgv-e18OzA_60.0_210.0"}
{"qid": 2586, "query": "Two people lay in bed with their bodies facing opposite ways next to two babies.", "duration": 138, "vid": "AEf_3sgs_Ak_360.0_510.0"}
{"qid": 2910, "query": "A guy wearing a Santa hat cuddling two babies", "duration": 150, "vid": "AEf_3sgs_Ak_60.0_210.0"}
{"qid": 3667, "query": "Man lies on the floor in a Santa hat next to sleeping baby.", "duration": 150, "vid": "AEf_3sgs_Ak_210.0_360.0"}
{"qid": 638, "query": "A crow is standing on a statue.", "duration": 150, "vid": "ChCi1CGFt50_360.0_510.0"}
{"qid": 6704, "query": "A suit of golden armor is on display is a musuem.", "duration": 150, "vid": "ChCi1CGFt50_60.0_210.0"}
{"qid": 8179, "query": "A city is modelled in white.", "duration": 150, "vid": "ChCi1CGFt50_210.0_360.0"}
{"qid": 988, "query": "Chef places the chicken down and seasons it.", "duration": 150, "vid": "6v2jxLQazHc_360.0_510.0"}
{"qid": 1917, "query": "A couple home tour covering bedroom, living room, hallway and bathroom", "duration": 150, "vid": "6v2jxLQazHc_60.0_210.0"}
{"qid": 4483, "query": "A woman shows the exterior of a home and her sitting down to get to work in the kitchen.", "duration": 150, "vid": "6v2jxLQazHc_210.0_360.0"}
{"qid": 2162, "query": "Woman wears sunglasses while walking on a narrow bridge.", "duration": 150, "vid": "KPtayuu0L8Y_60.0_210.0"}
{"qid": 2372, "query": "Awesome day of my life", "duration": 140, "vid": "KPtayuu0L8Y_360.0_510.0"}
{"qid": 7767, "query": "Piles of spices are on a table.", "duration": 150, "vid": "KPtayuu0L8Y_210.0_360.0"}
{"qid": 3128, "query": "Young American Guy hiking in Siri Lanka Rain Forest", "duration": 150, "vid": "5W8Wc_u78VU_210.0_360.0"}
{"qid": 3430, "query": "A man is talking as pictures show then another man keeps talking about Colombia .", "duration": 150, "vid": "5W8Wc_u78VU_60.0_210.0"}
{"qid": 5387, "query": "The vloggers ordered a lobster at a restaurant.", "duration": 150, "vid": "5W8Wc_u78VU_360.0_510.0"}
{"qid": 1558, "query": "City view from a car during transit.", "duration": 150, "vid": "uCZAfLBvPVo_60.0_210.0"}
{"qid": 4136, "query": "View from the car when it's being driven.", "duration": 150, "vid": "uCZAfLBvPVo_360.0_510.0"}
{"qid": 6203, "query": "Woman in black top eats at a restaurant.", "duration": 150, "vid": "uCZAfLBvPVo_210.0_360.0"}
{"qid": 7252, "query": "After turning left, a car heads down a long straight road.", "duration": 150, "vid": "uCZAfLBvPVo_510.0_660.0"}
{"qid": 8343, "query": "A woman is showing her husband special event shopping", "duration": 150, "vid": "uCZAfLBvPVo_660.0_810.0"}
{"qid": 9780, "query": "A bunch of guys are being interviewed by a girl with long hair.", "duration": 150, "vid": "tQSOAcS_s-M_60.0_210.0"}
{"qid": 1163, "query": "Two girls at a airport wearing face masks and talking to the camera", "duration": 150, "vid": "5BEfO88Olhk_60.0_210.0"}
{"qid": 3182, "query": "Group of Young American girls having Breakfast and fun at hotel", "duration": 150, "vid": "5BEfO88Olhk_360.0_510.0"}
{"qid": 3487, "query": "Vlogger shows the view from the hotel balcony.", "duration": 150, "vid": "5BEfO88Olhk_210.0_360.0"}
{"qid": 1540, "query": "A girl talking, dancing and posing for a video", "duration": 150, "vid": "tmHVrxj0_Iw_360.0_510.0"}
{"qid": 2893, "query": "A popular korean student takes many selfies with her friends at school", "duration": 150, "vid": "tmHVrxj0_Iw_60.0_210.0"}
{"qid": 5027, "query": "Two young girls walk and talk to the camera at school whilst wearing masks.", "duration": 150, "vid": "tmHVrxj0_Iw_210.0_360.0"}
{"qid": 671, "query": "Overhead shots of restaurant food.", "duration": 150, "vid": "B0GEURtHWyI_60.0_210.0"}
{"qid": 1861, "query": "A couple exploring the contents of a Romanian salad", "duration": 150, "vid": "B0GEURtHWyI_210.0_360.0"}
{"qid": 1983, "query": "The man and woman in the white t-shirts visit a butcher shop that is also a bakery.", "duration": 150, "vid": "B0GEURtHWyI_360.0_510.0"}
{"qid": 1837, "query": "A toddler is thrilled by the toys at a big indoor play area", "duration": 150, "vid": "VFhXXjTwkKw_210.0_360.0"}
{"qid": 1972, "query": "A young boy eats pizza then passes out.", "duration": 150, "vid": "VFhXXjTwkKw_360.0_510.0"}
{"qid": 3087, "query": "A group of people are having a pedicure.", "duration": 150, "vid": "VFhXXjTwkKw_60.0_210.0"}
{"qid": 1007, "query": "A girl eats food while riding in a car.", "duration": 150, "vid": "l6aGqD9b53w_360.0_510.0"}
{"qid": 2157, "query": "an asian woman blogging her road trip with friends and dogs, arrives in maryland shows what they are eating during road trip", "duration": 150, "vid": "l6aGqD9b53w_210.0_360.0"}
{"qid": 6425, "query": "A woman in grey clothes is talking and taking care of her dogs in front of the camera as well as inside of her car", "duration": 150, "vid": "l6aGqD9b53w_60.0_210.0"}
{"qid": 5924, "query": "Video of a plane taking off and flying in the clouds.", "duration": 150, "vid": "RFibtPMmIVU_60.0_210.0"}
{"qid": 6417, "query": "A woman in a bikini and a white shirt over it wades in the beach water.", "duration": 150, "vid": "RFibtPMmIVU_360.0_510.0"}
{"qid": 7612, "query": "Woman rides in a cart with a mask on.", "duration": 150, "vid": "RFibtPMmIVU_210.0_360.0"}
{"qid": 9129, "query": "Two people are driving suvs in the desert.", "duration": 150, "vid": "RFibtPMmIVU_510.0_660.0"}
{"qid": 274, "query": "A car goes through the car wash.", "duration": 150, "vid": "wFbRG1IrNz0_360.0_510.0"}
{"qid": 3578, "query": "Woman wears a hair cap when she walks around her house.", "duration": 150, "vid": "wFbRG1IrNz0_210.0_360.0"}
{"qid": 3832, "query": "A lady walking in a super market aisle", "duration": 150, "vid": "wFbRG1IrNz0_60.0_210.0"}
{"qid": 1941, "query": "A vlogger couple introduces their new friend while waiting", "duration": 150, "vid": "2boeKBw9x84_60.0_210.0"}
{"qid": 3473, "query": "A military ceremony is preformed by a large metal gate.", "duration": 150, "vid": "2boeKBw9x84_360.0_510.0"}
{"qid": 4367, "query": "A man in a red cap is walking towards the red gated entrance to a large stadium.", "duration": 150, "vid": "2boeKBw9x84_210.0_360.0"}
{"qid": 88, "query": "Teen girl shows off her outfit next to the locker.", "duration": 150, "vid": "TnupP-MSEHI_360.0_510.0"}
{"qid": 3680, "query": "Blonde woman speaks next to a large mirror.", "duration": 150, "vid": "TnupP-MSEHI_60.0_210.0"}
{"qid": 3977, "query": "A girl draw a cat with a handy-craft item", "duration": 150, "vid": "TnupP-MSEHI_210.0_360.0"}
{"qid": 8843, "query": "Teenage boy wearing a white sweater is sitting down playing a guitar.", "duration": 150, "vid": "TnupP-MSEHI_510.0_660.0"}
{"qid": 9529, "query": "A soccer player in a red uniform is playing in the rain on the field.", "duration": 150, "vid": "vGm9tvh3anI_60.0_210.0"}
{"qid": 9678, "query": "People are dancing ballroom dances with a partner on stage.", "duration": 150, "vid": "vGm9tvh3anI_360.0_510.0"}
{"qid": 9965, "query": "Jessica Parker talks from the second level of a building.", "duration": 150, "vid": "vGm9tvh3anI_210.0_360.0"}
{"qid": 1098, "query": "A man stands in a street and talks to the camera about his cameras features whilst making hand gestures.", "duration": 150, "vid": "kuM1lNdhYnI_360.0_510.0"}
{"qid": 4377, "query": "Vlogger couple giving tips for devices they use", "duration": 150, "vid": "kuM1lNdhYnI_210.0_360.0"}
{"qid": 4539, "query": "Cameras are shown in still photos.", "duration": 150, "vid": "kuM1lNdhYnI_60.0_210.0"}
{"qid": 9892, "query": "A journalist talks off screen about President Trump's intention of resending DACA protection, and refugee admissions in the country.", "duration": 150, "vid": "i-BqG0x21io_60.0_210.0"}
{"qid": 10123, "query": "Family is gathered around the table playing dominos.", "duration": 150, "vid": "i-BqG0x21io_210.0_360.0"}
{"qid": 10228, "query": "People are taking cover from the strong winds and rain blowing the palm trees around.", "duration": 150, "vid": "i-BqG0x21io_360.0_510.0"}
{"qid": 925, "query": "Woman in blue top stands on the side of the road.", "duration": 150, "vid": "u5zzeSEJ0Ak_60.0_210.0"}
{"qid": 930, "query": "White smart car travels throughout the city.", "duration": 150, "vid": "u5zzeSEJ0Ak_360.0_510.0"}
{"qid": 6834, "query": "A driver's safety protocol is shown while he is in his vehicle; including gloves and face coverings.", "duration": 150, "vid": "u5zzeSEJ0Ak_210.0_360.0"}
{"qid": 742, "query": "Man and woman walk out of a old building together.", "duration": 150, "vid": "zeQ4qrFwePM_210.0_360.0"}
{"qid": 3414, "query": "A couple is walking forward vlogging about the places and sights in Jordan.", "duration": 150, "vid": "zeQ4qrFwePM_360.0_510.0"}
{"qid": 4201, "query": "Woman sits down to eat in a restaurant.", "duration": 150, "vid": "zeQ4qrFwePM_60.0_210.0"}
{"qid": 8970, "query": "Man in pink scarf walks down the street with a woman.", "duration": 150, "vid": "zeQ4qrFwePM_510.0_660.0"}
{"qid": 362, "query": "Dog is eating something off the floor.", "duration": 150, "vid": "2zUqHvqw0_8_210.0_360.0"}
{"qid": 3908, "query": "A woman in a pink sweater is speaking into camera while walking around her house.", "duration": 150, "vid": "2zUqHvqw0_8_60.0_210.0"}
{"qid": 5054, "query": "A lady in pajamas is tidying her room", "duration": 150, "vid": "2zUqHvqw0_8_360.0_510.0"}
{"qid": 7584, "query": "Vlogger is pointing out different beauty products on the table.", "duration": 150, "vid": "2zUqHvqw0_8_660.0_810.0"}
{"qid": 8267, "query": "A blonde woman is showing her products inside the closet", "duration": 150, "vid": "2zUqHvqw0_8_510.0_660.0"}
{"qid": 9409, "query": "A man is restrained on stage at a Trump rally.", "duration": 150, "vid": "Kd6pVAb_tHs_360.0_510.0"}
{"qid": 9422, "query": "Pro Trump and Anti Trump converged in political show", "duration": 150, "vid": "Kd6pVAb_tHs_210.0_360.0"}
{"qid": 9444, "query": "A large white sign with the words Liberation not Deportation is shown.", "duration": 150, "vid": "Kd6pVAb_tHs_60.0_210.0"}
{"qid": 232, "query": "A man is cleaning under the hood area of a silver car in an enclosed building.", "duration": 150, "vid": "H7jdqCKg9x8_210.0_360.0"}
{"qid": 2425, "query": "A man with glasses and a blue facemask walks away from a hospital's front doors.", "duration": 150, "vid": "H7jdqCKg9x8_60.0_210.0"}
{"qid": 2707, "query": "A person is eating a container of sushi on the couch.", "duration": 150, "vid": "MQ1bAV_vIRI_360.0_510.0"}
{"qid": 3789, "query": "Girl making breakfast for herself", "duration": 150, "vid": "MQ1bAV_vIRI_60.0_210.0"}
{"qid": 3945, "query": "Man in white shirt eats a sandwich.", "duration": 150, "vid": "MQ1bAV_vIRI_210.0_360.0"}
{"qid": 7114, "query": "Woman types on a keyboard connected to her laptop.", "duration": 150, "vid": "MQ1bAV_vIRI_510.0_660.0"}
{"qid": 9254, "query": "Worker cleaning road after heavy snow", "duration": 150, "vid": "HNN_WpBWM5M_60.0_210.0"}
{"qid": 6302, "query": "A group of people are speaking on stage at the Sundance Film Festival.", "duration": 150, "vid": "-SqS_5tSv78_210.0_360.0"}
{"qid": 6635, "query": "A woman in a winter jacket speaks as she stands beside a brick wall.", "duration": 150, "vid": "-SqS_5tSv78_60.0_210.0"}
{"qid": 9180, "query": "A bright glow orange streak of fire is burning on the mountainside.", "duration": 150, "vid": "4yY-cFoIYfM_210.0_360.0"}
{"qid": 2037, "query": "A girl on a bus talks about the use of bus pass", "duration": 150, "vid": "6f_loPJsPFE_60.0_210.0"}
{"qid": 3057, "query": "A woman is standing in the street under a green umbrella she is holding.", "duration": 150, "vid": "6f_loPJsPFE_360.0_510.0"}
{"qid": 4503, "query": "A women with pigtails in green is eating a green food wrapped in a leaf.", "duration": 150, "vid": "6f_loPJsPFE_210.0_360.0"}
{"qid": 9085, "query": "a young woman with pigtails shows various dishes before eating", "duration": 150, "vid": "6f_loPJsPFE_660.0_810.0"}
{"qid": 2243, "query": "A lady filming a aeroplane's wing when it took off and reached high", "duration": 150, "vid": "XJlrte91c4A_60.0_210.0"}
{"qid": 7714, "query": "Woman in purple top walks to a intersection then stops there.", "duration": 150, "vid": "XJlrte91c4A_210.0_360.0"}
{"qid": 9604, "query": "A team of people carrying things out of a ruined building with a white trap they lay down outside.", "duration": 150, "vid": "1A6qJhSsuWc_360.0_510.0"}
{"qid": 9991, "query": "People pick up different body parts of a skeleton.", "duration": 150, "vid": "1A6qJhSsuWc_210.0_360.0"}
{"qid": 10013, "query": "Buildings are left in rubble.", "duration": 150, "vid": "1A6qJhSsuWc_60.0_210.0"}
{"qid": 3321, "query": "A group of elephants wandering on the forest", "duration": 150, "vid": "q2tnZxvcE7A_210.0_360.0"}
{"qid": 5885, "query": "Groups of antelope are herding together.", "duration": 150, "vid": "q2tnZxvcE7A_60.0_210.0"}
{"qid": 6702, "query": "A woman records while visiting an animal safari park.", "duration": 150, "vid": "q2tnZxvcE7A_360.0_510.0"}
{"qid": 690, "query": "Man in white top monologues by his hotel window.", "duration": 150, "vid": "EjFwgCxKkdM_210.0_360.0"}
{"qid": 718, "query": "A woman in a white robe is showing the spread of room service on the table.", "duration": 150, "vid": "EjFwgCxKkdM_60.0_210.0"}
{"qid": 936, "query": "A couple is having a birthday party on the beach at sunset.", "duration": 150, "vid": "EjFwgCxKkdM_360.0_510.0"}
{"qid": 2676, "query": "Desi girl washing cloths with hands", "duration": 150, "vid": "cKKxp83EQp4_360.0_510.0"}
{"qid": 3844, "query": "A lady washing clothes in a bathroom", "duration": 150, "vid": "cKKxp83EQp4_60.0_210.0"}
{"qid": 4890, "query": "Woman dunks clothes in the water.", "duration": 150, "vid": "cKKxp83EQp4_210.0_360.0"}
{"qid": 7322, "query": "Woman washes her clothes in a bucket.", "duration": 150, "vid": "cKKxp83EQp4_660.0_810.0"}
{"qid": 8522, "query": "A girl is washing cloths", "duration": 150, "vid": "cKKxp83EQp4_510.0_660.0"}
{"qid": 1065, "query": "A woman is browsing the food offering sitting on a bright green table at a buffet", "duration": 150, "vid": "xv_YH57C1MU_60.0_210.0"}
{"qid": 5789, "query": "A man wearing a chef's hat carves a piece of meat.", "duration": 150, "vid": "xv_YH57C1MU_210.0_360.0"}
{"qid": 6685, "query": "A woman in a beige blouse is showing food from a restaurant", "duration": 150, "vid": "xv_YH57C1MU_360.0_510.0"}
{"qid": 9152, "query": "A rice dish is stirred by a spoon.", "duration": 150, "vid": "xv_YH57C1MU_660.0_810.0"}
{"qid": 26, "query": "A man is playing with her little girl on her I-pad while the older one has her personal I-pad.", "duration": 150, "vid": "3IjZofp_7-w_210.0_360.0"}
{"qid": 566, "query": "Cute little girl having conversation with father on lunch", "duration": 150, "vid": "3IjZofp_7-w_60.0_210.0"}
{"qid": 25, "query": "A man walks kicking leaves around a yard.", "duration": 150, "vid": "8fe7w1cAazA_360.0_510.0"}
{"qid": 558, "query": "Vlogger mixes a drink in a wine glass.", "duration": 150, "vid": "8fe7w1cAazA_60.0_210.0"}
{"qid": 3855, "query": "Vlogger mixes yogurt in their rice.", "duration": 150, "vid": "8fe7w1cAazA_210.0_360.0"}
{"qid": 831, "query": "Woman trying a signature dish at a restaurant", "duration": 150, "vid": "kbhUxAvQEWc_210.0_360.0"}
{"qid": 3295, "query": "Close up of the food in a restaurant.", "duration": 150, "vid": "kbhUxAvQEWc_60.0_210.0"}
{"qid": 7608, "query": "Pots are filled with different curries.", "duration": 150, "vid": "kbhUxAvQEWc_360.0_510.0"}
{"qid": 3168, "query": "A woman excitedly shows a small New York hotel room with a beautiful see-through shower", "duration": 150, "vid": "AV9a_rRCOaU_60.0_210.0"}
{"qid": 5946, "query": "A woman wearing a pink sweater talking to the camera while another woman wanders around the room.", "duration": 150, "vid": "AV9a_rRCOaU_210.0_360.0"}
{"qid": 6443, "query": "Woman in pink coat walking in the city and talking to the camera.", "duration": 150, "vid": "AV9a_rRCOaU_360.0_510.0"}
{"qid": 8974, "query": "A blonde woman in pink coat is talking in front of the camera", "duration": 150, "vid": "AV9a_rRCOaU_510.0_660.0"}
{"qid": 2896, "query": "A woman vlogs in a puffy green hat while standing in a parking lot.", "duration": 150, "vid": "EtXnXxOegko_60.0_210.0"}
{"qid": 3909, "query": "The woman with long dark hair and bangs is speaking while outdoors.", "duration": 150, "vid": "EtXnXxOegko_360.0_510.0"}
{"qid": 6191, "query": "Woman wears a white helmet while talking.", "duration": 150, "vid": "EtXnXxOegko_210.0_360.0"}
{"qid": 7481, "query": "A brunette woman is standing outside in front of a brick wall talking about her writing progress.", "duration": 150, "vid": "EtXnXxOegko_660.0_810.0"}
{"qid": 7530, "query": "Fireworks are exploding in the sky.", "duration": 150, "vid": "EtXnXxOegko_510.0_660.0"}
{"qid": 96, "query": "Man is maskless in a green shirt.", "duration": 150, "vid": "uGymr9TVaGI_60.0_210.0"}
{"qid": 1754, "query": "Man in a Hawaiian shirt looks up when he is talking.", "duration": 150, "vid": "uGymr9TVaGI_210.0_360.0"}
{"qid": 5272, "query": "A man is watching fireworks and then showing his view in the window seat of a plane.", "duration": 150, "vid": "uGymr9TVaGI_360.0_510.0"}
{"qid": 7204, "query": "Man in red shirt sits by a glass wall.", "duration": 150, "vid": "uGymr9TVaGI_660.0_810.0"}
{"qid": 7466, "query": "Man with red top sits by a wall of windows.", "duration": 150, "vid": "uGymr9TVaGI_510.0_660.0"}
{"qid": 659, "query": "Girl is sitting next to the window with a view of a waterfall.", "duration": 150, "vid": "KIVzCkEkF7o_60.0_210.0"}
{"qid": 1167, "query": "People are wearing plastic ponchos.", "duration": 150, "vid": "KIVzCkEkF7o_360.0_510.0"}
{"qid": 8067, "query": "Young children do their best King Kong impersonation by climbing on the safety cage at the top of an observation deck.", "duration": 150, "vid": "KIVzCkEkF7o_210.0_360.0"}
{"qid": 9001, "query": "a young boy plays dangerously with his plastic parka", "duration": 150, "vid": "KIVzCkEkF7o_660.0_810.0"}
{"qid": 616, "query": "Man talks while holding chopsticks.", "duration": 150, "vid": "HJiDesesiWg_210.0_360.0"}
{"qid": 5832, "query": "A man in gray is talking beside a busy road at night.", "duration": 150, "vid": "HJiDesesiWg_360.0_510.0"}
{"qid": 6570, "query": "A woman is showing her pink tickets to a car show event.", "duration": 150, "vid": "HJiDesesiWg_60.0_210.0"}
{"qid": 3020, "query": "Women wear yellow helmets when riding in the back of ATVs.", "duration": 150, "vid": "g66Aac0IZnI_60.0_210.0"}
{"qid": 5502, "query": "Woman are sitting in the water.", "duration": 150, "vid": "g66Aac0IZnI_210.0_360.0"}
{"qid": 6876, "query": "A group of girls is doing yoga exercises together.", "duration": 150, "vid": "g66Aac0IZnI_360.0_510.0"}
{"qid": 9043, "query": "Women swing on large swings in the forest.", "duration": 150, "vid": "g66Aac0IZnI_510.0_660.0"}
{"qid": 1093, "query": "A woman shows off her outfit to the camera and then goes on a walk in the park.", "duration": 150, "vid": "tpcKP4Opy8U_360.0_510.0"}
{"qid": 1126, "query": "A black woman in all black shows her outfit in the mirror.", "duration": 150, "vid": "tpcKP4Opy8U_60.0_210.0"}
{"qid": 6336, "query": "A woman is touring a musuem with massive archways.", "duration": 150, "vid": "tpcKP4Opy8U_210.0_360.0"}
{"qid": 3039, "query": "A car drove inside the tunnel.", "duration": 150, "vid": "pGT9u7kh9Bg_210.0_360.0"}
{"qid": 7778, "query": "Woman wears a pink scarf riding in the car.", "duration": 150, "vid": "pGT9u7kh9Bg_60.0_210.0"}
{"qid": 734, "query": "Woman wears a scarf around her mouth on a gondola.", "duration": 150, "vid": "VgmqAM03nQY_60.0_210.0"}
{"qid": 3509, "query": "A family is sitting on the floor together.", "duration": 150, "vid": "VgmqAM03nQY_210.0_360.0"}
{"qid": 2022, "query": "A family having entertainment inside the flight", "duration": 150, "vid": "kENu3bYxd5E_210.0_360.0"}
{"qid": 2268, "query": "Boy in red shirt stands in a airport lobby.", "duration": 150, "vid": "kENu3bYxd5E_60.0_210.0"}
{"qid": 2317, "query": "A family travel on a shuttle which looks like a roller coaster ride", "duration": 150, "vid": "kENu3bYxd5E_360.0_510.0"}
{"qid": 9060, "query": "Man in black shirt walks through a security line.", "duration": 150, "vid": "kENu3bYxd5E_510.0_660.0"}
{"qid": 9417, "query": "A protestor wearing a yellow hard hat, goggles, and black mask is standing apart from a crowd while being interviewed.", "duration": 136, "vid": "XHAvdBIFN5w_60.0_210.0"}
{"qid": 2005, "query": "People watch as the craft takes off and flies into space", "duration": 150, "vid": "h8T9mVkGh3s_60.0_210.0"}
{"qid": 974, "query": "People are preforming on stage from a distance.", "duration": 150, "vid": "KUs4hm2MQ8o_60.0_210.0"}
{"qid": 4345, "query": "An Asian woman is attending and event in a crowded arena with pink lighting.", "duration": 150, "vid": "KUs4hm2MQ8o_210.0_360.0"}
{"qid": 5424, "query": "A group is preforming a large concert.", "duration": 150, "vid": "KUs4hm2MQ8o_360.0_510.0"}
{"qid": 9639, "query": "A document is shown with selected quotes emphasized.", "duration": 150, "vid": "G2_5rPbUDNA_210.0_360.0"}
{"qid": 9894, "query": "A man in a suit and pink shirt is walking and talking with a reporter woman in black.", "duration": 150, "vid": "G2_5rPbUDNA_360.0_510.0"}
{"qid": 10167, "query": "Two women are taking a tour through an office with many desks with computers at them.", "duration": 150, "vid": "G2_5rPbUDNA_60.0_210.0"}
{"qid": 3745, "query": "Girl showing some city view from top of the building", "duration": 150, "vid": "-cALRwbhf1E_210.0_360.0"}
{"qid": 3765, "query": "A young woman shows off her red glasses around San Francisco.", "duration": 150, "vid": "-cALRwbhf1E_60.0_210.0"}
{"qid": 614, "query": "Woman in black dress looks out the balcony.", "duration": 150, "vid": "5Vc9wQIOkew_360.0_510.0"}
{"qid": 3320, "query": "A lady been greeted to a room with a drink at Taj Hotel", "duration": 150, "vid": "5Vc9wQIOkew_60.0_210.0"}
{"qid": 5425, "query": "a woman with a red dot on her forehead is recording herself while talking", "duration": 150, "vid": "5Vc9wQIOkew_210.0_360.0"}
{"qid": 197, "query": "Vlogger scrolls through their phone.", "duration": 150, "vid": "QrFLjLZIeig_60.0_210.0"}
{"qid": 4922, "query": "A man is demonstrating how a green machine processes a crop.", "duration": 150, "vid": "QrFLjLZIeig_360.0_510.0"}
{"qid": 5996, "query": "A tractor is harvesting grain.", "duration": 150, "vid": "QrFLjLZIeig_210.0_360.0"}
{"qid": 7167, "query": "A green arm of the combine fills a container with corn", "duration": 150, "vid": "QrFLjLZIeig_510.0_660.0"}
{"qid": 8718, "query": "A guy in the tractor is showing the touch screen inside.", "duration": 146, "vid": "QrFLjLZIeig_660.0_810.0"}
{"qid": 10102, "query": "A man in pink top holds out a mic to his interview subject.", "duration": 150, "vid": "n_62dLVgd3I_60.0_210.0"}
{"qid": 10171, "query": "Man in pink top is interviewing a woman by the water.", "duration": 150, "vid": "n_62dLVgd3I_210.0_360.0"}
{"qid": 1921, "query": "a woman with red shirt carrying a baby on carrier is blogging at airport, they board shuttle bus to air plane, then boards unto plane", "duration": 150, "vid": "tEaxKRDdYMc_60.0_210.0"}
{"qid": 2941, "query": "A girl doing a body stretch in her house", "duration": 150, "vid": "_UxECICm2eY_210.0_360.0"}
{"qid": 5064, "query": "Chef stirs rice in a saute pan.", "duration": 150, "vid": "_UxECICm2eY_360.0_510.0"}
{"qid": 5284, "query": "A lady takes us through her daily morning routine.", "duration": 150, "vid": "_UxECICm2eY_60.0_210.0"}
{"qid": 7320, "query": "A woman is making coffee in a pink cup that says cat.", "duration": 150, "vid": "_UxECICm2eY_510.0_660.0"}
{"qid": 1019, "query": "Woman eats from the plate she's holding.", "duration": 150, "vid": "zvEaxc9WD14_360.0_510.0"}
{"qid": 3195, "query": "American girl havinfg desi breakfast poori terkari in Delhi", "duration": 150, "vid": "zvEaxc9WD14_60.0_210.0"}
{"qid": 7882, "query": "A plate has nan with curry.", "duration": 150, "vid": "zvEaxc9WD14_210.0_360.0"}
{"qid": 8985, "query": "Woman eats a granola bowl.", "duration": 150, "vid": "zvEaxc9WD14_510.0_660.0"}
{"qid": 830, "query": "A lightshow is shining on the stage and turns yellow when a singer appears.", "duration": 150, "vid": "6m0I0tCIH70_60.0_210.0"}
{"qid": 1029, "query": "A lightshow is casting yellow beams onto the stage.", "duration": 150, "vid": "6m0I0tCIH70_210.0_360.0"}
{"qid": 1816, "query": "A guy visiting a local market in a place called Kuta which is in Indonesia", "duration": 150, "vid": "lyGaTk4MLVM_360.0_510.0"}
{"qid": 1866, "query": "Most beautiful resort i have ever seen", "duration": 150, "vid": "lyGaTk4MLVM_60.0_210.0"}
{"qid": 1928, "query": "A guy checking out a beach which features in the top 5 best beaches of Indonesia", "duration": 150, "vid": "lyGaTk4MLVM_210.0_360.0"}
{"qid": 9130, "query": "Woman beats the pot with a stick.", "duration": 150, "vid": "lyGaTk4MLVM_510.0_660.0"}
{"qid": 1824, "query": "Two guys having a mock fight", "duration": 150, "vid": "yX8oV3E5VSU_210.0_360.0"}
{"qid": 2080, "query": "The group huddles and prepares to take the stage", "duration": 150, "vid": "yX8oV3E5VSU_360.0_510.0"}
{"qid": 6503, "query": "A blond haired man tries to get on the clam-shaped floatie but fails.", "duration": 150, "vid": "yX8oV3E5VSU_60.0_210.0"}
{"qid": 809, "query": "Woman monologues while wearing a white top.", "duration": 150, "vid": "VtlI5SY9oQw_360.0_510.0"}
{"qid": 1974, "query": "Black woman sits on a red chair next to a plant.", "duration": 150, "vid": "VtlI5SY9oQw_210.0_360.0"}
{"qid": 4416, "query": "Girl sharing tips to visit Ghana", "duration": 150, "vid": "VtlI5SY9oQw_60.0_210.0"}
{"qid": 652, "query": "A girl is talking about her friend at the restaurant", "duration": 150, "vid": "xzmEZo_HUpY_360.0_510.0"}
{"qid": 4727, "query": "Two women in face masks and one with a red beret walk away from a helicopter to the street.", "duration": 150, "vid": "xzmEZo_HUpY_60.0_210.0"}
{"qid": 8141, "query": "A woman in black and white clothes and wearing a red hat is talking with a woman wearing a brown coat in front of a camera", "duration": 150, "vid": "xzmEZo_HUpY_210.0_360.0"}
{"qid": 706, "query": "A montage of photographs of the sea on a sunny day, near a village.", "duration": 150, "vid": "zeWShkauzL0_60.0_210.0"}
{"qid": 997, "query": "A couple shows off a rocky beach with very clear waters.", "duration": 150, "vid": "zeWShkauzL0_360.0_510.0"}
{"qid": 2065, "query": "Beach view captured from a hill top view by a couple", "duration": 150, "vid": "zeWShkauzL0_210.0_360.0"}
{"qid": 9031, "query": "View of the passenger and drivers seat from the back of the car.", "duration": 150, "vid": "zeWShkauzL0_510.0_660.0"}
{"qid": 3311, "query": "Man wears a white Nada shirt around a white umbrella.", "duration": 150, "vid": "kr_sTfYX_FI_60.0_210.0"}
{"qid": 4775, "query": "A man is riding in a section of the train alone in a relatively dark compartment.", "duration": 150, "vid": "kr_sTfYX_FI_210.0_360.0"}
{"qid": 530, "query": "Girl showing her home", "duration": 150, "vid": "QueGIYya64M_360.0_510.0"}
{"qid": 3797, "query": "Two girls give a house tour of their home.", "duration": 150, "vid": "QueGIYya64M_210.0_360.0"}
{"qid": 4855, "query": "Woman shows off their famliy photos.", "duration": 150, "vid": "QueGIYya64M_60.0_210.0"}
{"qid": 7534, "query": "A woman in a purple sweater and gray sweatpants is laying in bed.", "duration": 150, "vid": "QueGIYya64M_510.0_660.0"}
{"qid": 8740, "query": "a girl in a purplex shirt laughs while on a bed.", "duration": 150, "vid": "QueGIYya64M_660.0_810.0"}
{"qid": 4894, "query": "Woman in white sweatshirt walks outside.", "duration": 150, "vid": "GKyQFpBxCK4_60.0_210.0"}
{"qid": 6184, "query": "A lady with a blond hairs talks about how she achieved her hair style and shows off clothes for her photo shoot", "duration": 150, "vid": "GKyQFpBxCK4_210.0_360.0"}
{"qid": 8277, "query": "a woman in a blue jacket addresses the camera directly", "duration": 150, "vid": "GKyQFpBxCK4_510.0_660.0"}
{"qid": 3149, "query": "A man tasting a chocolate like food", "duration": 150, "vid": "1m3-4Bi5Kl0_60.0_210.0"}
{"qid": 6559, "query": "A man in grey t-shirt is showing nature, food as well as dogs", "duration": 150, "vid": "1m3-4Bi5Kl0_360.0_510.0"}
{"qid": 6727, "query": "A baby deer eats a plant and a red squirrel clings onto a branch.", "duration": 150, "vid": "1m3-4Bi5Kl0_210.0_360.0"}
{"qid": 2353, "query": "A young couple go clothes shopping.", "duration": 150, "vid": "nCsbm8Ze8oM_360.0_510.0"}
{"qid": 4560, "query": "The woman behind the camera is giving a tour of their hotel room.", "duration": 150, "vid": "nCsbm8Ze8oM_60.0_210.0"}
{"qid": 6860, "query": "People check out different machines that dipense toys and try them out.", "duration": 150, "vid": "nCsbm8Ze8oM_210.0_360.0"}
{"qid": 9907, "query": "Man is talking in front of a brown background.", "duration": 150, "vid": "Qy3mf-B_GZI_60.0_210.0"}
{"qid": 4297, "query": "A man I stalking while a screen of phone pops up and is talking while holding a microphone.", "duration": 150, "vid": "Ys290kErJzE_360.0_510.0"}
{"qid": 4356, "query": "Men in black and white shirts looks over their shoulders at the camera.", "duration": 150, "vid": "Ys290kErJzE_60.0_210.0"}
{"qid": 5868, "query": "Two men walk around a airport.", "duration": 150, "vid": "Ys290kErJzE_210.0_360.0"}
{"qid": 9356, "query": "Water is flooding over parked cars, homes and roads.", "duration": 150, "vid": "QfQlgst1i_g_60.0_210.0"}
{"qid": 3095, "query": "A marching band performs on the street.", "duration": 150, "vid": "_SR80jU9hPU_210.0_360.0"}
{"qid": 4623, "query": "Tower bridge near a river Sacramento river", "duration": 150, "vid": "_SR80jU9hPU_60.0_210.0"}
{"qid": 6886, "query": "A man wearing glasses and a baseball cap, pointing with his hand some things at a museum.", "duration": 150, "vid": "_SR80jU9hPU_360.0_510.0"}
{"qid": 1349, "query": "An enthusiastic couple assemble and position a wine rack that arrived in the mail", "duration": 150, "vid": "-r7gdSD2xvs_210.0_360.0"}
{"qid": 2859, "query": "A man in green shirt picks a machine and opens a door looking at a messy floor.", "duration": 150, "vid": "-r7gdSD2xvs_360.0_510.0"}
{"qid": 6010, "query": "A man in green t-shirt is talking is front of the camera about snake eggs", "duration": 150, "vid": "-r7gdSD2xvs_60.0_210.0"}
{"qid": 7081, "query": "A yellow and black snake is placed inside a box.", "duration": 150, "vid": "-r7gdSD2xvs_510.0_660.0"}
{"qid": 8848, "query": "A woman is feeding a sloth and a man is rubbing same sloth", "duration": 150, "vid": "-r7gdSD2xvs_660.0_810.0"}
{"qid": 4428, "query": "Tourist girl giving reviews on breakfast", "duration": 150, "vid": "CXDlWaDi7a0_360.0_510.0"}
{"qid": 6712, "query": "The woman goes inside Outdoor World and shops.", "duration": 150, "vid": "CXDlWaDi7a0_210.0_360.0"}
{"qid": 7755, "query": "Woman in black hoodie monologues from her hotel room.", "duration": 150, "vid": "CXDlWaDi7a0_60.0_210.0"}
{"qid": 9570, "query": "Man pours milk all over himself.", "duration": 150, "vid": "DV7_zeiQhdU_60.0_210.0"}
{"qid": 9675, "query": "A man recounts one of the most powerful scenes he was part of, when Obama was on Edmund Pettus Bridge", "duration": 150, "vid": "DV7_zeiQhdU_360.0_510.0"}
{"qid": 9847, "query": "Man and woman discussing racism at a restaurant", "duration": 150, "vid": "DV7_zeiQhdU_210.0_360.0"}
{"qid": 615, "query": "Man and woman are walking down the street in matching striped shirts.", "duration": 150, "vid": "4U-GkU4Vryo_210.0_360.0"}
{"qid": 1847, "query": "Woman jumps in pool, swims around and gets out.", "duration": 150, "vid": "4U-GkU4Vryo_60.0_210.0"}
{"qid": 7937, "query": "Man professionally photographs woman on the beach.", "duration": 150, "vid": "4U-GkU4Vryo_360.0_510.0"}
{"qid": 9181, "query": "Godvari river flooding blocks the Tuni railway bridge and collapses a building", "duration": 148, "vid": "86fm_miRHWI_60.0_210.0"}
{"qid": 391, "query": "A couple is showing the kids cloths and shoes", "duration": 150, "vid": "RLh2fCh9SpA_210.0_360.0"}
{"qid": 2784, "query": "A man shows himself and a small village.", "duration": 122, "vid": "RLh2fCh9SpA_360.0_510.0"}
{"qid": 3984, "query": "People eat ice cream from glass containers.", "duration": 150, "vid": "RLh2fCh9SpA_60.0_210.0"}
{"qid": 1127, "query": "A woman wearing a floral print blouse walking through the street while talking to the camera.", "duration": 150, "vid": "NsoowW3WPXM_360.0_510.0"}
{"qid": 6617, "query": "Beautifully 18th century colored Tatar houses are shown.", "duration": 150, "vid": "NsoowW3WPXM_210.0_360.0"}
{"qid": 7656, "query": "Vlogger travels up winding stairs.", "duration": 150, "vid": "NsoowW3WPXM_60.0_210.0"}
{"qid": 9693, "query": "Full shot of everyone sitting at a table with flags on it.", "duration": 150, "vid": "Vu0Z5BdPKaY_210.0_360.0"}
{"qid": 9711, "query": "President Trump and President Putin greet and speak with each other.", "duration": 150, "vid": "Vu0Z5BdPKaY_60.0_210.0"}
{"qid": 10198, "query": "Full shots of four people having a conversation around a table with flags.", "duration": 150, "vid": "Vu0Z5BdPKaY_360.0_510.0"}
{"qid": 4718, "query": "A woman in a black sweater is supporting her head with a hand.", "duration": 150, "vid": "GPZ4So5mepU_360.0_510.0"}
{"qid": 6842, "query": "A brunette woman is wearing sunglasses while swimming in the pool.", "duration": 150, "vid": "GPZ4So5mepU_60.0_210.0"}
{"qid": 8195, "query": "a woman in blue blouse is talking in front of a camera while holding a chocolate bar and then eating it", "duration": 150, "vid": "GPZ4So5mepU_210.0_360.0"}
{"qid": 4594, "query": "Girls are having drinks together at a wooden bench on a deck.", "duration": 150, "vid": "2_CfiwPgV3Y_360.0_510.0"}
{"qid": 4631, "query": "Woman looks at reflection in golden mirror.", "duration": 150, "vid": "2_CfiwPgV3Y_210.0_360.0"}
{"qid": 6581, "query": "A woman wearing a white robe is giving a tour of the hotel room.", "duration": 150, "vid": "2_CfiwPgV3Y_60.0_210.0"}
{"qid": 2823, "query": "A couple's selfie video on a couch", "duration": 150, "vid": "-eQfg7HJuKc_210.0_360.0"}
{"qid": 3862, "query": "Parents are snuggling in bed on either side of a baby.", "duration": 150, "vid": "-eQfg7HJuKc_360.0_510.0"}
{"qid": 6179, "query": "A couple are laying down on the bed while they are talking in front of the camera", "duration": 150, "vid": "-eQfg7HJuKc_60.0_210.0"}
{"qid": 8283, "query": "Kids are playing on the trampoline together", "duration": 150, "vid": "-eQfg7HJuKc_660.0_810.0"}
{"qid": 8928, "query": "A toddler plays on a small trampoline in the living room.", "duration": 150, "vid": "-eQfg7HJuKc_510.0_660.0"}
{"qid": 758, "query": "Woman in white top rides in a car.", "duration": 150, "vid": "HQBXQyT8UoI_360.0_510.0"}
{"qid": 2288, "query": "Two girls performing gymnastic acts at outdoors", "duration": 150, "vid": "HQBXQyT8UoI_60.0_210.0"}
{"qid": 8130, "query": "Woman use a cupcake vending machine.", "duration": 150, "vid": "HQBXQyT8UoI_210.0_360.0"}
{"qid": 9204, "query": "Weather broadcaster explain hurricane Michael root using different graphs", "duration": 150, "vid": "94QgxnkuuOA_60.0_210.0"}
{"qid": 1394, "query": "A woman talking about something she posted on social media and the responses she got.", "duration": 150, "vid": "3cS4WYK4G7U_210.0_360.0"}
{"qid": 2659, "query": "The hotel room bed and view.", "duration": 150, "vid": "3cS4WYK4G7U_60.0_210.0"}
{"qid": 3894, "query": "Woman stands with a view of her kitchen over her shoulder.", "duration": 150, "vid": "3cS4WYK4G7U_360.0_510.0"}
{"qid": 7071, "query": "Blonde woman rubs her hands on her face and hair.", "duration": 150, "vid": "3cS4WYK4G7U_510.0_660.0"}
{"qid": 8771, "query": "A lady is talking and showing different flowers patterns made out of wool.", "duration": 150, "vid": "3cS4WYK4G7U_660.0_810.0"}
{"qid": 9659, "query": "A variety of different fish swim around near a coral reef.", "duration": 150, "vid": "j7g-XYX5FRc_60.0_210.0"}
{"qid": 10002, "query": "Black and white photos of men in a grid.", "duration": 150, "vid": "j7g-XYX5FRc_210.0_360.0"}
{"qid": 10004, "query": "Anita Hill gives her Senate testimony.", "duration": 150, "vid": "j7g-XYX5FRc_360.0_510.0"}
{"qid": 2304, "query": "The woman take us on a tour of their hotel room.", "duration": 150, "vid": "TBMt3agq6_w_210.0_360.0"}
{"qid": 5678, "query": "Vlogger shows their phone pin.", "duration": 150, "vid": "TBMt3agq6_w_60.0_210.0"}
{"qid": 6486, "query": "ellennextdoor captures the city sights as she wanders the streets somewhere in Austria", "duration": 150, "vid": "TBMt3agq6_w_360.0_510.0"}
{"qid": 1169, "query": "Man models orange ear muffs on his head.", "duration": 150, "vid": "QxP1p3EzOks_360.0_510.0"}
{"qid": 1853, "query": "Adventure time with my friends", "duration": 150, "vid": "QxP1p3EzOks_210.0_360.0"}
{"qid": 6379, "query": "A blonde woman in black blouse is talking in front of the camera", "duration": 150, "vid": "QxP1p3EzOks_60.0_210.0"}
{"qid": 9874, "query": "People pick up and carry people in tarps.", "duration": 150, "vid": "iUCKnsDzLIs_60.0_210.0"}
{"qid": 9964, "query": "Emergency workers pick up and move bodies.", "duration": 150, "vid": "iUCKnsDzLIs_210.0_360.0"}
{"qid": 10182, "query": "Woman with black hijab walks around the rubble.", "duration": 150, "vid": "iUCKnsDzLIs_360.0_510.0"}
{"qid": 94, "query": "A woman in a brown sweater is folding clothes on the bed.", "duration": 150, "vid": "2ALPz7TU1WY_360.0_510.0"}
{"qid": 1213, "query": "A woman making a bed and serving a glass of iced tea.", "duration": 150, "vid": "2ALPz7TU1WY_60.0_210.0"}
{"qid": 6076, "query": "Woman makes a beverage and drinks it.", "duration": 150, "vid": "2ALPz7TU1WY_210.0_360.0"}
{"qid": 7371, "query": "A woman is pulling a pack of bagels out of a paper bag.", "duration": 150, "vid": "2ALPz7TU1WY_510.0_660.0"}
{"qid": 8329, "query": "A woman in black top is curling her hair and then applying makeup.", "duration": 150, "vid": "2ALPz7TU1WY_660.0_810.0"}
{"qid": 478, "query": "Woman is playing a ukulele in the car.", "duration": 150, "vid": "uh2qGWfmESk_360.0_510.0"}
{"qid": 1677, "query": "Couple singing and dancing while driving", "duration": 150, "vid": "uh2qGWfmESk_60.0_210.0"}
{"qid": 6246, "query": "Billie Eilish plays the ukelele in the car.", "duration": 150, "vid": "uh2qGWfmESk_210.0_360.0"}
{"qid": 6891, "query": "A man is interviewing a musician while driving a car.", "duration": 150, "vid": "uh2qGWfmESk_510.0_660.0"}
{"qid": 8417, "query": "A black tarantula rests on the hands of a couple of people.", "duration": 150, "vid": "uh2qGWfmESk_660.0_810.0"}
{"qid": 505, "query": "People are walking by the Disney castle.", "duration": 150, "vid": "gehzWEPLjcc_210.0_360.0"}
{"qid": 569, "query": "The view down the Pirates of the Caribbean ride.", "duration": 150, "vid": "gehzWEPLjcc_360.0_510.0"}
{"qid": 5137, "query": "A young man sits on a bench at an amusement park and eats lunch while talking.", "duration": 150, "vid": "gehzWEPLjcc_60.0_210.0"}
{"qid": 7559, "query": "A ride is going through a cityscape illuminated with an indigo light.", "duration": 150, "vid": "gehzWEPLjcc_510.0_660.0"}
{"qid": 8347, "query": "A street parade moves down the street with many different Disney characters.", "duration": 150, "vid": "gehzWEPLjcc_660.0_810.0"}
{"qid": 2113, "query": "The woman in the black leather jacket visits Paris and goes up the Eiffel Tower and has dinner there.", "duration": 150, "vid": "6g0IdjnX9fQ_360.0_510.0"}
{"qid": 3349, "query": "A woman walking outside the Palace of Versailles", "duration": 150, "vid": "6g0IdjnX9fQ_210.0_360.0"}
{"qid": 4289, "query": "Woman vlogs while walking down the street.", "duration": 150, "vid": "6g0IdjnX9fQ_60.0_210.0"}
{"qid": 1224, "query": "A guy talking about men's grooming products", "duration": 150, "vid": "WlJGA2-wZQ4_360.0_510.0"}
{"qid": 2779, "query": "Group of friends having fun at GOA beach in India", "duration": 150, "vid": "WlJGA2-wZQ4_210.0_360.0"}
{"qid": 3990, "query": "A man wearing a yellow t-shirt touching his hair while sitting on a couch next to a woman.", "duration": 150, "vid": "WlJGA2-wZQ4_60.0_210.0"}
{"qid": 7105, "query": "Friends ride a inflatable raft in the water.", "duration": 150, "vid": "WlJGA2-wZQ4_510.0_660.0"}
{"qid": 8788, "query": "A paraglider using a blue parachute is landing in the water.", "duration": 150, "vid": "WlJGA2-wZQ4_660.0_810.0"}
{"qid": 4405, "query": "A woman does leg workouts in a gym", "duration": 150, "vid": "AVNNbplbgV4_360.0_510.0"}
{"qid": 6515, "query": "A woman in a yellow dress talks to the camera in a messy hotel room.", "duration": 150, "vid": "AVNNbplbgV4_210.0_360.0"}
{"qid": 6662, "query": "A small boy in the back seat happily discovers he could see his mom in the screen as she records a vlog in the car", "duration": 150, "vid": "AVNNbplbgV4_60.0_210.0"}
{"qid": 10183, "query": "The street is littered with debris and damaged cars and buildings are lining it.", "duration": 150, "vid": "6tYE0yCmNzA_60.0_210.0"}
{"qid": 258, "query": "Boy filming sweet shop during shopping", "duration": 150, "vid": "lLepYM0nQhc_360.0_510.0"}
{"qid": 1741, "query": "Man and woman go grocery shopping.", "duration": 150, "vid": "lLepYM0nQhc_210.0_360.0"}
{"qid": 2796, "query": "Indian man and his family enjoying wood fire at home", "duration": 150, "vid": "lLepYM0nQhc_60.0_210.0"}
{"qid": 1102, "query": "A person shows off tower bridge in London from different angles on a busy day.", "duration": 150, "vid": "8o0DZDwJR7U_60.0_210.0"}
{"qid": 1903, "query": "A couple's selfie video in front of Tower bridge", "duration": 150, "vid": "8o0DZDwJR7U_210.0_360.0"}
{"qid": 3356, "query": "A large fountain area sits in front of a tower and large historical buildings in the background.", "duration": 150, "vid": "8o0DZDwJR7U_360.0_510.0"}
{"qid": 5131, "query": "The woman poses in front of a mirror in a white T-shirt and grey joggers.", "duration": 150, "vid": "zeCCSnfLZD4_360.0_510.0"}
{"qid": 6272, "query": "Woman holds up skin cream and puts it on.", "duration": 150, "vid": "zeCCSnfLZD4_60.0_210.0"}
{"qid": 8543, "query": "a girl films herself modeling grey sweatclothes", "duration": 122, "vid": "zeCCSnfLZD4_510.0_660.0"}
{"qid": 1345, "query": "A guy with the trolley on the way to board a flight", "duration": 150, "vid": "iLoaQNtHdwc_60.0_210.0"}
{"qid": 1663, "query": "Three friends are in the lounge at British Airways.", "duration": 150, "vid": "iLoaQNtHdwc_210.0_360.0"}
{"qid": 4015, "query": "Guys having a glass of water on a flight seat", "duration": 150, "vid": "iLoaQNtHdwc_360.0_510.0"}
{"qid": 8612, "query": "A man in a striped shirt is sitting on a plane choosing a video.", "duration": 150, "vid": "iLoaQNtHdwc_660.0_810.0"}
{"qid": 8712, "query": "scenes from an airplane before the videographer boards", "duration": 150, "vid": "iLoaQNtHdwc_510.0_660.0"}
{"qid": 1225, "query": "Woman opens a box with a ceramic Starbucks mug.", "duration": 150, "vid": "l_8iu7peNh8_60.0_210.0"}
{"qid": 1278, "query": "A woman explains and prepares a chicken recipe", "duration": 150, "vid": "l_8iu7peNh8_210.0_360.0"}
{"qid": 5021, "query": "Vlogger navigates a airport lobby.", "duration": 150, "vid": "l_8iu7peNh8_360.0_510.0"}
{"qid": 7286, "query": "A cathedral is lit up for Christmas.", "duration": 150, "vid": "l_8iu7peNh8_660.0_810.0"}
{"qid": 8847, "query": "A car is driving on a road beside a stretch decorated in blue string lights.", "duration": 150, "vid": "l_8iu7peNh8_510.0_660.0"}
{"qid": 2050, "query": "two kids wearing winter clothing walking around with their parents in the snow covered trail", "duration": 150, "vid": "ysd6xzuJ6S4_210.0_360.0"}
{"qid": 4318, "query": "Mother holds her kids hands when they are walking through the snow.", "duration": 150, "vid": "ysd6xzuJ6S4_360.0_510.0"}
{"qid": 4519, "query": "The two little girls come close to pet the cat on the man's lap.", "duration": 150, "vid": "ysd6xzuJ6S4_60.0_210.0"}
{"qid": 1531, "query": "A lady cuddling her dog", "duration": 150, "vid": "DHCmS2eK2sA_210.0_360.0"}
{"qid": 2496, "query": "Blonde woman in a white t shirt is driving a car without sunglasses.", "duration": 150, "vid": "DHCmS2eK2sA_60.0_210.0"}
{"qid": 3729, "query": "A woman is showing the large purple package she has in the car and in a house.", "duration": 146, "vid": "DHCmS2eK2sA_360.0_510.0"}
{"qid": 1247, "query": "A group playing a game on a game night", "duration": 150, "vid": "ycVc1jsaAA0_210.0_360.0"}
{"qid": 1657, "query": "A group of friends are decorating their house for christmas", "duration": 136, "vid": "ycVc1jsaAA0_360.0_510.0"}
{"qid": 2724, "query": "Children got a puppy surprize on chrism's day", "duration": 150, "vid": "ycVc1jsaAA0_60.0_210.0"}
{"qid": 9581, "query": "A laptop is lit up to it's full capacity.", "duration": 150, "vid": "jZnB2yjitMs_60.0_210.0"}
{"qid": 9989, "query": "Donald Trump speaks outside on a windy day.", "duration": 150, "vid": "jZnB2yjitMs_210.0_360.0"}
{"qid": 10026, "query": "Man in white shirt is talking next to a American flag.", "duration": 150, "vid": "jZnB2yjitMs_360.0_510.0"}
{"qid": 3794, "query": "A young teen with wavy hair initiates call with another person which appears on the lower half of his phone's screen.", "duration": 150, "vid": "hfJvu-roZGQ_210.0_360.0"}
{"qid": 6243, "query": "A young boy and a girl wearing glasses are speaking on a split screen.", "duration": 150, "vid": "hfJvu-roZGQ_360.0_510.0"}
{"qid": 6258, "query": "Man in orange top monologues to a iphone.", "duration": 150, "vid": "hfJvu-roZGQ_60.0_210.0"}
{"qid": 6968, "query": "Boy talks to camera with poofed up hair.", "duration": 130, "vid": "hfJvu-roZGQ_660.0_810.0"}
{"qid": 8446, "query": "Young Asian guy touching his chin and smiling while speaking", "duration": 150, "vid": "hfJvu-roZGQ_510.0_660.0"}
{"qid": 2327, "query": "Two women enter the dance club and have fun.", "duration": 144, "vid": "rB7geZEeSqY_360.0_510.0"}
{"qid": 6838, "query": "A group of women and a man smoke a hookah pipe and share a large drink.", "duration": 150, "vid": "rB7geZEeSqY_210.0_360.0"}
{"qid": 6840, "query": "The woman and her friends are sitting at an outdoor table chatting.", "duration": 150, "vid": "rB7geZEeSqY_60.0_210.0"}
{"qid": 649, "query": "A man walks through a forest and talks about it.", "duration": 150, "vid": "g9gHF7VEQ7E_360.0_510.0"}
{"qid": 4270, "query": "Drone footage of a canal being narrated by a man", "duration": 150, "vid": "g9gHF7VEQ7E_60.0_210.0"}
{"qid": 6424, "query": "A woman holds up a snail in her hand.", "duration": 150, "vid": "g9gHF7VEQ7E_210.0_360.0"}
{"qid": 3920, "query": "Girl doing weight lifting exercises", "duration": 150, "vid": "lxf17LCvWoM_360.0_510.0"}
{"qid": 6026, "query": "A woman enters a gym and attends a gym class.", "duration": 150, "vid": "lxf17LCvWoM_60.0_210.0"}
{"qid": 6138, "query": "Woman lifts weights at the gym.", "duration": 150, "vid": "lxf17LCvWoM_210.0_360.0"}
{"qid": 6940, "query": "Woman kicks a man into the water", "duration": 150, "vid": "lxf17LCvWoM_660.0_810.0"}
{"qid": 8946, "query": "A woman lifts a weights", "duration": 150, "vid": "lxf17LCvWoM_510.0_660.0"}
{"qid": 57, "query": "Woman puts food into a blender then uses it.", "duration": 150, "vid": "DtLH2de0Wwc_360.0_510.0"}
{"qid": 1484, "query": "Indian American women have breakfast after worship", "duration": 150, "vid": "DtLH2de0Wwc_210.0_360.0"}
{"qid": 4073, "query": "A woman showing some fruits on top of a kitchen counter some of which are inside plastic containers.", "duration": 150, "vid": "DtLH2de0Wwc_60.0_210.0"}
{"qid": 8587, "query": "Woman rolls together meatballs from a bowl.", "duration": 150, "vid": "DtLH2de0Wwc_510.0_660.0"}
{"qid": 8604, "query": "A family are in a bed playing chess..", "duration": 144, "vid": "DtLH2de0Wwc_660.0_810.0"}
{"qid": 2204, "query": "Three guys playing an indoor football", "duration": 124, "vid": "eI6UlnWm3CQ_210.0_360.0"}
{"qid": 3090, "query": "American tourist in France showing some beautifull sites", "duration": 150, "vid": "eI6UlnWm3CQ_60.0_210.0"}
{"qid": 3758, "query": "Goth man receives a manicure.", "duration": 150, "vid": "Zoae1zkIgIg_60.0_210.0"}
{"qid": 3594, "query": "A young man wearing yellow is making his bed.", "duration": 150, "vid": "_QWKqFFxaw8_60.0_210.0"}
{"qid": 4933, "query": "Man with yellow top sits on the floor.", "duration": 150, "vid": "_QWKqFFxaw8_210.0_360.0"}
{"qid": 9303, "query": "A man explains the National Weather Service snowfall forecasts for Massachusetts", "duration": 150, "vid": "iaWkqZHf_qk_360.0_510.0"}
{"qid": 9568, "query": "A man in a blue denim vest is sitting with a group and speaking to them.", "duration": 150, "vid": "utW1ItcMeJw_60.0_210.0"}
{"qid": 9956, "query": "A man with a grey beard and MAGA hat is speaking in a room with a group surrounding him.", "duration": 150, "vid": "utW1ItcMeJw_210.0_360.0"}
{"qid": 9997, "query": "Man in red hat and a black shirt is speaking in a group.", "duration": 150, "vid": "utW1ItcMeJw_360.0_510.0"}
{"qid": 2530, "query": "Girls sharing how to install portable toilet", "duration": 150, "vid": "0iz-ty5Wl3U_210.0_360.0"}
{"qid": 5350, "query": "Woman holds small white pipe.", "duration": 150, "vid": "0iz-ty5Wl3U_360.0_510.0"}
{"qid": 6103, "query": "A woman is giving demo of the toilet and explaining its features", "duration": 150, "vid": "0iz-ty5Wl3U_60.0_210.0"}
{"qid": 7392, "query": "Woman wears a yellow sweater inside a rv.", "duration": 150, "vid": "0iz-ty5Wl3U_660.0_810.0"}
{"qid": 8447, "query": "A lady with black top is climbing out of the room from window", "duration": 150, "vid": "0iz-ty5Wl3U_510.0_660.0"}
{"qid": 1489, "query": "A women talking while driving the car", "duration": 150, "vid": "H5PB7Ac49EQ_210.0_360.0"}
{"qid": 1775, "query": "Kids enjoying ride and playing in kid's shop", "duration": 150, "vid": "H5PB7Ac49EQ_60.0_210.0"}
{"qid": 3926, "query": "Blonde woman vlogs in the car wearing a floral shirt.", "duration": 150, "vid": "H5PB7Ac49EQ_360.0_510.0"}
{"qid": 8633, "query": "a woman addresses the camera while her partner watches", "duration": 150, "vid": "H5PB7Ac49EQ_660.0_810.0"}
{"qid": 8644, "query": "A guy with green top is talking to the camera with the lady sitting beside him in the car", "duration": 150, "vid": "H5PB7Ac49EQ_510.0_660.0"}
{"qid": 2944, "query": "Two guys practicing basket ball", "duration": 150, "vid": "8e8VeSBgq6k_210.0_360.0"}
{"qid": 6131, "query": "People are practicing basketball with a hoop that has a net behind it.", "duration": 150, "vid": "8e8VeSBgq6k_60.0_210.0"}
{"qid": 9932, "query": "Drone video of people walking in the desert.", "duration": 150, "vid": "oZ2fKRV6Ci8_360.0_510.0"}
{"qid": 10005, "query": "Soldiers in uniform are working from a control room with a civilian nearby.", "duration": 150, "vid": "oZ2fKRV6Ci8_210.0_360.0"}
{"qid": 10141, "query": "A rocket is fired into the atmosphere.", "duration": 150, "vid": "oZ2fKRV6Ci8_60.0_210.0"}
{"qid": 2794, "query": "Two girls talking where a girl doing her make-up and other reading messages from mobile", "duration": 150, "vid": "pMWJa4dYbkg_210.0_360.0"}
{"qid": 2858, "query": "A woman is standing outside in a black dress talking on the patio.", "duration": 150, "vid": "pMWJa4dYbkg_360.0_510.0"}
{"qid": 5187, "query": "Two young women shop together in a grocery store.", "duration": 150, "vid": "pMWJa4dYbkg_60.0_210.0"}
{"qid": 1417, "query": "Young black woman shows off her shoes.", "duration": 150, "vid": "iCbjk3uRtqA_360.0_510.0"}
{"qid": 2457, "query": "Young girl reorganizing her room", "duration": 150, "vid": "iCbjk3uRtqA_210.0_360.0"}
{"qid": 5218, "query": "A woman is setting up a tripod and her work area on a white desk.", "duration": 150, "vid": "iCbjk3uRtqA_60.0_210.0"}
{"qid": 7030, "query": "Vlogger shows different photos on her phone.", "duration": 150, "vid": "iCbjk3uRtqA_660.0_810.0"}
{"qid": 8830, "query": "A girl with black top on is putting make up on dressing up", "duration": 150, "vid": "iCbjk3uRtqA_510.0_660.0"}
{"qid": 3265, "query": "Three guys on a road trip pass through the Swat motorway in Pakistan", "duration": 150, "vid": "Rzu3oZyGzKw_210.0_360.0"}
{"qid": 3446, "query": "Two guys selfie video from a running car", "duration": 150, "vid": "Rzu3oZyGzKw_60.0_210.0"}
{"qid": 6772, "query": "A man gets \"drive through\" food from a group of people standing outside wearing yellow vests", "duration": 150, "vid": "Rzu3oZyGzKw_360.0_510.0"}
{"qid": 3022, "query": "A woman is recording herself talking and telling stories.", "duration": 150, "vid": "dDgjCgpZcyM_60.0_210.0"}
{"qid": 3132, "query": "A hand is pointing to rolled clothes on the red.", "duration": 150, "vid": "dDgjCgpZcyM_210.0_360.0"}
{"qid": 6589, "query": "The young woman shows off her collection of shoes.", "duration": 150, "vid": "dDgjCgpZcyM_360.0_510.0"}
{"qid": 9126, "query": "A long haired woman in shorts shows how she packs her clothes in a suitcase", "duration": 150, "vid": "dDgjCgpZcyM_510.0_660.0"}
{"qid": 1543, "query": "A girl talking with a face cream on her face", "duration": 150, "vid": "-ruy-w0bxvA_360.0_510.0"}
{"qid": 1770, "query": "Young girl wears a sweatshirt while sitting on her bed vloging.", "duration": 150, "vid": "-ruy-w0bxvA_210.0_360.0"}
{"qid": 4040, "query": "A young girl is highlighting papers and working on a laptop in a dark room", "duration": 150, "vid": "-ruy-w0bxvA_60.0_210.0"}
{"qid": 7018, "query": "Girl is wearing a white face mask.", "duration": 148, "vid": "-ruy-w0bxvA_510.0_660.0"}
{"qid": 9336, "query": "A man is piling sandbags as waters are flooding and is overlooking a flooding river with a reporter.", "duration": 150, "vid": "4bWatxhmIPA_60.0_210.0"}
{"qid": 9656, "query": "Homes, businesses and vehicles are being covered and surrounded by flood waters.", "duration": 150, "vid": "4bWatxhmIPA_60.0_210.0"}
{"qid": 180, "query": "Masked woman is holding her white dogs.", "duration": 150, "vid": "xqupGA-blZs_360.0_510.0"}
{"qid": 3947, "query": "Two women are in the living room doing exercises together.", "duration": 150, "vid": "xqupGA-blZs_60.0_210.0"}
{"qid": 5010, "query": "A woman wearing a mask walks along and talks to the camera.", "duration": 150, "vid": "xqupGA-blZs_210.0_360.0"}
{"qid": 7246, "query": "A fluffy white dog is interacting with a small boy in yellow.", "duration": 150, "vid": "xqupGA-blZs_510.0_660.0"}
{"qid": 3670, "query": "Girl making yummy Indian food", "duration": 150, "vid": "4jNdZg348kM_60.0_210.0"}
{"qid": 4803, "query": "A lady fills 5 empty shot glasses with multicoloured glass beads and then places a lit tealight on one", "duration": 150, "vid": "4jNdZg348kM_210.0_360.0"}
{"qid": 9222, "query": "A woman in a blue jacket is reporting next to a cut tree stump in a forest.", "duration": 150, "vid": "SlGmatigAy4_360.0_510.0"}
{"qid": 9612, "query": "Hundreds of vaccine containers are being prepared in a factory.", "duration": 150, "vid": "viPIq7-BdpU_60.0_210.0"}
{"qid": 9643, "query": "Man and woman sit on opposite sides of a circle table.", "duration": 150, "vid": "viPIq7-BdpU_210.0_360.0"}
{"qid": 9679, "query": "Ships are waiting out at see.", "duration": 150, "vid": "viPIq7-BdpU_360.0_510.0"}
{"qid": 9729, "query": "Two men are photographed together side by side.", "duration": 150, "vid": "2zPXFJiaj8o_360.0_510.0"}
{"qid": 9776, "query": "Man in navy suit talks outside a fenced building.", "duration": 150, "vid": "2zPXFJiaj8o_210.0_360.0"}
{"qid": 9890, "query": "The British Prime Minister applauds as a bald man leaves 10 Downing Street carrying a box.", "duration": 150, "vid": "2zPXFJiaj8o_60.0_210.0"}
{"qid": 9363, "query": "Fireman sharing some memories of horrible wild fire", "duration": 150, "vid": "FVULkg30vXs_60.0_210.0"}
{"qid": 1092, "query": "Woman walks down the street at night.", "duration": 150, "vid": "XXDq63KUBNo_360.0_510.0"}
{"qid": 4183, "query": "Two girls using a ladder to go into the sea", "duration": 150, "vid": "XXDq63KUBNo_210.0_360.0"}
{"qid": 5860, "query": "A woman giving a small tour of her beach hotel room and some gifts on the room", "duration": 150, "vid": "XXDq63KUBNo_60.0_210.0"}
{"qid": 9086, "query": "a group of women hula hoop in bathing suits.", "duration": 150, "vid": "XXDq63KUBNo_510.0_660.0"}
{"qid": 1314, "query": "Woman shows off a box and opens it to inspect the pastries sinde.", "duration": 150, "vid": "LldGeCXP6RQ_360.0_510.0"}
{"qid": 2472, "query": "white American women showing some beautiful wine cups", "duration": 150, "vid": "LldGeCXP6RQ_210.0_360.0"}
{"qid": 5192, "query": "A woman walking around the house with a glass base on her left hand", "duration": 150, "vid": "LldGeCXP6RQ_60.0_210.0"}
{"qid": 7499, "query": "Blonde woman wears a green football jersey.", "duration": 150, "vid": "LldGeCXP6RQ_660.0_810.0"}
{"qid": 8738, "query": "Two woman are sitting in white directors chairs in a room in the studio.", "duration": 150, "vid": "LldGeCXP6RQ_510.0_660.0"}
{"qid": 2344, "query": "A group of young people travel great distances in order to swim at exotic locations", "duration": 150, "vid": "Tfr5JhK-xr0_60.0_210.0"}
{"qid": 552, "query": "A woman is teaching how to ride a horse", "duration": 150, "vid": "jS3n3tcToHs_360.0_510.0"}
{"qid": 1500, "query": "A dark brown horse trots around the stable.", "duration": 150, "vid": "jS3n3tcToHs_60.0_210.0"}
{"qid": 3764, "query": "A group of people are riding on horses.", "duration": 150, "vid": "jS3n3tcToHs_210.0_360.0"}
{"qid": 7523, "query": "Jockeys ride their horses around the stable.", "duration": 150, "vid": "jS3n3tcToHs_510.0_660.0"}
{"qid": 1832, "query": "tourist encounter with elephant and rhino during safari", "duration": 150, "vid": "oc6imtgs6ig_60.0_210.0"}
{"qid": 3522, "query": "People on a safari watch herds of animals cross them during sunset.", "duration": 150, "vid": "oc6imtgs6ig_210.0_360.0"}
{"qid": 6327, "query": "A girl is recording a rhino and and a baby rhino.", "duration": 150, "vid": "oc6imtgs6ig_360.0_510.0"}
{"qid": 1320, "query": "A lady talks about a hair care she bought", "duration": 150, "vid": "FlONE32ZwmQ_360.0_510.0"}
{"qid": 1641, "query": "A lady having a coffee in the morning", "duration": 150, "vid": "FlONE32ZwmQ_60.0_210.0"}
{"qid": 6160, "query": "There is a time-lapse of a woman typing on her keyboard.", "duration": 150, "vid": "FlONE32ZwmQ_210.0_360.0"}
{"qid": 7360, "query": "A woman is pulling out and displaying a teal and white flexible container which folds into itself.", "duration": 150, "vid": "FlONE32ZwmQ_510.0_660.0"}
{"qid": 8559, "query": "A showcase of some of the mix that can be used for a tasty beverage.", "duration": 150, "vid": "FlONE32ZwmQ_660.0_810.0"}
{"qid": 736, "query": "People are walking along a mountain summit.", "duration": 150, "vid": "9fJEFi3ccwI_210.0_360.0"}
{"qid": 2061, "query": "a narrator is narrating while it shows different locations of the Yosemite park such as the Bridle veil falls", "duration": 150, "vid": "9fJEFi3ccwI_60.0_210.0"}
{"qid": 5504, "query": "Waterfall shown from every angle.", "duration": 150, "vid": "9fJEFi3ccwI_360.0_510.0"}
{"qid": 9452, "query": "A black man in a beanie is yelling into a megaphone.", "duration": 150, "vid": "7MG8MlfEL-k_60.0_210.0"}
{"qid": 9487, "query": "A short haired black woman is speaking to a crowd gathered at night near a display of red and blue lights.", "duration": 150, "vid": "7MG8MlfEL-k_360.0_510.0"}
{"qid": 9508, "query": "A man is holding a white speaker and talking to a group of people at night.", "duration": 150, "vid": "7MG8MlfEL-k_210.0_360.0"}
{"qid": 9701, "query": "Politicians are congregated in a large room with an octagonal wooden stand in the middle.", "duration": 150, "vid": "Psbtq8LUdqY_210.0_360.0"}
{"qid": 9966, "query": "People are waving flags during a protest.", "duration": 150, "vid": "Psbtq8LUdqY_60.0_210.0"}
{"qid": 10168, "query": "People at a desk speak prepared remarks into long mics.", "duration": 150, "vid": "Psbtq8LUdqY_360.0_510.0"}
{"qid": 546, "query": "Women is making yummy breakfast", "duration": 150, "vid": "POU_6XcdD1s_60.0_210.0"}
{"qid": 3714, "query": "Woman sets up her living room.", "duration": 150, "vid": "POU_6XcdD1s_360.0_510.0"}
{"qid": 3798, "query": "A woman takes 2 blue and white pillow cases and puts them over a couple of pillows.", "duration": 150, "vid": "POU_6XcdD1s_210.0_360.0"}
{"qid": 7417, "query": "Woman picks up a tomato before she cuts it.", "duration": 150, "vid": "POU_6XcdD1s_660.0_810.0"}
{"qid": 8507, "query": "A woman in green top is putting ingredients in deep pot to cook.", "duration": 150, "vid": "POU_6XcdD1s_510.0_660.0"}
{"qid": 1731, "query": "Blonde woman looks at clothes from racks picking some of them up.", "duration": 150, "vid": "jqt8j8h_U_8_360.0_510.0"}
{"qid": 2539, "query": "A blonde girl is showing her outfit for the day in front of the mirror.", "duration": 150, "vid": "jqt8j8h_U_8_60.0_210.0"}
{"qid": 6242, "query": "Blonde woman stands at a store end cap.", "duration": 150, "vid": "jqt8j8h_U_8_210.0_360.0"}
{"qid": 7013, "query": "Two women have a conversation in a room filled with mannequins.", "duration": 150, "vid": "jqt8j8h_U_8_510.0_660.0"}
{"qid": 9243, "query": "A heavy set man in a pink polo is reporting near a building close to flood level waters.", "duration": 150, "vid": "sbirEH3xfpk_360.0_510.0"}
{"qid": 1082, "query": "A woman showing an overflowing plate of a meat dish with red sauce.", "duration": 150, "vid": "v0x-YFvZXZY_360.0_510.0"}
{"qid": 5877, "query": "Blonde woman stands next to a lot of swords.", "duration": 150, "vid": "v0x-YFvZXZY_60.0_210.0"}
{"qid": 8123, "query": "A blonde woman is touring the inside of a cathedral with massive arches and stained glass windows.", "duration": 150, "vid": "v0x-YFvZXZY_210.0_360.0"}
{"qid": 260, "query": "Woman talks to the camera next to cardio equipment.", "duration": 150, "vid": "k4LLzwmwJS8_210.0_360.0"}
{"qid": 2427, "query": "Woman makes and pours different kind of drinks.", "duration": 150, "vid": "k4LLzwmwJS8_60.0_210.0"}
{"qid": 5211, "query": "A woman in a black sweater in working on a gray laptop with stickers on it.", "duration": 150, "vid": "k4LLzwmwJS8_360.0_510.0"}
{"qid": 8342, "query": "A girl is sharing her daily routine", "duration": 150, "vid": "k4LLzwmwJS8_510.0_660.0"}
{"qid": 8555, "query": "A lady with red sports bralette is doing yoga indoors", "duration": 150, "vid": "k4LLzwmwJS8_660.0_810.0"}
{"qid": 3140, "query": "couple enjoy tour in north of Pakistan sharing some sceneries", "duration": 150, "vid": "zpRzgcjq0x8_360.0_510.0"}
{"qid": 5416, "query": "Footage of open tombs with bones inside on a cemetery", "duration": 150, "vid": "zpRzgcjq0x8_60.0_210.0"}
{"qid": 7870, "query": "A man and woman drove on a narrow bumpy road in a vehicle.", "duration": 150, "vid": "zpRzgcjq0x8_210.0_360.0"}
{"qid": 3445, "query": "A young woman filming the beach and the view from her room's balcony.", "duration": 150, "vid": "fVJmyaS_w4M_360.0_510.0"}
{"qid": 7785, "query": "Woman stands by a door and points out the locks.", "duration": 150, "vid": "fVJmyaS_w4M_210.0_360.0"}
{"qid": 7827, "query": "A young woman in a white dress sits on her bed as she speaks to the camera.", "duration": 150, "vid": "fVJmyaS_w4M_60.0_210.0"}
{"qid": 2359, "query": "People walk across a wooden bridge in the wilderness.", "duration": 150, "vid": "Hdfmhdj3Efg_60.0_210.0"}
{"qid": 5934, "query": "Man dances on a bridge.", "duration": 150, "vid": "Hdfmhdj3Efg_210.0_360.0"}
{"qid": 7594, "query": "Man in yellow top walks down the street.", "duration": 150, "vid": "Hdfmhdj3Efg_360.0_510.0"}
{"qid": 799, "query": "People wearing dresses dance at a crowded formal event.", "duration": 150, "vid": "WbYohTnOUd8_360.0_510.0"}
{"qid": 1980, "query": "Little explaing her dress and make up before going to party in India", "duration": 150, "vid": "WbYohTnOUd8_60.0_210.0"}
{"qid": 4612, "query": "Girl wears a bright pink hat.", "duration": 150, "vid": "WbYohTnOUd8_210.0_360.0"}
{"qid": 1575, "query": "Girl showing some beautiful scene out side campus", "duration": 150, "vid": "7gVqrrCbcOw_210.0_360.0"}
{"qid": 3919, "query": "Woman goes through the objects on her bed.", "duration": 150, "vid": "7gVqrrCbcOw_60.0_210.0"}
{"qid": 5291, "query": "A woman describes her daily workout routine while driving in her car", "duration": 150, "vid": "7gVqrrCbcOw_360.0_510.0"}
{"qid": 8662, "query": "A girl with blue T shirt is talking to the camera after having a shower.", "duration": 132, "vid": "7gVqrrCbcOw_510.0_660.0"}
{"qid": 356, "query": "Vlogger looks at the aisles in a grocery store.", "duration": 150, "vid": "M-zRrwcpfMg_360.0_510.0"}
{"qid": 1706, "query": "Dumplings are cooking in a pan.", "duration": 150, "vid": "M-zRrwcpfMg_210.0_360.0"}
{"qid": 2827, "query": "Desi Indian girl review on shopping in china", "duration": 150, "vid": "M-zRrwcpfMg_60.0_210.0"}
{"qid": 8957, "query": "A woman stands by a car while she eats some food.", "duration": 150, "vid": "M-zRrwcpfMg_510.0_660.0"}
{"qid": 4475, "query": "A young man preparing a backpack on a bed", "duration": 150, "vid": "MH2nvDD_uo0_60.0_210.0"}
{"qid": 5485, "query": "Man gets a bag from the car and shuts the door.", "duration": 150, "vid": "MH2nvDD_uo0_210.0_360.0"}
{"qid": 6691, "query": "A boy is sitting on his girl's lap.", "duration": 150, "vid": "MH2nvDD_uo0_360.0_510.0"}
{"qid": 2349, "query": "Man in pink shirt stands next to a man made water feature.", "duration": 150, "vid": "IDvx9c2f_VY_360.0_510.0"}
{"qid": 4480, "query": "Woman shows off buildings in European country.", "duration": 150, "vid": "IDvx9c2f_VY_210.0_360.0"}
{"qid": 8235, "query": "Man in pink stands in front of a large circular building.", "duration": 150, "vid": "IDvx9c2f_VY_60.0_210.0"}
{"qid": 959, "query": "A bowl of meat and potatoes are in a iron bowl.", "duration": 150, "vid": "Pdrc545bIl4_360.0_510.0"}
{"qid": 2026, "query": "an asian man wearing glasses orders different dishes to try the different national dishes of georgia", "duration": 150, "vid": "Pdrc545bIl4_60.0_210.0"}
{"qid": 6521, "query": "A man with glasses and a shirt with strips is being recorded while eating his food.", "duration": 150, "vid": "Pdrc545bIl4_210.0_360.0"}
{"qid": 268, "query": "A blood pressure machine shows a reading.", "duration": 150, "vid": "NkmxlSJMYYs_360.0_510.0"}
{"qid": 4926, "query": "Chart showing values recorded over two days.", "duration": 150, "vid": "NkmxlSJMYYs_60.0_210.0"}
{"qid": 6071, "query": "A plate of lunch is being shown with an entree, fries and ketchup.", "duration": 150, "vid": "NkmxlSJMYYs_210.0_360.0"}
{"qid": 8964, "query": "Overhead shots of two tacos on a plate.", "duration": 150, "vid": "NkmxlSJMYYs_510.0_660.0"}
{"qid": 1385, "query": "Girl taking off dirt from face aggressively", "duration": 150, "vid": "cIElQi5Sfos_210.0_360.0"}
{"qid": 2568, "query": "A video capturing a recording studio equipments", "duration": 150, "vid": "cIElQi5Sfos_60.0_210.0"}
{"qid": 6066, "query": "Group of kids are sitting on a bench.", "duration": 150, "vid": "cIElQi5Sfos_360.0_510.0"}
{"qid": 7152, "query": "Teen boy in blue shirt paces around the kitchen.", "duration": 150, "vid": "cIElQi5Sfos_510.0_660.0"}
{"qid": 7315, "query": "A man is talking to different people in a room.", "duration": 150, "vid": "cIElQi5Sfos_660.0_810.0"}
{"qid": 2066, "query": "A woman is taking out a box of pizza from the fridge and opening it.", "duration": 150, "vid": "tLy1eqDOrMU_360.0_510.0"}
{"qid": 5677, "query": "Vlogger shows the different items on their bathroom counter.", "duration": 150, "vid": "tLy1eqDOrMU_60.0_210.0"}
{"qid": 6780, "query": "A video showing the daily life of a family in Costco", "duration": 150, "vid": "tLy1eqDOrMU_210.0_360.0"}
{"qid": 58, "query": "Woman holds up beauty product to the camera.", "duration": 150, "vid": "K4ReSUwx6iQ_360.0_510.0"}
{"qid": 1263, "query": "Woman holds up her skin care products to see.", "duration": 150, "vid": "K4ReSUwx6iQ_210.0_360.0"}
{"qid": 1649, "query": "Woman holds up her phone to show her haircut.", "duration": 150, "vid": "K4ReSUwx6iQ_60.0_210.0"}
{"qid": 8914, "query": "Man showing fabric samples to the couple.", "duration": 150, "vid": "K4ReSUwx6iQ_510.0_660.0"}
{"qid": 9914, "query": "Journalist talks about Trump vying for reelection", "duration": 150, "vid": "PPSICA2UeP0_360.0_510.0"}
{"qid": 9955, "query": "Police and protestors are fighting each other.", "duration": 150, "vid": "PPSICA2UeP0_60.0_210.0"}
{"qid": 10297, "query": "Tanks and military forces are moving across city streets", "duration": 150, "vid": "PPSICA2UeP0_210.0_360.0"}
{"qid": 994, "query": "People are snowboarding down a mountain.", "duration": 150, "vid": "hLk1Uxnw-iA_360.0_510.0"}
{"qid": 2029, "query": "A man walks down a snow-walled path then points to the gondola line", "duration": 150, "vid": "hLk1Uxnw-iA_60.0_210.0"}
{"qid": 2141, "query": "A girl to try out ice skating for the first time", "duration": 150, "vid": "hLk1Uxnw-iA_210.0_360.0"}
{"qid": 9752, "query": "People protest in front of US landmarks.", "duration": 150, "vid": "P54sP0Nlngg_60.0_210.0"}
{"qid": 10128, "query": "A shirtless man with a shaved head is participating in a type of march.", "duration": 150, "vid": "P54sP0Nlngg_360.0_510.0"}
{"qid": 10256, "query": "Blonde woman is talking to a bald man in front of a crowd.", "duration": 150, "vid": "P54sP0Nlngg_210.0_360.0"}
{"qid": 9587, "query": "Man with pink scarf talks in a press conference.", "duration": 150, "vid": "38Zc__m3nKQ_210.0_360.0"}
{"qid": 10110, "query": "A man giving a speech at the podium", "duration": 150, "vid": "38Zc__m3nKQ_60.0_210.0"}
{"qid": 10130, "query": "Man in pink scarf speaks at a podium.", "duration": 150, "vid": "38Zc__m3nKQ_360.0_510.0"}
{"qid": 882, "query": "A girl picks between dresses that are folded.", "duration": 150, "vid": "xOJWLSOp3zU_360.0_510.0"}
{"qid": 5689, "query": "Woman shows all her clothes in piles.", "duration": 150, "vid": "xOJWLSOp3zU_210.0_360.0"}
{"qid": 6333, "query": "The young woman points out her clothes folded on the bed.", "duration": 150, "vid": "xOJWLSOp3zU_60.0_210.0"}
{"qid": 1421, "query": "A couple stands before a priest and recites wedding vows.", "duration": 150, "vid": "G-4tJ63X5vo_360.0_510.0"}
{"qid": 1636, "query": "A groom getting dressed for his wedding", "duration": 150, "vid": "G-4tJ63X5vo_60.0_210.0"}
{"qid": 4794, "query": "A man and a woman walk down a church aisle separately and get married.", "duration": 150, "vid": "G-4tJ63X5vo_210.0_360.0"}
{"qid": 6983, "query": "Man in white suits speaks into the mic then drops it.", "duration": 146, "vid": "G-4tJ63X5vo_510.0_660.0"}
{"qid": 890, "query": "Woman in striped shirt holds up camera equipment.", "duration": 150, "vid": "vbqZqioIK1c_60.0_210.0"}
{"qid": 1147, "query": "Woman in striped shirt holds up a steady cam.", "duration": 150, "vid": "vbqZqioIK1c_210.0_360.0"}
{"qid": 2301, "query": "Woman in striped shirt holds onto her camera tripod.", "duration": 150, "vid": "vbqZqioIK1c_360.0_510.0"}
{"qid": 3393, "query": "A little girl travel vlog with her parents", "duration": 150, "vid": "OkHhVRpCOxA_210.0_360.0"}
{"qid": 5796, "query": "A young Indian girl giving a small tour of her and her family's hotel room", "duration": 150, "vid": "OkHhVRpCOxA_60.0_210.0"}
{"qid": 7657, "query": "Girl stands in front of a gray SUV.", "duration": 150, "vid": "OkHhVRpCOxA_360.0_510.0"}
{"qid": 1890, "query": "Young Asian couple arrived at beach enjoying and making underwater video", "duration": 150, "vid": "boJssjt0HGk_60.0_210.0"}
{"qid": 2135, "query": "A guy enjoying ACAI and half chunky monkey", "duration": 150, "vid": "boJssjt0HGk_210.0_360.0"}
{"qid": 6493, "query": "A couple is hanging out on a rocky outcrop overlooking the coast.", "duration": 150, "vid": "boJssjt0HGk_360.0_510.0"}
{"qid": 214, "query": "The vlogger is playing a bingo game.", "duration": 150, "vid": "uErmi6kKVIs_360.0_510.0"}
{"qid": 3689, "query": "Woman straights her hair with a iron.", "duration": 150, "vid": "uErmi6kKVIs_210.0_360.0"}
{"qid": 5248, "query": "A child drives a small quadbike and motorbike around a sandy area", "duration": 150, "vid": "uErmi6kKVIs_60.0_210.0"}
{"qid": 773, "query": "Masked woman is walking down the street.", "duration": 150, "vid": "SPpXtLSyyDw_60.0_210.0"}
{"qid": 5414, "query": "Woman monologues from the passenger seat as her boyfriend drives.", "duration": 150, "vid": "SPpXtLSyyDw_360.0_510.0"}
{"qid": 8175, "query": "Woman walks from the bedroom to give a tour of the bathroom.", "duration": 150, "vid": "SPpXtLSyyDw_210.0_360.0"}
{"qid": 9165, "query": "As a boat cruises along, food and drinks are waiting", "duration": 150, "vid": "SPpXtLSyyDw_660.0_810.0"}
{"qid": 4236, "query": "Man in red sweatshirt stands in front of the same one story house.", "duration": 150, "vid": "8vmxYRgWt7s_60.0_210.0"}
{"qid": 4307, "query": "The woman wears a Nasa sweatshirt while pointing out areas of camp at night.", "duration": 150, "vid": "8vmxYRgWt7s_360.0_510.0"}
{"qid": 7822, "query": "Woman in black top stands in front of a large lake.", "duration": 150, "vid": "8vmxYRgWt7s_210.0_360.0"}
{"qid": 4196, "query": "A man talks to people sitting under a covered area outside", "duration": 150, "vid": "0HAACVba7kI_210.0_360.0"}
{"qid": 5763, "query": "Man in yellow top jokes around outside.", "duration": 150, "vid": "0HAACVba7kI_60.0_210.0"}
{"qid": 6752, "query": "A group of friends are having fun in jungle", "duration": 150, "vid": "0HAACVba7kI_360.0_510.0"}
{"qid": 9206, "query": "A reporter in a yellow coat, goggles and face mask is reporting remotely at night to an anchor back at the station.", "duration": 150, "vid": "kXP0STLTkKY_210.0_360.0"}
{"qid": 9360, "query": "Weather reporter reports horrible wild fire", "duration": 150, "vid": "kXP0STLTkKY_60.0_210.0"}
{"qid": 1863, "query": "a group of people are exploring social media", "duration": 150, "vid": "b2RgDRFM55c_60.0_210.0"}
{"qid": 3308, "query": "A man promotes Jatt Prabhjot while flashing multile samples of his channel.", "duration": 150, "vid": "b2RgDRFM55c_360.0_510.0"}
{"qid": 6408, "query": "A variety of people are using different electronic devices.", "duration": 150, "vid": "b2RgDRFM55c_210.0_360.0"}
{"qid": 1086, "query": "Vlogger is going through their closet.", "duration": 150, "vid": "l3wh1vfwUO0_210.0_360.0"}
{"qid": 3189, "query": "Woman opens a McDonald's breakfast in the car.", "duration": 150, "vid": "l3wh1vfwUO0_60.0_210.0"}
{"qid": 7851, "query": "Woman opens and closes her nail clipper case.", "duration": 150, "vid": "l3wh1vfwUO0_360.0_510.0"}
{"qid": 9301, "query": "An Australian news broadcast covers the New South Wales coastal downpour", "duration": 150, "vid": "OOAkHHhtq28_60.0_210.0"}
{"qid": 2939, "query": "A woman sits down to read and write.", "duration": 150, "vid": "WVfXEIyanKY_210.0_360.0"}
{"qid": 3587, "query": "Girl filming her activities at home", "duration": 150, "vid": "WVfXEIyanKY_60.0_210.0"}
{"qid": 5175, "query": "A woman prepares a coffee drink and makes it frothy.", "duration": 150, "vid": "WVfXEIyanKY_360.0_510.0"}
{"qid": 7472, "query": "Woman makes herself a smoothie then pours it into a glass.", "duration": 150, "vid": "WVfXEIyanKY_660.0_810.0"}
{"qid": 8916, "query": "Woman spreads peanut butter and seasonings on a tortilla.", "duration": 150, "vid": "WVfXEIyanKY_510.0_660.0"}
{"qid": 4754, "query": "Couple sharing there plan to visit japan", "duration": 150, "vid": "UqMooNqP7Hs_60.0_210.0"}
{"qid": 5445, "query": "Japanese chefs make a lot of sushi.", "duration": 150, "vid": "UqMooNqP7Hs_360.0_510.0"}
{"qid": 6567, "query": "A woman is browsing the selection of fish and crab at a seafood market.", "duration": 150, "vid": "UqMooNqP7Hs_210.0_360.0"}
{"qid": 9148, "query": "Vlogger points to different sushi on a wooden board.", "duration": 150, "vid": "UqMooNqP7Hs_510.0_660.0"}
{"qid": 717, "query": "Woman in pink bathing suit has a argument on the tv.", "duration": 150, "vid": "GgUuz0sxwF4_60.0_210.0"}
{"qid": 3040, "query": "Asian couple having fun at beach", "duration": 150, "vid": "GgUuz0sxwF4_360.0_510.0"}
{"qid": 4486, "query": "Woman with white top eats dinner in a restaurant.", "duration": 150, "vid": "GgUuz0sxwF4_210.0_360.0"}
{"qid": 3340, "query": "Tourist girl showing some beautiful scene of sunset from airplane window", "duration": 126, "vid": "v-h_XnpqQ2k_360.0_510.0"}
{"qid": 5937, "query": "Blonde woman talks while drinking Starbucks.", "duration": 150, "vid": "v-h_XnpqQ2k_210.0_360.0"}
{"qid": 7833, "query": "A blonde girl with a white shirt explains her plans to get some awesome pictures during sunset at the Louvre.", "duration": 150, "vid": "v-h_XnpqQ2k_60.0_210.0"}
{"qid": 3237, "query": "A girl talking about old buildings", "duration": 150, "vid": "Fptgkh2-2DQ_210.0_360.0"}
{"qid": 5519, "query": "Woman takes out her lip liner, applies it, and puts it away.", "duration": 150, "vid": "Fptgkh2-2DQ_360.0_510.0"}
{"qid": 7636, "query": "Woman walks around in a medical mask.", "duration": 150, "vid": "Fptgkh2-2DQ_60.0_210.0"}
{"qid": 5482, "query": "Man in white top scooters down the street.", "duration": 150, "vid": "N4VtpYgZLVg_210.0_360.0"}
{"qid": 5952, "query": "A man in a red shirt hikes up a mountain trail.", "duration": 150, "vid": "N4VtpYgZLVg_360.0_510.0"}
{"qid": 7729, "query": "Man in white shirt eat fries.", "duration": 150, "vid": "N4VtpYgZLVg_60.0_210.0"}
{"qid": 117, "query": "Woman wears a gray mask in a Dollar Tree.", "duration": 150, "vid": "jAVGP5XwXns_360.0_510.0"}
{"qid": 243, "query": "Man is wearing a beanie and sweatshirt in the kitchen.", "duration": 150, "vid": "jAVGP5XwXns_210.0_360.0"}
{"qid": 6171, "query": "The woman prepares a glass of coffee on the coffee maker.", "duration": 150, "vid": "jAVGP5XwXns_60.0_210.0"}
{"qid": 8580, "query": "The long haired woman shows off the seed packets she has acquired.", "duration": 150, "vid": "jAVGP5XwXns_660.0_810.0"}
{"qid": 8719, "query": "A woman in black blouse is talking about products in front of the camera", "duration": 150, "vid": "jAVGP5XwXns_510.0_660.0"}
{"qid": 1112, "query": "A woman is touring a large ballroom area with a christmas tree display.", "duration": 150, "vid": "0SkdELRCIpc_210.0_360.0"}
{"qid": 1936, "query": "Shows view of hotel room then shows a woman wearing white shirt and headband talking in front of camera in hotel room", "duration": 150, "vid": "0SkdELRCIpc_60.0_210.0"}
{"qid": 7887, "query": "Man in white jacket plays the guitar.", "duration": 150, "vid": "0SkdELRCIpc_360.0_510.0"}
{"qid": 800, "query": "Overhead shots of breakfast on white plates.", "duration": 150, "vid": "COXt_GfXa2M_210.0_360.0"}
{"qid": 4658, "query": "A woman stood on a balcony talks to the camera close up about her day.", "duration": 150, "vid": "COXt_GfXa2M_60.0_210.0"}
{"qid": 5739, "query": "Overhead shots of pizza from above.", "duration": 150, "vid": "COXt_GfXa2M_360.0_510.0"}
{"qid": 294, "query": "Man in black jacket checks out a food stall.", "duration": 150, "vid": "PV8maMvPqhw_210.0_360.0"}
{"qid": 409, "query": "Woman opens food wrapped in white and holds it.", "duration": 150, "vid": "PV8maMvPqhw_60.0_210.0"}
{"qid": 1003, "query": "Man is holding food in a spoon.", "duration": 150, "vid": "PV8maMvPqhw_210.0_360.0"}
{"qid": 1146, "query": "A man looks at a pot of soup that is being cooked and served.", "duration": 150, "vid": "PV8maMvPqhw_60.0_210.0"}
{"qid": 6187, "query": "A man is at the noodle shop showing the verity of ingredients that you can add according to your choice.", "duration": 150, "vid": "PV8maMvPqhw_360.0_510.0"}
{"qid": 7226, "query": "Vlogger stirs the food with their chopsticks.", "duration": 150, "vid": "PV8maMvPqhw_510.0_660.0"}
{"qid": 8142, "query": "Different foods are on a table.", "duration": 150, "vid": "PV8maMvPqhw_360.0_510.0"}
{"qid": 8371, "query": "a man holds up his meal to the camera to see", "duration": 150, "vid": "PV8maMvPqhw_660.0_810.0"}
{"qid": 1756, "query": "A homemaker laments the need to keep changing the dirty tablecloth", "duration": 150, "vid": "fiyIhcNuSaA_60.0_210.0"}
{"qid": 2613, "query": "Desi women filming shopping day", "duration": 150, "vid": "fiyIhcNuSaA_360.0_510.0"}
{"qid": 6236, "query": "A vlogger happily talks about the one day her hubby will finally to come in to her channel", "duration": 150, "vid": "fiyIhcNuSaA_210.0_360.0"}
{"qid": 8602, "query": "A woman with black hair and black top is showing and describing her earring while a kid is sitting on the left.", "duration": 150, "vid": "fiyIhcNuSaA_660.0_810.0"}
{"qid": 8762, "query": "Cooking Indian foods like dosa and phulka", "duration": 150, "vid": "fiyIhcNuSaA_510.0_660.0"}
{"qid": 3776, "query": "Boy showing some art techniques", "duration": 150, "vid": "9Kt7THRXaJM_60.0_210.0"}
{"qid": 5083, "query": "Woman in white top shows off her vanity.", "duration": 150, "vid": "9Kt7THRXaJM_360.0_510.0"}
{"qid": 5102, "query": "Artist turns black square in circle to spread paint.", "duration": 150, "vid": "9Kt7THRXaJM_210.0_360.0"}
{"qid": 7031, "query": "A person is throwing paints onto a spinning palette to make a design.", "duration": 150, "vid": "9Kt7THRXaJM_660.0_810.0"}
{"qid": 7113, "query": "Someone is painting using a spinning palette and bright clashing colors.", "duration": 150, "vid": "9Kt7THRXaJM_510.0_660.0"}
{"qid": 803, "query": "Woman tries on a blue hat.", "duration": 150, "vid": "ibWW_MYY1C8_210.0_360.0"}
{"qid": 1095, "query": "Woman talks to camera next to a red railing.", "duration": 150, "vid": "ibWW_MYY1C8_60.0_210.0"}
{"qid": 6788, "query": "A video showing a woman in dark red coat walking around committee and welfare society", "duration": 150, "vid": "ibWW_MYY1C8_360.0_510.0"}
{"qid": 2107, "query": "A blogger video covering major London attractions", "duration": 150, "vid": "E-nJHaHlyG8_60.0_210.0"}
{"qid": 8172, "query": "From the observation deck we can see the dome of the cathedral.", "duration": 150, "vid": "E-nJHaHlyG8_210.0_360.0"}
{"qid": 8244, "query": "Man in pink top is eating a sandwich.", "duration": 150, "vid": "E-nJHaHlyG8_360.0_510.0"}
{"qid": 3641, "query": "A child with a green mask is waiting for the elevator.", "duration": 150, "vid": "sk3p9-ynrNE_60.0_210.0"}