-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLive-Perception.json
More file actions
8193 lines (8193 loc) · 242 KB
/
Live-Perception.json
File metadata and controls
8193 lines (8193 loc) · 242 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"video_source": "Vript-RR",
"video_id": "-n5eIlDgY5w",
"video_path": "-n5eIlDgY5w.mp4",
"duration_sec": 3850.12,
"fps": 25.0,
"question_type": "Live-Perception",
"question_id": "-n5eIlDgY5w@1",
"question": "In the video, there is a female pig who is in a pink complexion, wearing a orange coat, red scarf, and brown hat, standing on yellow skis. This character is presented with an object that matches the color of the skis she is standing on. What is the object that this character receives?",
"question_time": 543.76,
"choices": [
"(A) A yellow trophy.",
"(B) A yellow ornament.",
"(C) A yellow medal.",
"(D) A yellow cup."
],
"correct_answer": "A",
"time_reference": [
534.56,
543.76
]
},
{
"video_source": "Vript-RR",
"video_id": "-n5eIlDgY5w",
"video_path": "-n5eIlDgY5w.mp4",
"duration_sec": 3850.12,
"fps": 25.0,
"question_type": "Live-Perception",
"question_id": "-n5eIlDgY5w@2",
"question": "In the video, there is a certain creature with large, friendly eyes that initially approaches two other characters curiously from jumping out of a grey bucket, but upon interaction, it becomes startled. What is this creature that exhibits such behavior?",
"question_time": 1537.8,
"choices": [
"(A) A small, brown animated mouse.",
"(B) A small, brown animated hedgehog.",
"(C) A small, brown animated squirrel.",
"(D) A small, brown animated rabbit."
],
"correct_answer": "B",
"time_reference": [
1518.64,
1537.8
]
},
{
"video_source": "Vript-RR",
"video_id": "-RUFxvbnGNU",
"video_path": "-RUFxvbnGNU.mp4",
"duration_sec": 2783.155,
"fps": 23.976023976023978,
"question_type": "Live-Perception",
"question_id": "-RUFxvbnGNU@1",
"question": "In the video, there is a scene that there is a character who is seen communicating to an off-camera audience with great enthusiasm and using expressive hand gestures. The character is wearing a distinctively patterned shirt with blue and purple stripe and is wearing an object on his neck. Could you identify what specific item the character has adorned their neck with?",
"question_time": 432.81,
"choices": [
"(A) A bow tie.",
"(B) A scarf.",
"(C) A necktie.",
"(D) A necklace."
],
"correct_answer": "B",
"time_reference": [
426.593,
432.807
]
},
{
"video_source": "LongVideoBench",
"video_id": "NAJOZTNkhlI",
"video_path": "NAJOZTNkhlI.mp4",
"duration_sec": 3135.5,
"fps": 23.976023976023978,
"question_type": "Live-Perception",
"question_id": "NAJOZTNkhlI@1",
"question": "In front of a pure black background, there is a man with cornrows. He is wearing a black coat and sunglasses. What did he do when he first appeared?",
"question_time": 102.94,
"choices": [
"(A) He took off his sunglasses",
"(B) He clenched his right hand into a fist",
"(C) He raised his right hand",
"(D) He touched his head with his hand",
"(E) He raised his left hand"
],
"correct_answer": "C",
"time_reference": [
102.94,
102.94
]
},
{
"video_source": "LongVideoBench",
"video_id": "2W2ZkYARds4",
"video_path": "2W2ZkYARds4.mp4",
"duration_sec": 3024.89,
"fps": 23.976023976023978,
"question_type": "Live-Perception",
"question_id": "2W2ZkYARds4@2",
"question": "In a grassy field, there are many trees in the distance, a house at the back right, a yellow warning tape nearby, and 6 policemen walking forward. What happened when the yellow warning tape appeared?",
"question_time": 1036.99,
"choices": [
"(A) A policeman with white hair bent down in the front right",
"(B) A policeman cut the warning tape",
"(C) A policeman wearing sunglasses at the back right raised his hand",
"(D) A police dog ran out",
"(E) A policeman in the back took a photo"
],
"correct_answer": "C",
"time_reference": [
1036.99,
1036.99
]
},
{
"video_source": "LongVideoBench",
"video_id": "vVRC-0VKPrg",
"video_path": "vVRC-0VKPrg.mp4",
"duration_sec": 2354.8,
"fps": 23.976023976023978,
"question_type": "Live-Perception",
"question_id": "vVRC-0VKPrg@1",
"question": "At the top of the screen, there is a red search box. Below the search box, there are characters aligned to the left, which are composed of red and black colors. In the bottom right corner, a man wearing sunglasses and dressed in black is speaking into a microphone. What is this man doing?",
"question_time": 334.21,
"choices": [
"(A) The man is drawing a circle with his hand",
"(B) The man is adjusting his glasses",
"(C) The man is making a scissor hand gesture",
"(D) The man is making a heart hand gesture",
"(E) The man is making an OK hand gesture"
],
"correct_answer": "C",
"time_reference": [
334.21,
334.21
]
},
{
"video_source": "LongVideoBench",
"video_id": "KTY9bogonyw",
"video_path": "KTY9bogonyw.mp4",
"duration_sec": 2617.55,
"fps": 23.976023976023978,
"question_type": "Live-Perception",
"question_id": "KTY9bogonyw@1",
"question": "In the scene where red ribbons are floating in the air, what is the woman with black hair, dressed in a white coat and wearing a watch, doing?",
"question_time": 756.71,
"choices": [
"(A) Putting her hand on her temple",
"(B) Raising both hands",
"(C) Facing away from the mirror",
"(D) Raising one hand",
"(E) Covering her nose with her hand"
],
"correct_answer": "C",
"time_reference": [
756.71,
756.71
]
},
{
"video_source": "LongVideoBench",
"video_id": "UO_6TQnnOxM",
"video_path": "UO_6TQnnOxM.mp4",
"duration_sec": 3573.96,
"fps": 23.976023976023978,
"question_type": "Live-Perception",
"question_id": "UO_6TQnnOxM@1",
"question": "The video shows the interior of a museum with two white light fixtures. Many white cabinets containing different artifacts are placed on the dark-colored floor. On the right side of the screen, a woman is sitting in a room illuminated by white lights, shown in a small video frame. What material is the protective cover placed over the artifacts on the cabinet made of?",
"question_time": 121.96,
"choices": [
"(A) Ceramics",
"(B) Plastic",
"(C) Glass",
"(D) Iron",
"(E) Acrylic"
],
"correct_answer": "C",
"time_reference": [
121.96,
121.96
]
},
{
"video_source": "LongVideoBench",
"video_id": "b__dUom9AcQ",
"video_path": "b__dUom9AcQ.mp4",
"duration_sec": 2454.92,
"fps": 23.976023976023978,
"question_type": "Live-Perception",
"question_id": "b__dUom9AcQ@1",
"question": "In front of the curtain, there is a transparent lectern with red text on it. Next to the lectern, a person wearing a blue coat is raising their right hand and speaking with their head lowered. What item is present in this scene?",
"question_time": 192.15,
"choices": [
"(A) Tie",
"(B) Belt",
"(C) Microphone",
"(D) Display Screen",
"(E) Mobile Phone"
],
"correct_answer": "C",
"time_reference": [
192.15,
192.15
]
},
{
"video_source": "LongVideoBench",
"video_id": "duxO1EZ650E",
"video_path": "duxO1EZ650E.mp4",
"duration_sec": 2066.5,
"fps": 23.976023976023978,
"question_type": "Live-Perception",
"question_id": "duxO1EZ650E@1",
"question": "On the left side of the screen is a woman wearing glasses and earrings, with books and miscellaneous items on the shelf behind her. On the right side of the screen is a man wearing a black top, with long hair and glasses. What did the man with glasses on the right side of the screen do when he appeared for the first time?",
"question_time": 250.38,
"choices": [
"(A) Crossed his arms in front of his chest",
"(B) Supported his chin with one hand",
"(C) Placed one hand on the other arm's forearm",
"(D) Held a wristwatch",
"(E) Held his forehead with one hand"
],
"correct_answer": "C",
"time_reference": [
250.38,
250.38
]
},
{
"video_source": "LVBench",
"video_id": "Cm73ma6Ibcs",
"video_path": "00000000.mp4",
"duration_sec": 3665.5,
"fps": 24,
"question_type": "Live-Perception",
"question_id": "Cm73ma6Ibcs@1",
"question": "What year appears in the opening caption of the video?",
"question_time": 19,
"choices": [
"(A) 1636",
"(B) 1366",
"(C) 1363",
"(D) 1633"
],
"correct_answer": "D",
"time_reference": [
15,
19
]
},
{
"video_source": "LVBench",
"video_id": "Cm73ma6Ibcs",
"video_path": "00000000.mp4",
"duration_sec": 3665.5,
"fps": 24,
"question_type": "Live-Perception",
"question_id": "Cm73ma6Ibcs@2",
"question": "How is the weather like in the opening?",
"question_time": 76,
"choices": [
"(A) Cloudy",
"(B) Snowy",
"(C) Sunny",
"(D) Rainy"
],
"correct_answer": "B",
"time_reference": [
0,
76
]
},
{
"video_source": "LVBench",
"video_id": "Cm73ma6Ibcs",
"video_path": "00000000.mp4",
"duration_sec": 3665.5,
"fps": 24,
"question_type": "Live-Perception",
"question_id": "Cm73ma6Ibcs@3",
"question": "What does the protagonist do when the man with the gun keeps approaching her?",
"question_time": 377,
"choices": [
"(A) The protagonist cuts off the hand of the man with the gun with her sword",
"(B) The protagonist cuts off two fingers of the man with the gun with her sword",
"(C) The protagonist impales the man with the gun with her word",
"(D) The protagonist breaks the windows with her sword and flees"
],
"correct_answer": "B",
"time_reference": [
364,
377
]
},
{
"video_source": "LVBench",
"video_id": "Cm73ma6Ibcs",
"video_path": "00000000.mp4",
"duration_sec": 3665.5,
"fps": 24,
"question_type": "Live-Perception",
"question_id": "Cm73ma6Ibcs@4",
"question": "How many sticks does the protagonist put in the incense burner?",
"question_time": 650,
"choices": [
"(A) 3",
"(B) 2",
"(C) 5",
"(D) 1"
],
"correct_answer": "D",
"time_reference": [
643,
650
]
},
{
"video_source": "LVBench",
"video_id": "Cm73ma6Ibcs",
"video_path": "00000000.mp4",
"duration_sec": 3665.5,
"fps": 24,
"question_type": "Live-Perception",
"question_id": "Cm73ma6Ibcs@5",
"question": "Why are the mother and child, who line in front of the protagonist, unable to enter the city?",
"question_time": 1220,
"choices": [
"(A) They do not bribe the guard",
"(B) They are foreigners",
"(C) They bring illegal weapons",
"(D) They do not have a pass"
],
"correct_answer": "A",
"time_reference": [
1175,
1220
]
},
{
"video_source": "LVBench",
"video_id": "Cm73ma6Ibcs",
"video_path": "00000000.mp4",
"duration_sec": 3665.5,
"fps": 24,
"question_type": "Live-Perception",
"question_id": "Cm73ma6Ibcs@6",
"question": "How many people are carrying the sedan chair for the woman?",
"question_time": 1480,
"choices": [
"(A) 4",
"(B) 8",
"(C) 6",
"(D) 2"
],
"correct_answer": "C",
"time_reference": [
1446,
1480
]
},
{
"video_source": "LVBench",
"video_id": "Cm73ma6Ibcs",
"video_path": "00000000.mp4",
"duration_sec": 3665.5,
"fps": 24,
"question_type": "Live-Perception",
"question_id": "Cm73ma6Ibcs@7",
"question": "What happens when the woman wearing a red kimono kneels?",
"question_time": 1576,
"choices": [
"(A) A child rides on her back",
"(B) A man kneels beside her",
"(C) A man takes out his sword",
"(D) A child hits her head with noodles"
],
"correct_answer": "D",
"time_reference": [
1570,
1576
]
},
{
"video_source": "LVBench",
"video_id": "Cm73ma6Ibcs",
"video_path": "00000000.mp4",
"duration_sec": 3665.5,
"fps": 24,
"question_type": "Live-Perception",
"question_id": "Cm73ma6Ibcs@15",
"question": "When the protagonist moves the table at the restaurant, what happens to the things on the table?",
"question_time": 282,
"choices": [
"(A) One of the chopsticks on the bowl falls to the table",
"(B) One of the chopsticks on the bowl falls to the floor",
"(C) The seasoning bottle falls",
"(D) The bowl falls to the floor"
],
"correct_answer": "A",
"time_reference": [
275,
282
]
},
{
"video_source": "LVBench",
"video_id": "Cm73ma6Ibcs",
"video_path": "00000000.mp4",
"duration_sec": 3665.5,
"fps": 24,
"question_type": "Live-Perception",
"question_id": "Cm73ma6Ibcs@16",
"question": "What part of the cook is different from other people?",
"question_time": 183,
"choices": [
"(A) Leg",
"(B) Foot",
"(C) Eye",
"(D) Hand"
],
"correct_answer": "D",
"time_reference": [
180,
183
]
},
{
"video_source": "LVBench",
"video_id": "q01CUy_gwdU",
"video_path": "00000001.mp4",
"duration_sec": 3296.14,
"fps": 24,
"question_type": "Live-Perception",
"question_id": "q01CUy_gwdU@1",
"question": "What color is the scene at the begining?",
"question_time": 61,
"choices": [
"(A) White",
"(B) Blue",
"(C) Brown",
"(D) Grey"
],
"correct_answer": "D",
"time_reference": [
61,
61
]
},
{
"video_source": "LVBench",
"video_id": "q01CUy_gwdU",
"video_path": "00000001.mp4",
"duration_sec": 3296.14,
"fps": 24,
"question_type": "Live-Perception",
"question_id": "q01CUy_gwdU@2",
"question": "What does the woman in red do after she collides with the man?",
"question_time": 188,
"choices": [
"(A) She picks up things on the ground on her own and throws them away",
"(B) She picks up things on the ground with the man",
"(C) She picks up things on the ground on her own",
"(D) She picks up things on the ground with a passerby"
],
"correct_answer": "C",
"time_reference": [
172,
188
]
},
{
"video_source": "LVBench",
"video_id": "q01CUy_gwdU",
"video_path": "00000001.mp4",
"duration_sec": 3296.14,
"fps": 24,
"question_type": "Live-Perception",
"question_id": "q01CUy_gwdU@3",
"question": "What does the man do after the second collision?",
"question_time": 300,
"choices": [
"(A) He looks for his book",
"(B) He looks for his phone",
"(C) He looks for the woman",
"(D) He looks for the post"
],
"correct_answer": "A",
"time_reference": [
282,
300
]
},
{
"video_source": "LVBench",
"video_id": "q01CUy_gwdU",
"video_path": "00000001.mp4",
"duration_sec": 3296.14,
"fps": 24,
"question_type": "Live-Perception",
"question_id": "q01CUy_gwdU@4",
"question": "Why does the man follow the woman in red after they meet for the third time?",
"question_time": 331,
"choices": [
"(A) He falls in love with the woman",
"(B) He is a spy",
"(C) The woman has his phone",
"(D) The woman has his book"
],
"correct_answer": "D",
"time_reference": [
315,
331
]
},
{
"video_source": "LVBench",
"video_id": "q01CUy_gwdU",
"video_path": "00000001.mp4",
"duration_sec": 3296.14,
"fps": 24,
"question_type": "Live-Perception",
"question_id": "q01CUy_gwdU@5",
"question": "What best summarizes the first half of the events when the woman and the man meet for the third time?",
"question_time": 424,
"choices": [
"(A) They walk for a while and then sit down at the patio of a coffee shop. She eats, drinks, and smokes while the man stares at her. She goes to a beach",
"(B) They walk for a while and then sit down at the patio of a coffee shop. She eats, drinks, and smokes while the man reads a book. He then leaves",
"(C) They walk for a while and then sit down at the patio of a coffee shop. She eats, drinks, and smokes while the man stares at her. She then sits near a rive",
"(D) They walk for a while and then sit down at the patio of a coffee shop. She eats, drinks, and smokes while the man stares at her. He then leaves"
],
"correct_answer": "C",
"time_reference": [
386,
424
]
},
{
"video_source": "LVBench",
"video_id": "q01CUy_gwdU",
"video_path": "00000001.mp4",
"duration_sec": 3296.14,
"fps": 24,
"question_type": "Live-Perception",
"question_id": "q01CUy_gwdU@6",
"question": "What color is the first plane?",
"question_time": 593,
"choices": [
"(A) Yellow",
"(B) Red",
"(C) White",
"(D) Blue"
],
"correct_answer": "A",
"time_reference": [
566,
593
]
},
{
"video_source": "LVBench",
"video_id": "q01CUy_gwdU",
"video_path": "00000001.mp4",
"duration_sec": 3296.14,
"fps": 24,
"question_type": "Live-Perception",
"question_id": "q01CUy_gwdU@7",
"question": "What appears on the screen after the fictional character from the man's book appears in the air for the first time, traveling between buildings?",
"question_time": 756,
"choices": [
"(A) The book",
"(B) A butterfly",
"(C) A rainbow",
"(D) A plane"
],
"correct_answer": "C",
"time_reference": [
751,
756
]
},
{
"video_source": "LVBench",
"video_id": "q01CUy_gwdU",
"video_path": "00000001.mp4",
"duration_sec": 3296.14,
"fps": 24,
"question_type": "Live-Perception",
"question_id": "q01CUy_gwdU@8",
"question": "What does the man do after he sees the woman for the third time?",
"question_time": 910,
"choices": [
"(A) He runs a marathon",
"(B) He sleeps in his bed",
"(C) He draws the woman in the book",
"(D) He looks for the woman"
],
"correct_answer": "C",
"time_reference": [
892,
910
]
},
{
"video_source": "LVBench",
"video_id": "TJR1oYDDTwg",
"video_path": "00000003.mp4",
"duration_sec": 2548.78,
"fps": 30,
"question_type": "Live-Perception",
"question_id": "TJR1oYDDTwg@1",
"question": "What is the first word in the video?",
"question_time": 6,
"choices": [
"(A) ENT",
"(B) NET",
"(C) TNE",
"(D) ETN"
],
"correct_answer": "B",
"time_reference": [
0,
6
]
},
{
"video_source": "LVBench",
"video_id": "TJR1oYDDTwg",
"video_path": "00000003.mp4",
"duration_sec": 2548.78,
"fps": 30,
"question_type": "Live-Perception",
"question_id": "TJR1oYDDTwg@2",
"question": "How many birds are there flying at the beginning of the video?",
"question_time": 28,
"choices": [
"(A) 6",
"(B) 4",
"(C) 5",
"(D) 8"
],
"correct_answer": "C",
"time_reference": [
15,
28
]
},
{
"video_source": "LVBench",
"video_id": "TJR1oYDDTwg",
"video_path": "00000003.mp4",
"duration_sec": 2548.78,
"fps": 30,
"question_type": "Live-Perception",
"question_id": "TJR1oYDDTwg@3",
"question": "What color are the clothes on the two men playing the trumpet?",
"question_time": 116,
"choices": [
"(A) Blue",
"(B) Yellow",
"(C) Lilac",
"(D) Rose"
],
"correct_answer": "C",
"time_reference": [
113,
116
]
},
{
"video_source": "LVBench",
"video_id": "TJR1oYDDTwg",
"video_path": "00000003.mp4",
"duration_sec": 2548.78,
"fps": 30,
"question_type": "Live-Perception",
"question_id": "TJR1oYDDTwg@4",
"question": "What color are the teeth in the middle of the green dragon?",
"question_time": 381,
"choices": [
"(A) Yellow",
"(B) Aqua",
"(C) Brown",
"(D) Faint yellow"
],
"correct_answer": "D",
"time_reference": [
377,
381
]
},
{
"video_source": "LVBench",
"video_id": "TJR1oYDDTwg",
"video_path": "00000003.mp4",
"duration_sec": 2548.78,
"fps": 30,
"question_type": "Live-Perception",
"question_id": "TJR1oYDDTwg@5",
"question": "What happens when the villain's mirror breaks?",
"question_time": 596,
"choices": [
"(A) The mirror fragments automatically fuse on the ground into a whole mirror again",
"(B) The mirror fragments cut the villain's hand",
"(C) The mirror fragments are thrown away by the villains",
"(D) The mirror fragments fly into the sky"
],
"correct_answer": "D",
"time_reference": [
589,
596
]
},
{
"video_source": "LVBench",
"video_id": "HfEVEGf1A8Q",
"video_path": "00000004.mp4",
"duration_sec": 4916.71,
"fps": 24,
"question_type": "Live-Perception",
"question_id": "HfEVEGf1A8Q@1",
"question": "Who gets the lollipop last?",
"question_time": 600,
"choices": [
"(A) Frankenstein",
"(B) Zombie",
"(C) Vampire",
"(D) Dokkaebi"
],
"correct_answer": "B",
"time_reference": [
525,
600
]
},
{
"video_source": "LVBench",
"video_id": "HfEVEGf1A8Q",
"video_path": "00000004.mp4",
"duration_sec": 4916.71,
"fps": 24,
"question_type": "Live-Perception",
"question_id": "HfEVEGf1A8Q@2",
"question": "Why doesn't the vampire want the lollipop?",
"question_time": 643,
"choices": [
"(A) Because he thinks it is child who eat lollipop",
"(B) Because he can't eat lollipop",
"(C) Because he doesn't like lollipop",
"(D) Because he thinks the lollipop is dirty"
],
"correct_answer": "D",
"time_reference": [
605,
643
]
},
{
"video_source": "LVBench",
"video_id": "HfEVEGf1A8Q",
"video_path": "00000004.mp4",
"duration_sec": 4916.71,
"fps": 24,
"question_type": "Live-Perception",
"question_id": "HfEVEGf1A8Q@3",
"question": "When is the school let out in the afternoon?",
"question_time": 830,
"choices": [
"(A) 2:00 pm",
"(B) 3:30 pm",
"(C) 2:30 pm",
"(D) 3:00 pm"
],
"correct_answer": "A",
"time_reference": [
820,
830
]
},
{
"video_source": "LVBench",
"video_id": "HfEVEGf1A8Q",
"video_path": "00000004.mp4",
"duration_sec": 4916.71,
"fps": 24,
"question_type": "Live-Perception",
"question_id": "HfEVEGf1A8Q@4",
"question": "What does the vampire do when the girl first finds him?",
"question_time": 855,
"choices": [
"(A) Hide in the cabinet",
"(B) Return the phone",
"(C) Drink tomato juice",
"(D) Clean the desk"
],
"correct_answer": "D",
"time_reference": [
840,
855
]
},
{
"video_source": "LVBench",
"video_id": "HfEVEGf1A8Q",
"video_path": "00000004.mp4",
"duration_sec": 4916.71,
"fps": 24,
"question_type": "Live-Perception",
"question_id": "HfEVEGf1A8Q@5",
"question": "What happens in the vampire's dream after he faints in front of the girl?",
"question_time": 900,
"choices": [
"(A) The girl ties him to a tree and washes him",
"(B) The girl ties him to a cross and burns him",
"(C) The girl ties him to a cross and washes him",
"(D) The girl ties him to a tree and burns him"
],
"correct_answer": "D",
"time_reference": [
870,
900
]
},
{
"video_source": "LVBench",
"video_id": "HfEVEGf1A8Q",
"video_path": "00000004.mp4",
"duration_sec": 4916.71,
"fps": 24,
"question_type": "Live-Perception",
"question_id": "HfEVEGf1A8Q@6",
"question": "Why does vampire bang his head on a table?",
"question_time": 2140,
"choices": [
"(A) He have no money to compensate",
"(B) The girl is noisy and doesn't study hard",
"(C) He is hungry",
"(D) He is nervous"
],
"correct_answer": "B",
"time_reference": [
2130,
2140
]
},
{
"video_source": "LVBench",
"video_id": "HfEVEGf1A8Q",
"video_path": "00000004.mp4",
"duration_sec": 4916.71,
"fps": 24,
"question_type": "Live-Perception",
"question_id": "HfEVEGf1A8Q@7",
"question": "Where does the girl take the vampire after the exam?",
"question_time": 2840,
"choices": [
"(A) A playground",
"(B) Her home",
"(C) The principal room",
"(D) A park"
],
"correct_answer": "D",
"time_reference": [
2760,
2840
]
},
{
"video_source": "LVBench",
"video_id": "_zrgbA3FMVE",
"video_path": "00000006.mp4",
"duration_sec": 5025.77,
"fps": 25,
"question_type": "Live-Perception",
"question_id": "_zrgbA3FMVE@1",
"question": "What instruments are already on the stage before the actors come on?",
"question_time": 33,
"choices": [
"(A) Harp",
"(B) Bass",
"(C) Drum kit",
"(D) Piano"
],
"correct_answer": "C",
"time_reference": [
27,
33
]
},
{
"video_source": "LVBench",
"video_id": "_zrgbA3FMVE",
"video_path": "00000006.mp4",
"duration_sec": 5025.77,
"fps": 25,
"question_type": "Live-Perception",
"question_id": "_zrgbA3FMVE@2",
"question": "What color vest is the man lifting weights wearing?",
"question_time": 192,
"choices": [
"(A) Green",
"(B) Blue",
"(C) Orange",
"(D) Yellow"
],
"correct_answer": "A",
"time_reference": [
189,
192
]
},
{
"video_source": "LVBench",
"video_id": "_zrgbA3FMVE",
"video_path": "00000006.mp4",
"duration_sec": 5025.77,
"fps": 25,
"question_type": "Live-Perception",
"question_id": "_zrgbA3FMVE@3",
"question": "Why does the three girls run?",
"question_time": 415,
"choices": [
"(A) They are chasing the escaped pig",
"(B) They are afraid of being hit by a giant green cylinder",
"(C) They are comparing the running speed",
"(D) They are being chased by a man with a gun"
],
"correct_answer": "B",
"time_reference": [
375,
415
]
},
{
"video_source": "LVBench",
"video_id": "_zrgbA3FMVE",
"video_path": "00000006.mp4",
"duration_sec": 5025.77,
"fps": 25,
"question_type": "Live-Perception",
"question_id": "_zrgbA3FMVE@4",
"question": "What is the license plate number of the purple car driven by a woman with long black hair?",
"question_time": 495,
"choices": [
"(A) Mandy",
"(B) Erica",
"(C) Lucy",
"(D) Angela"
],
"correct_answer": "A",
"time_reference": [
490,
495
]
},
{
"video_source": "LVBench",
"video_id": "_zrgbA3FMVE",
"video_path": "00000006.mp4",
"duration_sec": 5025.77,
"fps": 25,
"question_type": "Live-Perception",
"question_id": "_zrgbA3FMVE@5",
"question": "After the girl with long black hair presses the wrench on the machine, what picture appears?",
"question_time": 699,
"choices": [
"(A) Three apple icons appear",
"(B) Three milk carton icons appear",
"(C) Three cherry icons appear",
"(D) Three ice cream icons appear"
],
"correct_answer": "D",
"time_reference": [
694,
699
]
},
{
"video_source": "LVBench",
"video_id": "_zrgbA3FMVE",
"video_path": "00000006.mp4",
"duration_sec": 5025.77,
"fps": 25,
"question_type": "Live-Perception",
"question_id": "_zrgbA3FMVE@6",
"question": "What are two men in suits doing in front of a screen?",
"question_time": 862,
"choices": [
"(A) They are playing video games",
"(B) They are watching movies on the screen",
"(C) They are watching variety shows",
"(D) They are spying on three girls"
],
"correct_answer": "D",
"time_reference": [
845,
862
]
},
{
"video_source": "LVBench",