File size: 48,120 Bytes
a1b10d8 |
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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 |
[
{
"video": "x4kKIm8WWOA_360.0_510.0.mp4",
"question": "Signal me when the video shows the woman in a black coat grooming a horse.",
"answer": [
124,
150
]
},
{
"video": "G7oh5A7gGpQ_210.0_360.0.mp4",
"question": "Identify the moment in the video when a woman is browsing a makeup selection arranged in wooden crates, indicated by her comments about items being hers and mentioning moisturizer.",
"answer": [
38,
62
]
},
{
"video": "EwItjBAwCbQ_60.0_210.0.mp4",
"question": "Notify me when the man in a gray top is walking around a garden in the video.",
"answer": [
6,
36
]
},
{
"video": "xHypiQpL2yQ_210.0_360.0.mp4",
"question": "Let me know when the video shows the dash cam view of the car driving through Pyongyang.",
"answer": [
110,
132
]
},
{
"video": "Iu7nF2VLF3c_60.0_210.0.mp4",
"question": "Remind me of the moment when two girls are checking out spicy and sweet tamarind in a store, as they mention it looks good and they decide to try it, while being in L.A.",
"answer": [
104,
126
]
},
{
"video": "Ehpo8gXg27I_660.0_810.0.mp4",
"question": "Show the part where two men in matching blue sweatshirts eat McDonalds and walk together afterwards.",
"answer": [
70,
88
]
},
{
"video": "bEmdM0Peb_o_210.0_360.0.mp4",
"question": "Identify the part of the video where a pouch of mayonnaise is dispensed into the pants of a young girl as punishment, and she then has to wear it.",
"answer": [
130,
150
]
},
{
"video": "idvZpkYWOMQ_510.0_660.0.mp4",
"question": "Alert me when two people are talking about payment methods like cash and credit while playing a fighting game.",
"answer": [
120,
144
]
},
{
"video": "FL0Cos34RjU_210.0_360.0.mp4",
"question": "Identify the time when a man wearing a mask is shown outside of a business.",
"answer": [
134,
148
]
},
{
"video": "Ho_5YisGHyU_210.0_360.0.mp4",
"question": "Identify the moment in the video when mom and her daughter are drinking wine at a restaurant.",
"answer": [
8,
36
]
},
{
"video": "00DH3yn5C30_210.0_360.0.mp4",
"question": "Remind me when the video shows someone making a gift package while sitting at a table.",
"answer": [
96,
126
]
},
{
"video": "9Xzrtwiint4_210.0_360.0.mp4",
"question": "Update me when the video shows a woman shopping for produce at a grocery store.",
"answer": [
106,
136
]
},
{
"video": "zKs0TO6ZTBI_210.0_360.0.mp4",
"question": "Alert me when the video shows people saying goodbye and expressing love, possibly hugging, in a house.",
"answer": [
64,
84
]
},
{
"video": "KDpsbJHx1RI_360.0_510.0.mp4",
"question": "Notify me when the video demonstrates the file explorer showing the games tab.",
"answer": [
2,
16
]
},
{
"video": "xUb7T-C0Yt4_360.0_510.0.mp4",
"question": "Describe the scene where the blonde woman is traveling in a canoe and talking about sunblock issues.",
"answer": [
74,
104
]
},
{
"video": "SFR7tydO10k_210.0_360.0.mp4",
"question": "Notify me when the video shows a man and a child picking through rubble in an area.",
"answer": [
40,
70
]
},
{
"video": "cpkXphR7tVo_60.0_210.0.mp4",
"question": "Find the moment in the video where a young woman is in her kitchen and starts preparing grapefruit water.",
"answer": [
20,
46
]
},
{
"video": "mbdj8xfSIKo_60.0_210.0.mp4",
"question": "Tell me about the video visualizing the view from the desert from a bus window.",
"answer": [
74,
100
]
},
{
"video": "2vFzBa_WKNg_60.0_210.0.mp4",
"question": "Let me know when the video reveals a woman doing a close-up of the blue skincare cream that contains hyaluronic acid for deeper skin penetration.",
"answer": [
92,
114
]
},
{
"video": "FWy5ZcDu_i8_360.0_510.0.mp4",
"question": "Tell me when the video shows a man in a safety vest going to a work site, considering the subtitle mentions infrastructure investments in Central and Eastern Europe.",
"answer": [
116,
132
]
},
{
"video": "j9NNAmqweOA_360.0_510.0.mp4",
"question": "Update me when a person in a dark top uses a henna pen to draw an intricate pattern on the back of their left hand fingers in a sped-up video.",
"answer": [
10,
24
]
},
{
"video": "Z3-IZ3HAmIA_360.0_510.0.mp4",
"question": "Identify the moment when the woman uses the bottle on her face and wipes it down.",
"answer": [
126,
150
]
},
{
"video": "zKs0TO6ZTBI_60.0_210.0.mp4",
"question": "Identify the moment a girl in short black shorts is climbing through a moving truck over objects, reflecting when Brooklyn is mentioned about getting out.",
"answer": [
52,
68
]
},
{
"video": "O5RKn-qeIVI_210.0_360.0.mp4",
"question": "Identify the scene where a man is wearing a shirt around one shoulder on the side of the road.",
"answer": [
62,
86
]
},
{
"video": "YhntzRB6TwM_360.0_510.0.mp4",
"question": "Alert me as soon as the video shows two friends displaying their lunch, including peel-and-eat shrimp and french onion soup, with a view by the beach before eating.",
"answer": [
106,
122
]
},
{
"video": "qBe1PUrRHUo_210.0_360.0.mp4",
"question": "Describe the moment when women are getting and eating ice cream in the car.",
"answer": [
12,
34
]
},
{
"video": "E75GN8GXDP4_60.0_210.0.mp4",
"question": "Alert me when a woman walks through a large black gate towards the forest.",
"answer": [
26,
50
]
},
{
"video": "WBkLObX2Fdo_360.0_510.0.mp4",
"question": "Inform me when the video begins with a woman walking down the street with her Instagram handle showing below.",
"answer": [
52,
66
]
},
{
"video": "_NznSSfDxdo_210.0_360.0.mp4",
"question": "Inform me when the video shows a man in a pink top having a conversation with a woman in wicker chairs.",
"answer": [
122,
150
]
},
{
"video": "pu5p_ojK6BI_360.0_510.0.mp4",
"question": "Cue me when the video shows a man talking to the camera under candlelight.",
"answer": [
54,
82
]
},
{
"video": "cLvULsyPH4E_360.0_510.0.mp4",
"question": "Notify me when the video shows a dash cam view of a car traveling.",
"answer": [
18,
42
]
},
{
"video": "L_RuElxOqKI_210.0_360.0.mp4",
"question": "Inform me when the video shows a cat getting a shot.",
"answer": [
8,
26
]
},
{
"video": "rZQjpKRsPMQ_360.0_510.0.mp4",
"question": "Show the part where a man and woman walk through a forest near a logging site.",
"answer": [
122,
150
]
},
{
"video": "qBe1PUrRHUo_60.0_210.0.mp4",
"question": "Prompt me when a woman in a black bikini with light blue flippers is swimming in the sea.",
"answer": [
100,
128
]
},
{
"video": "2X46BBkcCeY_360.0_510.0.mp4",
"question": "Focus on when the video shows a couple relaxing on the beach, taking Instagram pictures, and enjoying the sunset.",
"answer": [
28,
56
]
},
{
"video": "yJLmek6euTA_510.0_660.0.mp4",
"question": "Tell me when the video is explaining the monorails and their surroundings, specifically mentioning the contemporary and Grand Floridian.",
"answer": [
40,
54
]
},
{
"video": "FoykgiUvtiE_60.0_210.0.mp4",
"question": "Notify me when a man with many military badges on his vest walks with a cane and gives a speech.",
"answer": [
132,
150
]
},
{
"video": "7PKEbzSNwts_510.0_660.0.mp4",
"question": "Notify me when the video focuses on a woman cheerfully talking in front of a shelf full of shoes in her home.",
"answer": [
128,
150
]
},
{
"video": "UaYhvOSmzNc_60.0_210.0.mp4",
"question": "Identify the part of the video where a lady is organizing her kitchen and starts cooking, as mentioned when she talks about preparing masala.",
"answer": [
120,
150
]
},
{
"video": "G7oh5A7gGpQ_360.0_510.0.mp4",
"question": "Remind me of the part where people ask about the purpose of crayons and Lily is mentioned drawing on the table.",
"answer": [
80,
94
]
},
{
"video": "KRHEqswrh9I_660.0_810.0.mp4",
"question": "Notify me when a woman is talking about her mom having a dentist appointment while driving.",
"answer": [
128,
150
]
},
{
"video": "ez8kypBrMVE_660.0_810.0.mp4",
"question": "Find the scene where a woman exercises on a yoga mat with her fluffy dog trying to play with her and give a thumbs up.",
"answer": [
10,
34
]
},
{
"video": "-_s0sXOfS3w_510.0_660.0.mp4",
"question": "Show the part where the guy in the grey top is highlighting a box filled with rubbish.",
"answer": [
66,
90
]
},
{
"video": "T60_zAvnAsU_360.0_510.0.mp4",
"question": "Notify me when the video introduces the Colosseum with multiple angle views.",
"answer": [
34,
54
]
},
{
"video": "6gmGISTKDPw_360.0_510.0.mp4",
"question": "Identify the scene where a blonde woman in a purple tank top is driving a car and talking.",
"answer": [
124,
150
]
},
{
"video": "-_s0sXOfS3w_60.0_210.0.mp4",
"question": "Notify me when the video shows a man shaving his beard, looking in a mirror, and talking to the camera.",
"answer": [
114,
140
]
},
{
"video": "WEpnzfufxJQ_660.0_810.0.mp4",
"question": "Inform me about the moment when a man points out different areas in a square in the video.",
"answer": [
12,
42
]
},
{
"video": "xivzc8l7O_A_360.0_510.0.mp4",
"question": "Show when African people walk together in a large group and attend a ceremony, related to visiting ancestors and praying for success.",
"answer": [
96,
120
]
},
{
"video": "8s9fLWEi4So_210.0_360.0.mp4",
"question": "Signal me when the little girl expresses excitement for her lunch choices of chicken, cheese, and crackers.",
"answer": [
94,
124
]
},
{
"video": "gpDpN44mky0_60.0_210.0.mp4",
"question": "Indicate when the vlogger gives a tour of their bedroom, showing items like the bed, TV, and coffee machine.",
"answer": [
46,
66
]
},
{
"video": "jga6urWEs7Y_60.0_210.0.mp4",
"question": "Prompt me when the blonde woman holds up small apples.",
"answer": [
2,
18
]
},
{
"video": "UaYhvOSmzNc_210.0_360.0.mp4",
"question": "Indicate the moment when a woman is adding pumpkin seeds to the dish she is making.",
"answer": [
34,
56
]
},
{
"video": "869XmJMiEys_60.0_210.0.mp4",
"question": "Find the moment when a man wears a black mask while on the beach with friends.",
"answer": [
80,
108
]
},
{
"video": "_e8_yuedv6w_510.0_660.0.mp4",
"question": "Let me know when a woman is making a green smoothie in a blender and filling a glass cup with it.",
"answer": [
26,
40
]
},
{
"video": "mpVKDcu6R5Y_510.0_660.0.mp4",
"question": "Notify me when a woman is dancing at a bar in front of a man.",
"answer": [
40,
64
]
},
{
"video": "4IYQN95j6ok_360.0_510.0.mp4",
"question": "Underscore a scene where a woman goes to a restaurant and gets food.",
"answer": [
16,
40
]
},
{
"video": "6aFvTqmnrJQ_360.0_510.0.mp4",
"question": "Let me know if the video shows a clown putting balloons onto a pump.",
"answer": [
132,
146
]
},
{
"video": "1rguOCdMIY8_210.0_360.0.mp4",
"question": "Provide the scene where fires are burning up the trunks of tall trees in a forest, with a reporter in an orange shirt reporting on the situation as emergency vehicles drive past.",
"answer": [
10,
32
]
},
{
"video": "abRmll8VM9k_660.0_810.0.mp4",
"question": "Alert me when the video shows a woman resting her head on a counter with her arms crossed.",
"answer": [
114,
132
]
},
{
"video": "dsmZngVgytA_360.0_510.0.mp4",
"question": "Tell me when the video shows people in front of the Universal Studios sign.",
"answer": [
118,
140
]
},
{
"video": "Y2GVVC_cD_E_210.0_360.0.mp4",
"question": "Highlight when the guy in the black t-shirt is sitting and talking by a hot tub outside.",
"answer": [
132,
150
]
},
{
"video": "oQeSC0A1wuc_510.0_660.0.mp4",
"question": "Notify me when the video shows a passenger in a car lowering their facemask to their chin before raising it again.",
"answer": [
14,
36
]
},
{
"video": "M2MuFhHSfIU_360.0_510.0.mp4",
"question": "Remind me of the part where guys are sitting and talking in a locker room, discussing the new shirts.",
"answer": [
128,
150
]
},
{
"video": "xHypiQpL2yQ_60.0_210.0.mp4",
"question": "Identify the moment in the video when the suspension bridge spanning a large river is highlighted.",
"answer": [
34,
52
]
},
{
"video": "Gwdizqh16JY_60.0_210.0.mp4",
"question": "Identify the moment in the video when a woman gives a speech to an assembly, expressing disbelief and happiness about realizing her dream over the past five years.",
"answer": [
132,
150
]
},
{
"video": "EjV6yAxwyyI_360.0_510.0.mp4",
"question": "Notify me when the video shows a woman typing on a laptop next to a jar of coffee with a straw.",
"answer": [
120,
148
]
},
{
"video": "koupdIrQ4Xg_210.0_360.0.mp4",
"question": "Notify me when the video shows African American girls sharing beautiful beach shorts.",
"answer": [
84,
110
]
},
{
"video": "hl_ErejT_CE_510.0_660.0.mp4",
"question": "Notify me when breakfast type foods are spread on the table in a tray and on plates.",
"answer": [
136,
150
]
},
{
"video": "PMm8xTk8ofI_510.0_660.0.mp4",
"question": "Highlight the moment when a man lets a child play with his Kindle book reader.",
"answer": [
110,
128
]
},
{
"video": "oQeSC0A1wuc_210.0_360.0.mp4",
"question": "Describe the scene when the man puts on his mask in the car.",
"answer": [
16,
32
]
},
{
"video": "x6IuCndPqkU_660.0_810.0.mp4",
"question": "Let me know when the video highlights a boy working on their laptop in the car.",
"answer": [
50,
68
]
},
{
"video": "VRoXu96WlbM_510.0_660.0.mp4",
"question": "Identify the moment when a young girl eats a Brussels sprout and reacts badly while her mother raises a toast.",
"answer": [
34,
48
]
},
{
"video": "DLSkojSiAPs_60.0_210.0.mp4",
"question": "Inform me when the video shows a montage of fans lining up and coming to meet the blonde woman.",
"answer": [
78,
108
]
},
{
"video": "qHSeudOaXwk_210.0_360.0.mp4",
"question": "Show the moment when the woman talks about putting on mascara and mentions putting something in her purse.",
"answer": [
70,
88
]
},
{
"video": "WINZiMUH7Lk_210.0_360.0.mp4",
"question": "Identify when the video shows young girl monologues with a subscribe button underneath.",
"answer": [
12,
28
]
},
{
"video": "q4WEUoz2wHc_210.0_360.0.mp4",
"question": "Alert me when the video shows a panel discussion in an auditorium.",
"answer": [
38,
60
]
},
{
"video": "8CCyShsFArg_360.0_510.0.mp4",
"question": "Notify me when a man in a blue shirt is holding a glass and talking to the cameraperson.",
"answer": [
18,
36
]
},
{
"video": "gpDpN44mky0_360.0_510.0.mp4",
"question": "Identify when hand gestures point to different makeup samples in the video.",
"answer": [
104,
128
]
},
{
"video": "qBe1PUrRHUo_360.0_510.0.mp4",
"question": "The video segment where the woman discusses her beauty routine with a focus on hair care and wearing earrings.",
"answer": [
86,
116
]
},
{
"video": "zTf-3BOLi8w_60.0_210.0.mp4",
"question": "Let me know when the video shows Trump signing a bill surrounded by people during the event mentioned.",
"answer": [
132,
148
]
},
{
"video": "fOU0-2bBRnU_60.0_210.0.mp4",
"question": "Prompt me when the video shows the father holding onto his daughter.",
"answer": [
98,
116
]
},
{
"video": "t9podLZljz0_60.0_210.0.mp4",
"question": "Let me know when the woman in a blue dress is speaking in front of blue banners with stars.",
"answer": [
28,
46
]
},
{
"video": "VoK0IcmS_5I_210.0_360.0.mp4",
"question": "Signal me if the video shows a man filmed from the backseat of a car driving through the city.",
"answer": [
116,
138
]
},
{
"video": "AD0qNZy48_s_210.0_360.0.mp4",
"question": "Inform me about the moment a woman adds ingredients to a bubbling pot of liquid and covers it with a lid.",
"answer": [
2,
24
]
},
{
"video": "nkgTGB5C7zk_360.0_510.0.mp4",
"question": "Find the part where the man in the gray sleeveless top talks about realizing the value of the money they use during a walk, in a restaurant setting.",
"answer": [
128,
150
]
},
{
"video": "Lc4D95BLgXI_660.0_810.0.mp4",
"question": "Indicate the moment when a lady is handing noodle dishes to the guests.",
"answer": [
124,
150
]
},
{
"video": "tb6Br2F4KQM_360.0_510.0.mp4",
"question": "Prompt me when the video shows a teen boy in a white tank demonstrating what is in a bag.",
"answer": [
74,
90
]
},
{
"video": "A5PIgmXGIdI_60.0_210.0.mp4",
"question": "When are the four Tesla models shown in a split screen in the video?",
"answer": [
28,
52
]
},
{
"video": "xivzc8l7O_A_210.0_360.0.mp4",
"question": "Inform me when the video shows military soldiers in uniform visiting a grave in the desert to pay respects.",
"answer": [
122,
142
]
},
{
"video": "5oucQKLn88A_210.0_360.0.mp4",
"question": "Prompt me when the woman in a pink sari drinks a cocktail in the video.",
"answer": [
34,
50
]
},
{
"video": "E9drfsoiGb4_360.0_510.0.mp4",
"question": "Indicate when the video shows chicken tandoori on a plate.",
"answer": [
58,
80
]
},
{
"video": "MmGtg0qgceA_210.0_360.0.mp4",
"question": "Identify when someone is passed out in the back of a moving car with a white mask over their face.",
"answer": [
134,
150
]
},
{
"video": "c-fzjF9ubUc_360.0_510.0.mp4",
"question": "Show me the moment when Putin and Trump walk up to the podium and speak.",
"answer": [
60,
82
]
},
{
"video": "WINZiMUH7Lk_60.0_210.0.mp4",
"question": "Let me know when the video shows a mother wrapping a girl in a towel.",
"answer": [
18,
34
]
},
{
"video": "L9cUEhaXnK4_510.0_660.0.mp4",
"question": "Ping me when the video shows a dash cam view of a safari drive through.",
"answer": [
122,
150
]
},
{
"video": "ebCzdax-fjA_60.0_210.0.mp4",
"question": "Message me when the video focuses on couples arriving at a picnic in South India.",
"answer": [
78,
104
]
},
{
"video": "S4z8QOxZisc_210.0_360.0.mp4",
"question": "Notify me when the video shows detailed shots of docked boats.",
"answer": [
104,
118
]
},
{
"video": "ZjFzkhrqIZs_210.0_360.0.mp4",
"question": "Identify the moment in the video when a whale shark is shown swimming near the surface of green waters.",
"answer": [
130,
150
]
},
{
"video": "A5PIgmXGIdI_660.0_810.0.mp4",
"question": "Is the man kneeling beside his white Tesla when discussing the warranty or battery retention?",
"answer": [
84,
100
]
},
{
"video": "PWdPLZvdO_I_210.0_360.0.mp4",
"question": "Show the part where the team in matching black wetsuits stands in a row.",
"answer": [
110,
132
]
},
{
"video": "uPPb8CxB6-o_60.0_210.0.mp4",
"question": "Alert me when the video shows a man in a backwards cap visiting shiny and beautiful monuments similar to the Ukrainian version of the Statue of Liberty.",
"answer": [
86,
108
]
},
{
"video": "IoNLqyYnO8k_210.0_360.0.mp4",
"question": "Notify me when the video shows an Asian woman opening the curtains in a small inn's room.",
"answer": [
110,
128
]
},
{
"video": "wUgPzvcKK5c_210.0_360.0.mp4",
"question": "Prompt me when the video shows a man enjoying waterfall diving in the Philippines.",
"answer": [
78,
108
]
},
{
"video": "slQPJSfZ_4o_360.0_510.0.mp4",
"question": "Video focusing on black women swimming in a pool.",
"answer": [
122,
150
]
},
{
"video": "9kF-Rw5PrDY_360.0_510.0.mp4",
"question": "Indicate when the video shows a man dipping his feet into the water with fish approaching.",
"answer": [
48,
62
]
},
{
"video": "RWvWkkCtjfY_60.0_210.0.mp4",
"question": "Notify me when the woman in the video photographs and pets her dog.",
"answer": [
76,
94
]
},
{
"video": "2X46BBkcCeY_60.0_210.0.mp4",
"question": "Video showing a man and woman standing in front of a circular silver sculpture.",
"answer": [
124,
150
]
},
{
"video": "rrTIeJRVGjg_360.0_510.0.mp4",
"question": "Inform me when the video shows the credits rolling.",
"answer": [
112,
134
]
},
{
"video": "XWLHTkh1fAI_210.0_360.0.mp4",
"question": "Update me when the video shows an overhead view of clam pasta.",
"answer": [
32,
56
]
},
{
"video": "S4z8QOxZisc_60.0_210.0.mp4",
"question": "Notify me when a young woman wearing sunglasses talks to the camera and opens a bottle of champagne on the beach.",
"answer": [
52,
78
]
},
{
"video": "xXWKd1b3SHM_60.0_210.0.mp4",
"question": "Notify me when the video shows groups of monkeys that make the speaker smile and say they might be their new favorite.",
"answer": [
120,
144
]
},
{
"video": "aG3duH53XDs_60.0_210.0.mp4",
"question": "Is the video about a group of friends hanging out at a spa and getting massages?",
"answer": [
30,
50
]
},
{
"video": "6SdLxtywo4s_360.0_510.0.mp4",
"question": "Describe the moment when the man in a purple top moves the luggage inside the house.",
"answer": [
12,
30
]
},
{
"video": "A5PIgmXGIdI_510.0_660.0.mp4",
"question": "Alert me when the video shows large black rims on a white sports car.",
"answer": [
108,
124
]
},
{
"video": "ez8kypBrMVE_210.0_360.0.mp4",
"question": "Indicate when a lady in a black t-shirt uses scissors to trim fur from the neck and upper back of a white poodle.",
"answer": [
76,
90
]
},
{
"video": "G7oh5A7gGpQ_60.0_210.0.mp4",
"question": "Show me the part where the vlogger is interacting with their dog.",
"answer": [
44,
66
]
},
{
"video": "5wDSfYr9bgU_360.0_510.0.mp4",
"question": "Let me know if the video shows sailors in white uniforms marching in a parade.",
"answer": [
12,
28
]
},
{
"video": "O5RKn-qeIVI_360.0_510.0.mp4",
"question": "Find the part of the video where a blonde man is walking past palm trees.",
"answer": [
56,
80
]
},
{
"video": "gY3GOIn80k8_60.0_210.0.mp4",
"question": "Notify me when the blonde woman works out in a gym with red lighting.",
"answer": [
22,
40
]
},
{
"video": "4G9S-eoLgX4_210.0_360.0.mp4",
"question": "Alert me when the video shows a group of men walking along a deserted path.",
"answer": [
48,
68
]
},
{
"video": "a2KIsaS9iJg_360.0_510.0.mp4",
"question": "Notify me when the video shows a young husky being brushed and then let outside to play with ball toys.",
"answer": [
74,
98
]
},
{
"video": "K3lDAtwYt_4_60.0_210.0.mp4",
"question": "Notify me when the video shows views of a plane wing both on the ground and in flight.",
"answer": [
110,
128
]
},
{
"video": "dsmZngVgytA_210.0_360.0.mp4",
"question": "Notify me when a couple arrives at a station and looks at the rail map.",
"answer": [
106,
130
]
},
{
"video": "4IYQN95j6ok_60.0_210.0.mp4",
"question": "Indicate when the video shows a woman visiting an oriental shrine and drinking its water.",
"answer": [
124,
144
]
},
{
"video": "yeCaAL4uM-U_60.0_210.0.mp4",
"question": "Update me when the video shows a girl\u2019s Saturday routine with varying numbers of people involved.",
"answer": [
124,
150
]
},
{
"video": "NUsG9BgSes0_660.0_810.0.mp4",
"question": "Spotlight the moment when the woman holds up a green bottle and talks about the water in LA.",
"answer": [
36,
60
]
},
{
"video": "VUV77-5ERxA_510.0_660.0.mp4",
"question": "Prompt me when people are walking in a single file line into a building.",
"answer": [
70,
86
]
},
{
"video": "ez8kypBrMVE_510.0_660.0.mp4",
"question": "Notify me when a Japanese woman is singing in a car with her dog standing beside her.",
"answer": [
136,
150
]
},
{
"video": "Ho_5YisGHyU_360.0_510.0.mp4",
"question": "Interpret shots of the exterior of the Church Of The Savior On Blood along with the audio mentioning the construction took 24 years.",
"answer": [
22,
40
]
},
{
"video": "DU3E7tTt0_s_360.0_510.0.mp4",
"question": "Notify me when a woman poses next to golden balloon letters in the video.",
"answer": [
106,
130
]
},
{
"video": "pA6Z-qYhSNg_360.0_510.0.mp4",
"question": "Find the part where a man wearing sunglasses is being interviewed next to a van.",
"answer": [
110,
124
]
},
{
"video": "uSAGSbauHBs_210.0_360.0.mp4",
"question": "Notify me when the man is talking about replacing shed sliders with other antlers in front of a large pile of antlers.",
"answer": [
38,
52
]
},
{
"video": "_i9qWLsZToY_360.0_510.0.mp4",
"question": "Narrate the moment when a woman is sitting at a bar with a big sandwich and starts to eat it.",
"answer": [
122,
150
]
},
{
"video": "HL60CCu_R44_360.0_510.0.mp4",
"question": "Alert me when the video shows a person presenting or discussing a car boot.",
"answer": [
100,
130
]
},
{
"video": "aePha0zWX7c_210.0_360.0.mp4",
"question": "Illustrate a man videotaping a statue and a man playing an instrument and singing in the middle of a square, with visual and audio elements linked to Polish tradition and Warsaw symbolism.",
"answer": [
30,
60
]
},
{
"video": "cL8ouoEZtKM_360.0_510.0.mp4",
"question": "Prompt me when the video shows James pretending to vlog with a Sony A6400 and Ronin gimbal.",
"answer": [
78,
104
]
},
{
"video": "XzxRMH7G8Lk_210.0_360.0.mp4",
"question": "Find the part of the video where a man is holding a little snake in his hand.",
"answer": [
50,
72
]
},
{
"video": "-4Mlqc7PbZY_360.0_510.0.mp4",
"question": "Message me when the video shows a woman presenting donated items from a plastic basket, including a wallet, skincare products, and a tote bag.",
"answer": [
12,
42
]
},
{
"video": "OR7oOU8S7Jc_660.0_810.0.mp4",
"question": "Notify me when the video shows a man painting a portrait on the side of the road.",
"answer": [
74,
88
]
},
{
"video": "hpcc5pGNKZk_510.0_660.0.mp4",
"question": "Point out when the video shows a man with a backwards cap walking by trees in winter.",
"answer": [
126,
146
]
},
{
"video": "yJLmek6euTA_360.0_510.0.mp4",
"question": "Identify the moment in the video when the vlogger walks down a winding hallway.",
"answer": [
82,
104
]
},
{
"video": "VYco9EldD0Q_60.0_210.0.mp4",
"question": "Identify when the video shows a woman carrying a baby while walking.",
"answer": [
34,
48
]
},
{
"video": "CY5BA25sRHw_60.0_210.0.mp4",
"question": "Identify when the video shifts to a newsreader discussing a glacier disaster.",
"answer": [
44,
66
]
},
{
"video": "J_6fDCo1REI_60.0_210.0.mp4",
"question": "Message me when the video shows a team of doctors attending to a patient on a gurney.",
"answer": [
126,
140
]
},
{
"video": "h6QKDqomIPk_210.0_360.0.mp4",
"question": "Identify the moment a toddler is in his car seat with his yellow tablet.",
"answer": [
108,
122
]
},
{
"video": "FXULtwAVFqQ_210.0_360.0.mp4",
"question": "Describe the moment when the young woman shows the cover of the book she is reading and includes the view from the poolside.",
"answer": [
40,
62
]
},
{
"video": "xb-GHGr3s6k_360.0_510.0.mp4",
"question": "Identify the moment when friends receive their food from the waiter and start eating during their conversation.",
"answer": [
102,
132
]
},
{
"video": "869XmJMiEys_210.0_360.0.mp4",
"question": "Update me when two people are trying different treats, including blackberries with honey and Oreo almond coffee, possibly at a bakery.",
"answer": [
98,
126
]
},
{
"video": "H3fhZxUC5M8_60.0_210.0.mp4",
"question": "Identify the part of the video where a mother enthusiastically discusses clothing with her three toddlers, mentioning dresses featuring Anna, Elsa, Olaf, a striped outfit, and a tutu shirt with Dora.",
"answer": [
58,
88
]
},
{
"video": "zY6XnLhTp7g_360.0_510.0.mp4",
"question": "Point out when the video shows a tourist vlogger highlighting a beautiful hotel building and sunset.",
"answer": [
10,
34
]
},
{
"video": "m_-A8xoc1Oo_660.0_810.0.mp4",
"question": "Notify me when the video describes Farhan making himself a cheese pizza.",
"answer": [
40,
56
]
},
{
"video": "yqYhbpOrC1Q_60.0_210.0.mp4",
"question": "Let me know when the video shows a family preparing a meal in the kitchen and sitting down to eat together.",
"answer": [
132,
150
]
},
{
"video": "H3fhZxUC5M8_360.0_510.0.mp4",
"question": "Alert me when mum is talking with girls and putting shoes on a girl in the video.",
"answer": [
124,
150
]
},
{
"video": "XzxRMH7G8Lk_360.0_510.0.mp4",
"question": "Find the part of the video where a man in a yellow bananas shirt is speaking in a room decorated with plants.",
"answer": [
10,
28
]
},
{
"video": "2BzoQ31IPhk_60.0_210.0.mp4",
"question": "Prompt me when the video shows an Asian woman eating a pastry item in a cone, specifically a strawberry and chocolate cream.",
"answer": [
40,
54
]
},
{
"video": "AWoPkPjhxSo_360.0_510.0.mp4",
"question": "Identify the moment when a woman in a striped shirt discusses her next video content.",
"answer": [
116,
144
]
},
{
"video": "HzMhnd_AJhw_60.0_210.0.mp4",
"question": "Inform me when the video shows child siblings in winter hats making their way through the airport after waiting in line.",
"answer": [
24,
48
]
},
{
"video": "VRoXu96WlbM_360.0_510.0.mp4",
"question": "Ping me when the video shows someone holding a baby doll in their arms.",
"answer": [
26,
44
]
},
{
"video": "_RiI6qVZ1Hk_60.0_210.0.mp4",
"question": "Show me when the video illustrates people walking through beautiful man-made environments.",
"answer": [
106,
122
]
},
{
"video": "Piw-9dOC8YQ_210.0_360.0.mp4",
"question": "Tell me if the video shows a teacher writing on a white board or a classroom interaction where students reconsider their answers.",
"answer": [
102,
116
]
},
{
"video": "T60_zAvnAsU_60.0_210.0.mp4",
"question": "Highlight when the video shows an overhead view of the buildings of Zagreb.",
"answer": [
96,
118
]
},
{
"video": "zTf-3BOLi8w_360.0_510.0.mp4",
"question": "Identify the scene where executives are rushed down a street with armed guards surrounding them.",
"answer": [
104,
118
]
},
{
"video": "sa-O_S2jzCw_210.0_360.0.mp4",
"question": "Show me the scene where a man walking and talking on a mountain path passes a pack mule with a large load walking by itself, with people trailing far behind.",
"answer": [
60,
86
]
},
{
"video": "j9NNAmqweOA_510.0_660.0.mp4",
"question": "Cue me when the video shows a woman loading clothes into a suitcase, like her Eid dress.",
"answer": [
134,
150
]
},
{
"video": "eGBKPpkSoM0_60.0_210.0.mp4",
"question": "Indicate when the model is taking pictures with her fans during the video.",
"answer": [
24,
38
]
},
{
"video": "CltHKz3Zfxc_210.0_360.0.mp4",
"question": "Show the part of the video where three men are talking and gesturing near an outdoor structure.",
"answer": [
124,
150
]
},
{
"video": "nJUP36AmrSM_510.0_660.0.mp4",
"question": "Prompt me when the woman holds the camera to show off her outfit in the video.",
"answer": [
130,
150
]
},
{
"video": "tSWcHfTzuA0_60.0_210.0.mp4",
"question": "Show me the part where the woman, described as fascinating and badass, is driving a car through the city.",
"answer": [
134,
150
]
},
{
"video": "ebCzdax-fjA_660.0_810.0.mp4",
"question": "Identify the moment in the video when the series logos are shown over photos of the woman.",
"answer": [
120,
138
]
},
{
"video": "kv3NheAKyb0_510.0_660.0.mp4",
"question": "Identify the part of the video where a couple of children hop in the backseat of the vehicle to join the driver.",
"answer": [
124,
150
]
},
{
"video": "A6U90Hon6bE_360.0_510.0.mp4",
"question": "Notify me when the video shows Sylvester Owino, a black man in a black top, unloading a truck and hanging up a banner.",
"answer": [
110,
128
]
},
{
"video": "kE-LxJdtTT0_210.0_360.0.mp4",
"question": "Indicate when the video shows a woman visiting a graveyard.",
"answer": [
82,
108
]
},
{
"video": "g614xfyWKoE_660.0_810.0.mp4",
"question": "Indicate when the video shows a woman walking up the stairs and entering the store.",
"answer": [
58,
72
]
},
{
"video": "yJLmek6euTA_210.0_360.0.mp4",
"question": "Inform me when the video shows cupcakes and cookies being displayed on a store shelf.",
"answer": [
34,
62
]
},
{
"video": "yJLmek6euTA_660.0_810.0.mp4",
"question": "Indicate when the video shows a man checking out the large wooden entrance to Disney\u2019s wilderness lodge.",
"answer": [
72,
98
]
},
{
"video": "W4FSEuEgG-E_510.0_660.0.mp4",
"question": "Cue me when the video shows a blonde woman ordering a coffee and a salad.",
"answer": [
116,
132
]
},
{
"video": "4HeSJ7tMo48_360.0_510.0.mp4",
"question": "Point out the time in the video when a man in sunglasses by a window is eating a noodle soup dish.",
"answer": [
114,
138
]
},
{
"video": "eBFyZ-JI_1s_210.0_360.0.mp4",
"question": "Inform me when the video shows a woman looking out at a large body of water.",
"answer": [
28,
52
]
},
{
"video": "3Bk5MJEo2EA_510.0_660.0.mp4",
"question": "Cue me when the vlogger walks past the dessert counter.",
"answer": [
48,
74
]
},
{
"video": "XcJPd4NhhCs_360.0_510.0.mp4",
"question": "Indicate when the video shows the woman stirring and eating her oatmeal.",
"answer": [
18,
40
]
},
{
"video": "ez8kypBrMVE_360.0_510.0.mp4",
"question": "Update me when the video shows a white dog playing with a flip flop.",
"answer": [
32,
62
]
},
{
"video": "yId2wIocTys_60.0_210.0.mp4",
"question": "Video shows a man walking away from a white van.",
"answer": [
134,
148
]
},
{
"video": "GAUdBAL0K5A_360.0_510.0.mp4",
"question": "Show the part where the man and woman are dancing together.",
"answer": [
10,
26
]
},
{
"video": "eX-EpPDjlUs_510.0_660.0.mp4",
"question": "Notify me when the vloggers go past a tea cart at the start of the video.",
"answer": [
28,
44
]
},
{
"video": "M7mePz5cXDk_360.0_510.0.mp4",
"question": "Prompt when the video shows a woman in a white top walking down a mountain trail.",
"answer": [
6,
36
]
},
{
"video": "FYU3KWg9TdQ_510.0_660.0.mp4",
"question": "Tell me when the video explains a woman talking excitedly with rapid hand gestures while behind the wheel of her stationary car, discussing signing in on the iPad with information about COVID risk.",
"answer": [
128,
150
]
},
{
"video": "5JOEKQhV1UA_60.0_210.0.mp4",
"question": "Alert me when the video shows people stopped on the road feeding monkeys.",
"answer": [
36,
54
]
},
{
"video": "hm4l6e_V-hQ_660.0_810.0.mp4",
"question": "Identify the moment when a woman in red leggings starts climbing a rope ladder.",
"answer": [
22,
40
]
},
{
"video": "L9cUEhaXnK4_360.0_510.0.mp4",
"question": "A blond woman is talking next to a clock on the wall behind her.",
"answer": [
4,
24
]
},
{
"video": "xivzc8l7O_A_60.0_210.0.mp4",
"question": "Focus on the moment when an explosion occurs, sending a cloud of dust and smoke into the air in a forest.",
"answer": [
70,
84
]
},
{
"video": "P1iT-STRbYo_360.0_510.0.mp4",
"question": "Update me when the video shows a lady renting a Scooty for her travel to Auroville.",
"answer": [
78,
102
]
},
{
"video": "nrIoV2MDhN0_60.0_210.0.mp4",
"question": "Notify me when there is a shot of the dome of the first skyscraper of Boston in the video.",
"answer": [
90,
108
]
},
{
"video": "kv3NheAKyb0_210.0_360.0.mp4",
"question": "Highlight the moment when mom prepares the love note for the kids\u2019 school lunch.",
"answer": [
6,
30
]
},
{
"video": "qBe1PUrRHUo_510.0_660.0.mp4",
"question": "Show the moment when the woman talks about finishing reading the book and expressing her pride in achieving her quarantine goal.",
"answer": [
48,
76
]
},
{
"video": "XrGXgtBnfoc_360.0_510.0.mp4",
"question": "Notify me when the video shows people running away from motorcycles.",
"answer": [
72,
88
]
},
{
"video": "SyMt-tik9q0_360.0_510.0.mp4",
"question": "Message me when the video shows a man holding a duck on the bus.",
"answer": [
56,
74
]
},
{
"video": "DTrwYYi25Dc_210.0_360.0.mp4",
"question": "Alert me when a woman in a pink headscarf buys and eats grilled corn from a stall near Jummah Prayer.",
"answer": [
92,
114
]
},
{
"video": "109g6BhejP0_60.0_210.0.mp4",
"question": "Remind me when the video shows a masked airport worker helping the videographer with travel paperwork.",
"answer": [
24,
54
]
},
{
"video": "nY42UppPhhg_60.0_210.0.mp4",
"question": "Inform me when the video shows a man talking to the camera while fiddling with his mask.",
"answer": [
6,
20
]
},
{
"video": "5BGa1HJslJA_210.0_360.0.mp4",
"question": "Tell me when the video shows a man and a group of men in white singing and playing music together.",
"answer": [
28,
44
]
}
] |