Datasets:
File size: 478,978 Bytes
650dd84 | 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 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 | cate,relative_path,video_type,question,options,GT,others
1,CameraBench/-2uIa-XMJC0.5.3.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving upward; B: Moving backward; C: Moving right; D: Moving downward,D,
1,CameraBench/-eyUFAJ1xqo.1.0.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,C,
1,CameraBench/03hvbnE0asg.0.0.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving backward and turning left; C: Moving forward and turning right; D: Moving forward and turning left,C,
1,CameraBench/0Pzq0URbL2M.1.4.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating clockwise; B: Rotating counterclockwise; C: Moving left; D: Basically unchange,D,
1,CameraBench/0Pzq0URbL2M.10.4.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward; C: Basically unchange; D: Moving left,C,
1,CameraBench/0TqQje61Hoo.3.1.mp4,0.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving left; C: Moving right; D: Moving backward,A,
0,CameraBench/0Um7WnY72Us.1.0.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Basically unchange; B: Moving forward; C: Moving upward; D: Moving downward,A,
1,CameraBench/0UthxdAH0ks.3.0.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Basically unchange; B: Moving backward-right; C: Moving backward-left; D: Moving forward,A,
1,CameraBench/0tIoyN7WKuA.3.1.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving upward; B: Basically unchange; C: Moving downward; D: Moving forward,B,
1,CameraBench/0xHjRq5hd9c.0.10.mp4,1.0,"In this video clip, how is the kid's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving forward and turning right; C: Moving forward and turning left; D: Moving backward and turning left,B,
1,CameraBench/0xHjRq5hd9c.0.9.mp4,1.0,"In this video clip, how is the kid's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,C,
1,CameraBench/1018.1.7.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving right; D: Moving left,B,
1,CameraBench/1470.0.10.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving forward and turning right; C: Moving backward and turning left; D: Moving forward and turning left,D,
1,CameraBench/1470.0.2.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving left; C: Moving right; D: Moving backward,A,
1,CameraBench/190.2.2.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward-left; C: Basically unchange; D: Moving backward,C,
0,CameraBench/190.2.7.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward-right; B: Moving forward; C: Moving backward; D: Basically unchange,D,
1,CameraBench/190.2.9.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,C,
1,CameraBench/1widYShgv6o.5.1.mp4,1.0,"In this video clip, how is the runner's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,C,
1,CameraBench/2521.4.1.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Basically unchange; B: Rotating clockwise; C: Rotating counterclockwise; D: Moving right,A,
1,CameraBench/2KuVjf4uB9k.0.12.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning left; B: Moving forward and turning right; C: Moving forward and turning left; D: Moving backward and turning right,B,
1,CameraBench/3005.1.8.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,B,
1,CameraBench/30KKutVrpDs.0.2.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating counterclockwise; B: Moving right; C: Rotating clockwise; D: Basically unchange,D,
1,CameraBench/3115442.0.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,C,
1,CameraBench/394cd3ffde533c8b364131cb7286c88786fc1892c52e78c2fa113e654363a9f7.0.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning left; B: Moving backward and turning right; C: Moving forward and turning left; D: Moving forward and turning right,C,
1,CameraBench/3m-ME9AXCTo.0.3.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating counterclockwise; B: Moving upward; C: Basically unchange; D: Rotating clockwise,D,
1,CameraBench/3m-ME9AXCTo.1.1.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating counterclockwise; B: Moving upward; C: Basically unchange; D: Rotating clockwise,D,
1,CameraBench/3pxrECZYEAA.1.1.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving left; C: Moving right; D: Moving backward,A,
1,CameraBench/3vBUREkRzug.0.5.mp4,1.0,"In this video clip, how is the sailboat's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving right; D: Moving left,B,
1,CameraBench/4422.0.24.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating counterclockwise; B: Rotating clockwise; C: Moving right; D: Basically unchange,D,
1,CameraBench/4PcpGxihPac.4.0.mp4,1.0,"In this video clip, how is the motorbike's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Basically unchange; C: Moving forward; D: Moving left,B,
1,CameraBench/4uGfFYzxWEg.5.2.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,B,
0,CameraBench/5eDQ2SSsmEk.2.4.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving right; C: Moving forward; D: Moving left,C,
0,CameraBench/5eDQ2SSsmEk.9.7.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Basically unchange; B: Moving backward; C: Moving downward; D: Moving upward,C,
1,CameraBench/6303.0.14.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,B,
1,CameraBench/6IUJgiKJ_mE.4.mp4,1.0,"In this video clip, how is the cyclist's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving right; C: Moving left; D: Moving forward,D,
1,CameraBench/88vmzn_LufA.5.0.mp4,0.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving right; D: Moving left,B,
1,CameraBench/8SphTOiOe6k.0.3.mp4,1.0,"In this video clip, how is the white car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,C,
1,CameraBench/99f927656086265ccda299e2c2ec394f4bfded4daa3ea64efcb4ee6c95b8c7de.0.mp4,1.0,"In this video clip, how is the people's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,C,
1,CameraBench/9rGRF5S7bGk.0.0.mp4,1.0,"In this video clip, how is the camera's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Rotating clockwise; C: Basically unchange; D: Moving forward,C,
1,CameraBench/C4Ktho9cjYk.0.3.mp4,1.0,"In this video clip, how is the girl's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Basically unchange; B: Moving upward; C: Moving forward; D: Moving downward,A,
1,CameraBench/CBRwF0LU3Ys.0.6.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning left; B: Moving forward and turning left; C: Moving forward and turning right; D: Moving backward and turning right,B,
1,CameraBench/Cj6ho1-G6tw.0.13.mp4,1.0,"In this video clip, how is the van's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving right; C: Moving backward; D: Moving left,A,
1,CameraBench/CjPSzAtLzO8.0.9.mp4,1.0,"In this video clip, how is the motorbike's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning right; B: Moving forward and turning left; C: Moving backward and turning left; D: Moving backward and turning right,B,
1,CameraBench/FbSNaKmBfO0.3.1.mp4,1.0,"In this video clip, how is the horse's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,D,
1,CameraBench/Gel59Iy3YhQ.46.1.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating clockwise; B: Basically unchange; C: Moving upward; D: Moving downward,C,
1,CameraBench/HTMDNZOlUq4.0.2.mp4,0.0,"In this video clip, how is the runner's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving right; C: Moving left; D: Moving backward,A,
0,CameraBench/Hv_DRJZZ2qI.2.16.mp4,1.0,"In this video clip, how is the cyclist's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving upward; C: Moving downward; D: Moving right,C,
1,CameraBench/IWv0EhEGmNI.16.4.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,C,
1,CameraBench/KAer-wHAd38.5.8.mp4,1.0,"In this video clip, how is the motorbike's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,C,
1,CameraBench/KB3KMUw54Hc.4.5.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Basically unchange; B: Rotating counterclockwise; C: Rotating clockwise; D: Moving forward,A,
1,CameraBench/Kapdye-diSM.5.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating counterclockwise; B: Moving forward; C: Rotating clockwise; D: Basically unchange,D,
0,CameraBench/M0jmSsQ5ptw.3.12.mp4,1.0,"In this video clip, how is the runner's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,B,
1,CameraBench/M0jmSsQ5ptw.3.16.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving left; C: Moving right; D: Moving forward,D,two object
1,CameraBench/M0jmSsQ5ptw.3.5.mp4,1.0,"In this video clip, how is the plane's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving forward and turning right; C: Moving forward and turning left; D: Moving backward and turning left,C,
1,CameraBench/MQugcNLFI9k.2.8.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating clockwise; B: Moving forward; C: Basically unchange; D: Rotating counterclockwise,D,
1,CameraBench/MuNyfqxAO6Y.2.0.mp4,1.0,"In this video clip, how is the black car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning right; B: Moving backward and turning left; C: Moving backward and turning right; D: Moving forward and turning left,A,
1,CameraBench/MuNyfqxAO6Y.2.3.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning right; B: Moving forward and turning left; C: Moving backward and turning right; D: Moving backward and turning left,B,
1,CameraBench/MuNyfqxAO6Y.2.4.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Basically unchange; B: Rotating counterclockwise; C: Rotating clockwise; D: Moving forward,A,
1,CameraBench/Oy8yQZ1Wg7k.0.0.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving right; C: Moving left; D: Moving backward,A,
0,CameraBench/Q86kUKa28ow.0.3.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,B,
1,CameraBench/Stgxxg-S4jo.2.1.mp4,1.0,"In this video clip, how is the people's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating clockwise; B: Rotating counterclockwise; C: Moving forward; D: Basically unchange,D,
1,CameraBench/Uofofz62A2E.0.2.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,A,
1,CameraBench/VaSlqE0Nx2Q.6.0.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving forward; C: Moving left; D: Moving backward,B,
1,CameraBench/VaSlqE0Nx2Q.7.2.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning left; B: Moving backward and turning left; C: Moving backward and turning right; D: Moving forward and turning right,D,
1,CameraBench/Wwndsgg7_DU.9.2.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving right; C: Moving backward; D: Moving left,A,
1,CameraBench/Wx68yLCrWP0.0.0.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Basically unchange; B: Rotating clockwise; C: Moving upward; D: Rotating counterclockwise,B,
1,CameraBench/XA2X_JBzkzY.0.1.mp4,1.0,"In this video clip, how is the troops's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving forward; C: Moving left; D: Moving backward,B,
1,CameraBench/XN2VC7QFdTs.2.3.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward; C: Moving right; D: Moving forward,D,
1,CameraBench/YBC2JaevzOI.0.3.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning left; B: Moving forward and turning left; C: Moving backward and turning right; D: Moving forward and turning right,D,
1,CameraBench/YBC2JaevzOI.1.4.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning left; B: Moving backward and turning right; C: Moving forward and turning right; D: Moving forward and turning left,C,
1,CameraBench/Yp5eTT6kZIo.4.1.mp4,1.0,"In this video clip, how is the boat's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,C,
1,CameraBench/ZBsv_5fHtIg.0.2.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Basically unchange; B: Moving forward; C: Moving backward; D: Moving downward,A,
1,CameraBench/ZBsv_5fHtIg.0.3.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,C,
1,CameraBench/ZU6ZU14lCNI.0.7.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,C,
1,CameraBench/ZXloF-qGW4U.2.2.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving right; C: Moving left; D: Moving forward,D,
1,CameraBench/as8lT-q2_E8.0.0.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,C,
1,CameraBench/awPo_VZabRc.2.3.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving right; C: Moving backward; D: Moving forward,D,
1,CameraBench/f4ZzHtww6Tc.2.2.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving right; C: Moving forward; D: Moving left,C,
1,CameraBench/f4ZzHtww6Tc.5.7.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,C,
1,CameraBench/g7gPegf76Mw.1.6.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,C,
1,CameraBench/mIiPt1YVkP8.10.7.mp4,0.0,"In this video clip, how is the plane's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving right; C: Moving left; D: Moving backward,A,
1,CameraBench/mIiPt1YVkP8.11.8.mp4,0.0,"In this video clip, how is the plane's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning left; B: Moving forward and turning right; C: Moving backward and turning right; D: Moving forward and turning left,B,
1,CameraBench/mIiPt1YVkP8.9.7.mp4,0.0,"In this video clip, how is the plane's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Basically unchange; B: Rotating counterclockwise; C: Rotating clockwise; D: Moving forward,A,moving down
1,CameraBench/nb69sgB5mG0.2.3.mp4,1.0,"In this video clip, how is the boy's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,B,
1,CameraBench/oRt5NPY7yYA.0.6.mp4,1.0,"In this video clip, how is the truck's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,C,
1,CameraBench/oRt5NPY7yYA.4.1.mp4,1.0,"In this video clip, how is the truck's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating counterclockwise; B: Moving forward; C: Basically unchange; D: Rotating clockwise,C,
1,CameraBench/oRt5NPY7yYA.5.0.mp4,1.0,"In this video clip, how is the truck's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,C,
1,CameraBench/pJwjgXcJ4zQ.2.0.mp4,1.0,"In this video clip, how is the pedestrian's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,C,
1,CameraBench/pNGMY3xVkVE.0.1.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving right; C: Moving forward; D: Moving left,C,
1,CameraBench/pq8MBzYgZ88.0.0.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,C,
1,CameraBench/px9IqOnilHI.3.0.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,A,
1,CameraBench/sKJeTaIEldM.1.1.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,C,reverse moving left
1,CameraBench/uWCGK4nneeU.1.1.mp4,0.0,"In this video clip, how is the plane's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning left; B: Moving forward and turning left; C: Moving backward and turning right; D: Moving forward and turning right,D,
1,CameraBench/upC8hjr2b4g.8.1.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Basically unchange; B: Moving forward; C: Moving downward; D: Rotating clockwise,A,
1,CameraBench/vQwotuKuUzE.0.0.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving upward; B: Rotating counterclockwise; C: Basically unchange; D: Rotating clockwise,C,
1,CameraBench/video_206294.0.mp4,1.0,"In this video clip, how is the horses's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,C,
1,CameraBench/z9Bw94k7AxQ.0.10.mp4,1.0,"In this video clip, how is the bus's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,A,
1,SynFMC/Rendered_Traj_Results/dynamic/10/video_480p.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,C,
1,SynFMC/Rendered_Traj_Results/dynamic/103/video_480p.mp4,0.0,"In this video clip, how is the bear's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward; C: Moving right; D: Moving forward,D,
0,SynFMC/Rendered_Traj_Results/dynamic/110/video_480p.mp4,0.0,"In this video clip, how is the submarine's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving backward and turning left; C: Moving forward and turning left; D: Moving forward and turning right,D,
0,SynFMC/Rendered_Traj_Results/dynamic/115/video_480p.mp4,0.0,"In this video clip, how is the robot's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating clockwise; B: Moving forward; C: Moving backward; D: Basically unchange,D,
1,SynFMC/Rendered_Traj_Results/dynamic/121/video_480p.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,B,
1,SynFMC/Rendered_Traj_Results/dynamic/123/video_480p.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,A,
1,SynFMC/Rendered_Traj_Results/dynamic/133/video_480p.mp4,0.0,"In this video clip, how is the cat's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,B,
1,SynFMC/Rendered_Traj_Results/dynamic/14/video_480p.mp4,0.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning left; B: Moving forward and turning right; C: Moving backward and turning right; D: Moving forward and turning left,D,
1,SynFMC/Rendered_Traj_Results/dynamic/145/video_480p.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning left; B: Moving forward and turning right; C: Moving backward and turning right; D: Moving forward and turning left,B,
1,SynFMC/Rendered_Traj_Results/dynamic/146/video_480p.mp4,0.0,"In this video clip, how is the seal's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,C,
1,SynFMC/Rendered_Traj_Results/dynamic/15/video_480p.mp4,0.0,"In this video clip, how is the duck's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving right; C: Moving left; D: Moving backward,A,
1,SynFMC/Rendered_Traj_Results/dynamic/178/video_480p.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving upward; C: Moving backward; D: Basically unchange,D,
1,SynFMC/Rendered_Traj_Results/dynamic/183/video_480p.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,A,
1,SynFMC/Rendered_Traj_Results/dynamic/188/video_480p.mp4,0.0,"In this video clip, how is the bird's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,D,
0,SynFMC/Rendered_Traj_Results/dynamic/196/video_480p.mp4,0.0,"In this video clip, how is the toy_plane's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving forward and turning right; C: Moving backward and turning left; D: Moving forward and turning left,D,
1,SynFMC/Rendered_Traj_Results/dynamic/198/video_480p.mp4,0.0,"In this video clip, how is the seal's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,B,
1,SynFMC/Rendered_Traj_Results/dynamic/215/video_480p.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving forward; C: Moving left; D: Moving backward,B,
1,SynFMC/Rendered_Traj_Results/dynamic/227/video_480p.mp4,0.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving forward and turning right; C: Moving backward and turning left; D: Moving forward and turning left,D,
1,SynFMC/Rendered_Traj_Results/dynamic/234/video_480p.mp4,0.0,"In this video clip, how is the zebra's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,C,
1,SynFMC/Rendered_Traj_Results/dynamic/277/video_480p.mp4,0.0,"In this video clip, how is the bird's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,C,
1,SynFMC/Rendered_Traj_Results/dynamic/302/video_480p.mp4,0.0,"In this video clip, how is the bird's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,D,
1,SynFMC/Rendered_Traj_Results/dynamic/367/video_480p.mp4,0.0,"In this video clip, how is the chicken's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning left; B: Moving backward and turning left; C: Moving backward and turning right; D: Moving forward and turning right,A,
1,SynFMC/Rendered_Traj_Results/dynamic/375/video_480p.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,A,
1,SynFMC/Rendered_Traj_Results/dynamic/39/video_480p.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,A,
1,SynFMC/Rendered_Traj_Results/dynamic/391/video_480p.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,C,
1,SynFMC/Rendered_Traj_Results/dynamic/400/video_480p.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,C,
1,SynFMC/Rendered_Traj_Results/dynamic/403/video_480p.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward; C: Moving right; D: Moving forward,D,
1,SynFMC/Rendered_Traj_Results/dynamic/419/video_480p.mp4,0.0,"In this video clip, how is the monkey's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,B,
1,SynFMC/Rendered_Traj_Results/dynamic/427/video_480p.mp4,0.0,"In this video clip, how is the bee's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving right; C: Moving left; D: Moving forward,D,
1,SynFMC/Rendered_Traj_Results/dynamic/428/video_480p.mp4,0.0,"In this video clip, how is the seal's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving left; C: Moving right; D: Moving forward,D,
1,SynFMC/Rendered_Traj_Results/dynamic/439/video_480p.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,D,
1,SynFMC/Rendered_Traj_Results/dynamic/45/video_480p.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving forward and turning left; C: Moving backward and turning left; D: Moving forward and turning right,B,
1,SynFMC/Rendered_Traj_Results/dynamic/450/video_480p.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating counterclockwise; B: Rotating clockwise; C: Moving forward; D: Basically unchange,D,0-1.5s
1,SynFMC/Rendered_Traj_Results/dynamic/451/video_480p.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Basically unchange; B: Moving upward; C: Moving backward; D: Moving downward,A,
1,SynFMC/Rendered_Traj_Results/dynamic/467/video_480p.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,A,
1,SynFMC/Rendered_Traj_Results/dynamic/486/video_480p.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving right; C: Moving backward; D: Moving forward,D,1s
1,SynFMC/Rendered_Traj_Results/dynamic/56/video_480p.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving downward; C: Basically unchange; D: Moving backward,C,
1,SynFMC/Rendered_Traj_Results/dynamic/6/video_480p.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning left; B: Moving forward and turning right; C: Moving backward and turning right; D: Moving forward and turning left,D,
1,SynFMC/Rendered_Traj_Results/dynamic/71/video_480p.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning left; B: Moving backward and turning right; C: Moving forward and turning right; D: Moving backward and turning left,A,
1,SynFMC/Rendered_Traj_Results/dynamic/72/video_480p.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning left; B: Moving backward and turning left; C: Moving forward and turning right; D: Moving backward and turning right,A,1.5s
0,SynFMC/Rendered_Traj_Results/dynamic/79/video_480p.mp4,0.0,"In this video clip, how is the fish's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,D,
0,SynFMC/Rendered_Traj_Results/dynamic/8/video_480p.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning left; B: Moving backward and turning right; C: Moving forward and turning right; D: Moving forward and turning left,D,
1,SynFMC/Rendered_Traj_Results/dynamic/81/video_480p.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Basically unchange; B: Rotating counterclockwise; C: Rotating clockwise; D: Moving forward,A,
1,SynFMC/Rendered_Traj_Results/dynamic/92/video_480p.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving forward and turning left; C: Moving forward and turning right; D: Moving backward and turning left,C,1s
0,SynFMC/Rendered_Traj_Results/dynamic/96/video_480p.mp4,0.0,"In this video clip, how is the plane's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning right; B: Moving backward and turning left; C: Moving backward and turning right; D: Moving forward and turning left,A,1s
1,k700/base jumping/W6cAhAqvyeY_000191_000201/video-scene-00001.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving right; C: Moving forward; D: Moving left,C,
0,k700/base jumping/rGy7-nevWFM_000000_000010/video-scene-00000.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Basically unchange; C: Moving downward; D: Moving upward,C,
1,k700/biking through snow/TCSecVqiHv4_000169_000179/video-scene-00000.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving right; D: Moving left,B,
1,k700/biking through snow/TCSecVqiHv4_000169_000179/video-scene-00001.mp4,1.0,"In this video clip, how is the bike's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving right; C: Moving backward; D: Moving left,A,1-2s
0,k700/bulldozing/Mwfxj5jW-dc_000000_000010/video-scene-00000.mp4,1.0,"In this video clip, how is the bulldozer's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,A,
1,k700/bulldozing/qhx08XOm0GU_000248_000258/video-scene-00000.mp4,1.0,"In this video clip, how is the bulldozer's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,B,
1,k700/canoeing or kayaking/vRzRGPrVeKY_000023_000033/video-scene-00002.mp4,1.0,"In this video clip, how is the boat's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,C,
1,k700/carrying weight/bBvQGdo2NvU_000052_000062/video-scene-00000.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward; C: Moving right; D: Moving forward,D,
0,k700/catching or throwing frisbee/U0ktmc6Jgek_000041_000051/video-scene-00000.mp4,1.0,"In this video clip, how is the dog's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning left; B: Moving forward and turning right; C: Moving backward and turning right; D: Moving forward and turning left,B,1-3s
0,k700/catching or throwing frisbee/tXQo-v3YG1g_000001_000011/video-scene-00000.mp4,1.0,"In this video clip, how is the dog's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,C,
0,k700/catching or throwing softball/F1y0ToSPCvM_000035_000045/video-scene-00003.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving left; C: Moving right; D: Moving forward,D,
0,k700/crossing river/JRmwuQBJNj8_000046_000056/video-scene-00000.mp4,1.0,"In this video clip, how is the motorbike's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,A,0-5s
0,k700/curling (sport)/Kj2XTVseGaI_000041_000051/video-scene-00000.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,D,0-1s
1,k700/delivering mail/_AbWP7o-RSs_000092_000102/video-scene-00001.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,C,
1,k700/docking boat/7XgBHarpxOY_000028_000038/video-scene-00000.mp4,1.0,"In this video clip, how is the boat's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,A,
1,k700/dodgeball/i7DApGaMVM0_000050_000060/video-scene-00003.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving upward; B: Moving backward; C: Moving forward; D: Basically unchange,D,
1,k700/driving car/YGxnmSTG1js_000108_000118/video-scene-00001.mp4,0.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning left; B: Moving forward and turning right; C: Moving backward and turning left; D: Moving backward and turning right,A,1-2s
0,k700/driving tractor/94YJ3FMpeZ8_000028_000038/video-scene-00000.mp4,1.0,"In this video clip, how is the forklift's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving right; C: Moving backward; D: Moving left,C,
0,k700/driving tractor/9l3CweWo2h8_000003_000013/video-scene-00000.mp4,1.0,"In this video clip, how is the snowplow's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,B,
1,k700/geocaching/_qJxV4JtSmA_000182_000192/video-scene-00001.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning right; B: Moving forward and turning left; C: Moving backward and turning left; D: Moving backward and turning right,A,0-2s
1,k700/golf driving/CBCmxO1fP8k_000064_000074/video-scene-00000.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,A,
0,k700/herding cattle/AyYIgWcTuQM_000003_000013/video-scene-00000.mp4,1.0,"In this video clip, how is the horse's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving forward; C: Moving left; D: Moving backward,B,
1,k700/herding cattle/aZvUng53U2I_000002_000012/video-scene-00000.mp4,1.0,"In this video clip, how is the horse's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning left; B: Moving forward and turning left; C: Moving backward and turning right; D: Moving forward and turning right,B,
0,k700/hockey stop/uzCZ_qfK-lo_000024_000034/video-scene-00001.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,A,0-2s
1,k700/hoverboarding/L1qZRZONznY_000004_000014/video-scene-00007.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Basically unchange; B: Rotating clockwise; C: Rotating counterclockwise; D: Moving backward,A,
1,k700/hoverboarding/ODuDuZXX4go_000032_000042/video-scene-00000.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Basically unchange; C: Moving forward; D: Moving backward,B,0.3-1s
1,k700/hurdling/8SMY-IEcyCU_000001_000011/video-scene-00000.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving forward; C: Moving left; D: Moving backward,B,2-5s
1,k700/ice skating/EZtgEVFXLHw_000001_000011/video-scene-00002.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving forward and turning right; C: Moving backward and turning left; D: Moving forward and turning left,D,
1,k700/ice skating/lrrkA1ASuxA_000032_000042/video-scene-00004.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,B,
0,k700/ice swimming/zUCWM0GONic_000157_000167/video-scene-00002.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,B,
1,k700/jaywalking/nh6kHg7hRyQ_000006_000016/video-scene-00000.mp4,1.0,"In this video clip, how is the people's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,B,5-7s
1,k700/jogging/QY8RJBxbLnA_000116_000126/video-scene-00001.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving right; C: Moving left; D: Moving forward,D,
1,k700/jogging/QY8RJBxbLnA_000116_000126/video-scene-00002.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving right; C: Moving left; D: Moving forward,D,
1,k700/jogging/T2AP6MeSAo8_000201_000211/video-scene-00000.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,B,
0,k700/jumping bicycle/GpwBwRfcAT0_000045_000055/video-scene-00000.mp4,1.0,"In this video clip, how is the cyclist's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Orbiting counterclockwise; C: Basically unchange; D: Orbiting clockwise,B,
0,k700/jumping bicycle/kGOrC9PdB0I_000000_000010/video-scene-00000.mp4,1.0,"In this video clip, how is the cyclist's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning right; B: Moving backward and turning right; C: Moving forward and turning left; D: Moving backward and turning left,A,3-5s
0,k700/land sailing/WfhEVgAwlpI_000014_000024/video-scene-00000.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving right; C: Moving left; D: Moving forward,D,6-9s
0,k700/land sailing/sH5jgvTD-zI_000006_000016/video-scene-00000.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving forward and turning left; C: Moving forward and turning right; D: Moving backward and turning left,B,
0,k700/lawn mower racing/mi6uwVxkJP0_000133_000143/video-scene-00000.mp4,1.0,"In this video clip, how is the weeder's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,B,
0,k700/lawn mower racing/sK_LWTdusxU_000048_000058/video-scene-00001.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning left; B: Moving forward and turning right; C: Moving backward and turning left; D: Moving backward and turning right,A,
0,k700/lawn mower racing/sK_LWTdusxU_000048_000058/video-scene-00002.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning right; B: Moving backward and turning left; C: Moving forward and turning left; D: Moving backward and turning right,C,
1,k700/longboarding/F1ZbekX_koo_000288_000298/video-scene-00001.mp4,1.0,"In this video clip, how is the skateboarder's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,C,
0,k700/longboarding/bSP_4hezZ6U_000079_000089/video-scene-00003.mp4,1.0,"In this video clip, how is the skateboarder's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Orbiting counterclockwise; B: Orbiting clockwise; C: Basically unchange; D: Moving backward,A,0-1.5
1,k700/luge/LvPMb4h5RuM_000018_000028/video-scene-00002.mp4,1.0,"In this video clip, how is the boy's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,B,reverse back
0,k700/marching/Ln_UzrBR1r0_000032_000042/video-scene-00000.mp4,1.0,"In this video clip, how is the flag bearer's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning left; B: Moving backward and turning right; C: Moving forward and turning right; D: Moving backward and turning left,C,
1,k700/moon walking/FGuwZjR06_Y_000059_000069/video-scene-00000.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,B,0-3
1,k700/motorcycling/D62FyprEknY_000157_000167/video-scene-00000.mp4,1.0,"In this video clip, how is the motorbike's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning left; B: Moving forward and turning left; C: Moving backward and turning right; D: Moving forward and turning right,D,4-8
1,k700/paragliding/76njkKraeDc_000000_000010/video-scene-00000.mp4,1.0,"In this video clip, how is the paragliding's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving downward; B: Basically unchange; C: Moving backward; D: Moving upward,A,
0,k700/paragliding/95Df0yxIGbw_000076_000086/video-scene-00000.mp4,1.0,"In this video clip, how is the paragliding's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward-right; B: Moving backward-left; C: Moving backward-right; D: Moving forward-left,A,1-3
1,k700/parkour/skA1nMaGIfM_000062_000072/video-scene-00003.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving right; C: Moving left; D: Moving backward,A,
0,k700/passing American football (not in game)/H9d1LaBEt-I_000008_000018/video-scene-00000.mp4,1.0,"In this video clip, how is the dog's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,C,
0,k700/passing soccer ball/iTf1hZnXv-0_000021_000031/video-scene-00000.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,C,4-6s
0,k700/pirouetting/MOe-PtXxvAo_000048_000058/video-scene-00000.mp4,1.0,"In this video clip, how is the girl's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating counterclockwise; B: Rotating clockwise; C: Moving forward; D: Basically unchange,B,
1,k700/playing paintball/-KSlNTNJDxo_000009_000019/video-scene-00003.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving forward; C: Moving left; D: Basically unchange,D,
0,k700/playing polo/IE1afWIiBpk_000004_000014/video-scene-00000.mp4,1.0,"In this video clip, how is the horse's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning left; B: Moving forward and turning right; C: Moving backward and turning right; D: Moving backward and turning left,B,0-3s
1,k700/playing polo/J7j8_hz_hx8_000018_000028/video-scene-00001.mp4,1.0,"In this video clip, how is the horse's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving right; C: Moving left; D: Moving forward,D,0-3s
1,k700/playing road hockey/C-WIZUak28k_000007_000017/video-scene-00000.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving forward; C: Moving left; D: Moving backward,B,0-2s
0,k700/playing volleyball/ezHRosKTF1s_000010_000020/video-scene-00000.mp4,1.0,"In this video clip, how is the girl's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,B,3-5
0,k700/pushing car/Mks-DNcwc-s_000024_000034/video-scene-00000.mp4,1.0,"In this video clip, how is the toy_car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating counterclockwise; B: Rotating clockwise; C: Basically unchange; D: Moving backward,A,
1,k700/pushing car/Rsbq7mgPgXM_000014_000024/video-scene-00000.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,C,
1,k700/pushing car/n6jSTM8q3nw_000007_000017/video-scene-00000.mp4,1.0,"In this video clip, how is the baby's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,D,
1,k700/pushing wheelbarrow/SCe6x03FBaI_000003_000013/video-scene-00001.mp4,1.0,"In this video clip, how is the trolley's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating counterclockwise; B: Basically unchange; C: Moving upward; D: Rotating clockwise,B,
1,k700/pushing wheelchair/QF2z6xBNWIA_000016_000026/video-scene-00001.mp4,1.0,"In this video clip, how is the wheelchair's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,C,
1,k700/pushing wheelchair/mcMDV4N884Q_000053_000063/video-scene-00004.mp4,1.0,"In this video clip, how is the wheelchair's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,B,
1,k700/pushing wheelchair/nwBRn1CugHo_000113_000123/video-scene-00001.mp4,1.0,"In this video clip, how is the wheelchair's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving left; C: Moving right; D: Moving backward,A,
1,k700/riding a bike/9Bhl527p5cM_001247_001257/video-scene-00001.mp4,1.0,"In this video clip, how is the cyclist's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,A,0-3
1,k700/riding a bike/B1nDimzrEbo_000004_000014/video-scene-00000.mp4,1.0,"In this video clip, how is the cyclist's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,D,0-6
1,k700/riding camel/KH2ghayeo8k_000042_000052/video-scene-00001.mp4,1.0,"In this video clip, how is the camel's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving right; D: Moving left,B,
1,k700/riding camel/LPCekhiwV94_000221_000231/video-scene-00001.mp4,1.0,"In this video clip, how is the camel's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,D,
0,k700/riding mechanical bull/7y28Q0tWPZc_000624_000634/video-scene-00000.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating counterclockwise; B: Moving forward; C: Basically unchange; D: Rotating clockwise,D,0-2
1,k700/riding mule/q6elxqsBhcg_000209_000219/video-scene-00000.mp4,1.0,"In this video clip, how is the horse's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving forward and turning left; C: Moving forward and turning right; D: Moving backward and turning left,C,3-7
0,k700/riding mule/uayDext7cVU_000119_000129/video-scene-00000.mp4,1.0,"In this video clip, how is the horse's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving forward and turning right; C: Moving forward and turning left; D: Moving backward and turning left,C,4-8
1,k700/riding scooter/Fo_d9bsuYQE_000035_000045/video-scene-00000.mp4,1.0,"In this video clip, how is the motorbike's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving backward and turning left; C: Moving forward and turning right; D: Moving forward and turning left,D,0-3
0,k700/riding scooter/GPRT_zYR4kk_000009_000019/video-scene-00002.mp4,1.0,"In this video clip, how is the motorbike's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,B,0-3
0,k700/riding snow blower/LOO790fA_00_000026_000036/video-scene-00000.mp4,1.0,"In this video clip, how is the snowplow's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning left; B: Moving backward; C: Moving forward; D: Basically unchange,D,"rotate90,0-4"
1,k700/riding unicycle/EdOU7ow9jPM_000085_000095/video-scene-00001.mp4,1.0,"In this video clip, how is the wheelbarrow's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning left; B: Moving forward and turning right; C: Moving forward and turning left; D: Moving backward and turning right,B,
1,k700/roller skating/6MKV90DUPCY_000024_000034/video-scene-00000.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning right; B: Moving backward and turning left; C: Moving forward and turning left; D: Moving backward and turning right,C,0-5
1,k700/running on treadmill/nkOGrY5O_vA_000117_000127/video-scene-00001.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Basically unchange; C: Moving upward; D: Moving backward,B,
1,k700/side kick/F7s5gZ98X2Q_000006_000016/video-scene-00000.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,C,2-5
1,k700/skateboarding/06ofnvq2Hjs_000065_000075/video-scene-00000.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Basically unchange; B: Moving backward; C: Moving forward; D: Moving forward and turning right,A,reverse forward
1,k700/skateboarding/RTvs_EKwEJE_000100_000110/video-scene-00000.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving right; C: Moving left; D: Moving forward,C,
1,k700/skateboarding/rWAR3z0YIPg_000010_000020/video-scene-00001.mp4,1.0,"In this video clip, how is the sskateboarder's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,A,
1,k700/skateboarding/rWAR3z0YIPg_000010_000020/video-scene-00002.mp4,1.0,"In this video clip, how is the sskateboarder's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving right; C: Moving backward; D: Moving left,A,reverse forward
1,k700/ski ballet/BpxDJkUUzWA_000355_000365/video-scene-00001.mp4,1.0,"In this video clip, how is the skier's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning left; B: Moving backward and turning left; C: Moving backward and turning right; D: Moving forward and turning right,D,5-8
1,k700/skiing crosscountry/Ig2aR8Keq44_000027_000037/video-scene-00000.mp4,1.0,"In this video clip, how is the skier's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,C,0-5
1,k700/skiing crosscountry/Ig2aR8Keq44_000027_000037/video-scene-00001.mp4,1.0,"In this video clip, how is the skier's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,B,1-3
1,k700/skiing crosscountry/kn-pphD7uK8_000121_000131/video-scene-00002.mp4,1.0,"In this video clip, how is the skier's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,A,1-3
1,k700/skiing mono/tte1xX1T8xY_000028_000038/video-scene-00003.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving left; C: Moving forward; D: Basically unchange,D,
1,k700/skiing slalom/bQrcj7GCJJQ_000357_000367/video-scene-00001.mp4,1.0,"In this video clip, how is the skier's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,D,
1,k700/sled dog racing/WaP8tgWoqOU_000012_000022/video-scene-00001.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,D,
1,k700/sled dog racing/tKZzteaCpds_000063_000073/video-scene-00000.mp4,1.0,"In this video clip, how is the dogs's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,B,0-2
1,k700/snorkeling/l5BUJmVWLaA_000118_000128/video-scene-00001.mp4,1.0,"In this video clip, how is the diver's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,A,
1,k700/snowboarding/9o2tVONLRMU_000003_000013/video-scene-00000.mp4,1.0,"In this video clip, how is the skier's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving forward and turning right; C: Moving forward and turning left; D: Moving backward and turning left,B,2-4
1,k700/snowmobiling/NdAuyvdNneI_000018_000028/video-scene-00000.mp4,1.0,"In this video clip, how is the Snowmobile's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving backward and turning left; C: Moving forward and turning right; D: Moving forward and turning left,D,0-7
1,k700/steering car/EqEOpgIYkPE_000078_000088/video-scene-00001.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving right; C: Moving left; D: Moving forward,A,
1,k700/steering car/GdPiYfzw7fQ_000004_000014/video-scene-00001.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,B,
1,k700/swimming backstroke/GAw4NZDPCuU_000003_000013/video-scene-00000.mp4,1.0,"In this video clip, how is the swimmer's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,B,
1,k700/swimming breast stroke/sa391NAMpPA_000004_000014/video-scene-00000.mp4,1.0,"In this video clip, how is the swimmer's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,A,
1,k700/swimming breast stroke/zqb6UG19AjQ_000050_000060/video-scene-00000.mp4,1.0,"In this video clip, how is the swimmer's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,D,
1,k700/tiptoeing/OaXQdr9pnd8_000008_000018/video-scene-00000.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,B,
1,k700/tobogganing/iNGnDAGsO1Y_000059_000069/video-scene-00000.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning right; B: Moving forward and turning left; C: Moving backward and turning left; D: Moving backward and turning right,B,
1,k700/walking the dog/CFkD8z6bQvo_000056_000066/video-scene-00000.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,C,
1,k700/water skiing/8npAWfpWO_o_000000_000010/video-scene-00000.mp4,1.0,"In this video clip, how is the surfer's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving right; C: Moving forward; D: Moving left,C,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_-dwQmhzgQWw/video-scene-00002.mp4,1.0,"In this video clip, how is the girl's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward; C: Moving right; D: Moving forward,D,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_0k2LNdvcCZA/video-scene-00002.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,C,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_0vTXxnLEriA/video-scene-00003.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving forward and turning right; C: Moving forward and turning left; D: Moving backward and turning left,B,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_0yOd_4OK43I/video-scene-00002.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating counterclockwise; B: Basically unchange; C: Rotating clockwise; D: Moving forward,B,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_11tmFrZZUoM/video-scene-00001.mp4,1.0,"In this video clip, how is the horse's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Rotating clockwise; C: Basically unchange; D: Moving forward,C,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_16mZjk4AOJs/video-scene-00000.mp4,1.0,"In this video clip, how is the harvester's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,A,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_1dHrVQtInLI/video-scene-00000.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Basically unchange; D: Moving left,C,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_2TNTcPLxKMc/video-scene-00000.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,D,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_3b1VFoA7Q7k/video-scene-00001.mp4,1.0,"In this video clip, how is the cow's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,D,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_3cLBcl7nAxA/video-scene-00000.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving right; C: Moving left; D: Moving forward,D,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_3cLBcl7nAxA/video-scene-00002.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating counterclockwise; B: Moving left; C: Basically unchange; D: Rotating clockwise,C,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_4NwcGjxVuWg/video-scene-00000.mp4,1.0,"In this video clip, how is the bike's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,C,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_4ml3OGrYvVQ/video-scene-00001.mp4,1.0,"In this video clip, how is the soldiers's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,B,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_4ml3OGrYvVQ/video-scene-00003.mp4,1.0,"In this video clip, how is the soldiers's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,C,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_52BQHFb0Sj8/video-scene-00001.mp4,1.0,"In this video clip, how is the lion's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,D,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_55koFoYV-j8/video-scene-00006.mp4,0.0,"In this video clip, how is the superman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,D,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_55koFoYV-j8/video-scene-00007.mp4,0.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,B,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_55koFoYV-j8/video-scene-00008.mp4,0.0,"In this video clip, how is the dog's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving right; C: Moving forward; D: Moving left,C,
0,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_6ipqLzet3Bo/video-scene-00000.mp4,1.0,"In this video clip, how is the harvester's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,C,
0,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_7sBatb7FCgM/video-scene-00001.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving left; C: Moving right; D: Moving backward,A,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_8K-8QeQ6CEA/video-scene-00001.mp4,1.0,"In this video clip, how is the beaver's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,B,0-1
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_8t-xKwg70Aw/video-scene-00000.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Basically unchange; C: Moving backward; D: Moving forward,B,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_8t-xKwg70Aw/video-scene-00002.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving forward; C: Moving left; D: Moving backward,B,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_AMFqxnJ6lyY/video-scene-00000.mp4,0.0,"In this video clip, how is the chicken's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving right; D: Moving left,B,0-1
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_BmSVh00LM7o/video-scene-00000.mp4,1.0,"In this video clip, how is the motorbike's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning right; B: Moving backward and turning right; C: Moving backward and turning left; D: Moving forward and turning left,D,0-1.2
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_EJn2Dafb4Pw/video-scene-00000.mp4,1.0,"In this video clip, how is the dog's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning left; B: Moving forward; C: Moving forward and turning right; D: Basically unchange,D,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_EaBVnvifA8A/video-scene-00003.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,C,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_FlMn0GmDp5s/video-scene-00000.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,B,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_Fyp7lWnCAco/video-scene-00001.mp4,0.0,"In this video clip, how is the plane's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,A,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_Fyp7lWnCAco/video-scene-00003.mp4,0.0,"In this video clip, how is the plane's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating counterclockwise; B: Moving upward; C: Rotating clockwise; D: Moving downward,B,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_G4EqAn9rtzg/video-scene-00001.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,C,1-2s
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_GDhFffL5E1Q/video-scene-00004.mp4,1.0,"In this video clip, how is the person's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,B,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_J2M4Gk_yaIo/video-scene-00005.mp4,1.0,"In this video clip, how is the runner's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,C,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_JMPBTWiUVHw/video-scene-00000.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,A,3-6
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_LAQ8XzOPaPA/video-scene-00004.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving left; C: Moving right; D: Moving backward,C,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_NzvBsCoiyqc/video-scene-00004.mp4,1.0,"In this video clip, how is the motorbike's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward-left; B: Moving forward; C: Moving backward; D: Basically unchange,D,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_P5gH6mkNQZg/video-scene-00001.mp4,1.0,"In this video clip, how is the white car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving forward; C: Moving left; D: Moving backward,B,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_PCj0xJV7GI0/video-scene-00002.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating counterclockwise; B: Basically unchange; C: Rotating clockwise; D: Moving upward,C,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_PZg1hDiWFYk/video-scene-00002.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving downward; B: Moving upward; C: Moving backward; D: Basically unchange,A,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_Sw_eP0zi4k0/video-scene-00000.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating counterclockwise; B: Basically unchange; C: Moving forward; D: Rotating clockwise,B,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_TXf5cL95Y3w/video-scene-00001.mp4,1.0,"In this video clip, how is the dog's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving forward; C: Moving left; D: Moving backward,B,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_TsuHAopbc1I/video-scene-00000.mp4,1.0,"In this video clip, how is the truck's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,D,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_U0x52_k3EG8/video-scene-00004.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,C,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_UJCxQ54i0o0/video-scene-00000.mp4,1.0,"In this video clip, how is the baby's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving left; C: Moving right; D: Moving backward,B,0-2
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_V1-QQkEPCC8/video-scene-00002.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Basically unchange; B: Moving forward and turning left; C: Moving forward and turning right; D: Moving forward,A,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_VtP9ZQ9BdYk/video-scene-00005.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving downward; C: Moving upward; D: Basically unchange,B,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_WjVJ8j6qWWQ/video-scene-00001.mp4,1.0,"In this video clip, how is the skier's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,A,reverse forward
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_XlvvPiM82Jc/video-scene-00002.mp4,1.0,"In this video clip, how is the motorbike's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating clockwise; B: Moving forward; C: Basically unchange; D: Moving backward,C,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_Xs2UQsCyWKE/video-scene-00000.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning left; B: Moving forward and turning left; C: Moving forward and turning right; D: Moving backward and turning right,B,0-3
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_Xx8UOZNPsKQ/video-scene-00000.mp4,1.0,"In this video clip, how is the ship's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,D,7-11
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_YfKRSLpJZDw/video-scene-00000.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning left; B: Moving backward and turning right; C: Moving forward and turning right; D: Moving forward and turning left,D,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_YyUFRWZb1DE/video-scene-00000.mp4,1.0,"In this video clip, how is the animal's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving right; C: Moving forward; D: Moving left,C,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb__ktvEEOzqZ0/video-scene-00000.mp4,1.0,"In this video clip, how is the lion's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,C,0-2
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_aSGtwaZ22ZU/video-scene-00003.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,C,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_aSLaqLBcWrA/video-scene-00003.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Basically unchange; B: Moving upward; C: Moving downward; D: Rotating clockwise,B,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_aYckcF68fnU/video-scene-00000.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,C,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_au9X6t7TVSY/video-scene-00000.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,C,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_byy2-cV2kvk/video-scene-00001.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving upward; D: Basically unchange,D,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_cTVM2cQ3JI0/video-scene-00003.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating clockwise; B: Rotating counterclockwise; C: Moving forward; D: Basically unchange,D,
0,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_dJAUt-hx2iU/video-scene-00000.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,B,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_dJAUt-hx2iU/video-scene-00008.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning left; B: Moving forward and turning right; C: Moving backward and turning left; D: Moving backward and turning right,A,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_dmuk705efRU/video-scene-00001.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,D,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_eFKKMI9KVtA/video-scene-00000.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,C,0-3
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_eajNgrGwIJs/video-scene-00001.mp4,1.0,"In this video clip, how is the ambulance's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,A,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_fiRLBLcw-uY/video-scene-00000.mp4,1.0,"In this video clip, how is the bus's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Basically unchange; C: Rotating counterclockwise; D: Rotating clockwise,B,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_g7sEtiEa1-o/video-scene-00003.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating clockwise; B: Moving forward; C: Basically unchange; D: Rotating counterclockwise,C,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_nUdgT0sezco/video-scene-00000.mp4,0.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning left; B: Moving backward and turning right; C: Moving forward and turning right; D: Moving forward and turning left,D,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_q5N2L5L9j1Q/video-scene-00000.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,A,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_tXfxkxh27ks/video-scene-00001.mp4,1.0,"In this video clip, how is the child's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving upward; B: Moving backward; C: Basically unchange; D: Moving downward,D,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_uI19fhkZPUA/video-scene-00000.mp4,1.0,"In this video clip, how is the motorbike's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Basically unchange; B: Moving right; C: Moving forward and turning left; D: Moving forward and turning right,A,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_upupV4Dyfv0/video-scene-00001.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,D,
1,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_vuokNBBf2XQ/video-scene-00001.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,A,
1,llava178k/30_60_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_4GHQeWJQTuw/video-scene-00011.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Rotating clockwise; C: Rotating counterclockwise; D: Basically unchange,B,
1,llava178k/30_60_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_Bag2HJhcV44/video-scene-00000.mp4,1.0,"In this video clip, how is the truck's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,C,
1,llava178k/30_60_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_MOd-t8Uxs24/video-scene-00003.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating clockwise; B: Rotating counterclockwise; C: Basically unchange; D: Moving right,C,
1,llava178k/30_60_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_T55Kx9W-SvI/video-scene-00000.mp4,0.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating clockwise; B: Rotating counterclockwise; C: Moving forward and turning left; D: Basically unchange,D,
1,llava178k/30_60_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_T55Kx9W-SvI/video-scene-00005.mp4,0.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,B,
1,llava178k/30_60_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_T55Kx9W-SvI/video-scene-00007.mp4,0.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,A,reverse right forward
1,llava178k/30_60_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_XmkcVwEJ_Q8/video-scene-00000.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,C,
1,llava178k/30_60_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_ZL9ztyaDSqM/video-scene-00022.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward; C: Rotating counterclockwise; D: Basically unchange,D,
1,internet/-4dDC0lPRB0/video-scene-00006.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,A,"0-2, reverse back"
1,internet/-4dDC0lPRB0/video-scene-00033.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving right; C: Moving left; D: Moving forward,D,
1,internet/-7bJwW2NYyc/video-scene-00039.mp4,1.0,"In this video clip, how is the characters's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Basically unchange; D: Rotating clockwise,C,7-11
1,internet/-7bJwW2NYyc/video-scene-00045.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving upward; B: Moving downward; C: Rotating clockwise; D: Basically unchange,D,
1,internet/-7bJwW2NYyc/video-scene-00060.mp4,1.0,"In this video clip, how is the carriage's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving right; C: Moving left; D: Moving forward,D,
1,internet/-7bJwW2NYyc/video-scene-00152.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,C,
1,internet/-7bJwW2NYyc/video-scene-00161.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating clockwise; B: Moving forward; C: Basically unchange; D: Moving backward,C,
1,internet/-7bJwW2NYyc/video-scene-00167.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving right; C: Moving forward; D: Moving left,C,
1,internet/-7bJwW2NYyc/video-scene-00168.mp4,1.0,"In this video clip, how is the horse's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,B,
0,internet/-FGVJS3rT80/video-scene-00014.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,B,
1,internet/-FGVJS3rT80/video-scene-00022.mp4,1.0,"In this video clip, how is the drone's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving right; C: Moving backward; D: Moving forward,D,
1,internet/-FGVJS3rT80/video-scene-00034.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,D,
1,internet/-FGVJS3rT80/video-scene-00056.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving right; C: Moving left; D: Moving backward,A,
1,internet/-YVsVvsABOQ/video-scene-00011.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving right; C: Moving forward; D: Moving left,C,
1,internet/-YVsVvsABOQ/video-scene-00040.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving left; C: Basically unchange; D: Moving right,C,
1,internet/-a_AvIzbVHI/video-scene-00017.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,C,
1,internet/-a_AvIzbVHI/video-scene-00024.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving right; C: Moving left; D: Moving backward,A,
1,internet/0IRTpb1y8b0/video-scene-00007.mp4,0.0,"In this video clip, how is the sailboat's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,B,0-4s
1,internet/0IRTpb1y8b0/video-scene-00045.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Basically unchange; C: Moving forward and turning right; D: Moving forward and turning left,B,0-3
1,internet/0tIoyN7WKuA/video-scene-00028.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,A,
1,internet/1MR3H_9Wq4A/video-scene-00076.mp4,1.0,"In this video clip, how is the aircraft's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning left; B: Moving forward and turning right; C: Moving backward and turning left; D: Moving backward and turning right,A,
0,internet/1MjOFcsnz34/video-scene-00006.mp4,1.0,"In this video clip, how is the ship's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,B,
1,internet/2MdI1C-m4kk/video-scene-00006.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,B,
1,internet/2TsQA3aRd14/video-scene-00059.mp4,0.0,"In this video clip, how is the boat's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving right; D: Moving left,B,
1,internet/2kzaSEU-P70/video-scene-00012.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,B,
1,internet/2kzaSEU-P70/video-scene-00054.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward and turning left; C: Basically unchange; D: Moving forward,C,
1,internet/336clDassMQ/video-scene-00026.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving upward; B: Moving downward; C: Basically unchange; D: Moving backward,B,2-4
1,internet/3LDJxHWtFUI/video-scene-00042.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Basically unchange; B: Moving downward; C: Moving upward; D: Moving backward,C,
1,internet/3NZyvpYYj3o/video-scene-00011.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving forward and turning left; C: Moving forward and turning right; D: Moving backward and turning left,B,
1,internet/3NZyvpYYj3o/video-scene-00046.mp4,1.0,"In this video clip, how is the charaacter's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning left; B: Moving backward and turning right; C: Moving forward and turning right; D: Moving backward and turning left,C,
1,internet/4UuBCncNhYw/video-scene-00023.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,A,
1,internet/4cZ3OQlfupM/video-scene-00001.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,B,
1,internet/4cZ3OQlfupM/video-scene-00016.mp4,1.0,"In this video clip, how is the horse's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,B,
1,internet/4cZ3OQlfupM/video-scene-00023.mp4,1.0,"In this video clip, how is the dear's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving right; C: Moving backward; D: Moving forward,D,0-4
1,internet/4rE_ToGWcdU/video-scene-00013.mp4,1.0,"In this video clip, how is the submarine's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,B,
1,internet/5FUEltKsVJQ/video-scene-00020.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning left; B: Moving backward and turning right; C: Moving forward and turning left; D: Moving forward and turning right,D,
1,internet/5FUEltKsVJQ/video-scene-00037.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving left; C: Moving right; D: Moving forward,D,
1,internet/5FUEltKsVJQ/video-scene-00071.mp4,1.0,"In this video clip, how is the horse's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,A,
1,internet/5H0Ik7QBikI/video-scene-00118.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,C,
0,internet/5X5i4qN6M88/video-scene-00030.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,C,
1,internet/5jYgYFpGCL4/video-scene-00015.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,C,
1,internet/5jYgYFpGCL4/video-scene-00031.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating clockwise; B: Basically unchange; C: Rotating counterclockwise; D: Moving left,B,
1,internet/5jYgYFpGCL4/video-scene-00041.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating clockwise; B: Rotating counterclockwise; C: Moving left; D: Basically unchange,D,
1,internet/5umLTWybVd4/video-scene-00010.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Basically unchange; B: Moving backward; C: Moving forward; D: Moving left,A,
1,internet/5umLTWybVd4/video-scene-00022.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating clockwise; B: Rotating counterclockwise; C: Moving upward; D: Basically unchange,A,
1,internet/6Dya28hBChQ/video-scene-00032.mp4,1.0,"In this video clip, how is the train's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Basically unchange; B: Moving forward; C: Moving forward and turning right; D: Moving backward,A,
1,internet/6VNL2NdYvFQ/video-scene-00036.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,A,
1,internet/6VNL2NdYvFQ/video-scene-00049.mp4,1.0,"In this video clip, how is the aircraft's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving upward; B: Moving downward; C: Moving forward-left; D: Basically unchange,B,
1,internet/6VNL2NdYvFQ/video-scene-00075.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,A,
1,internet/6cpC7A1h4uk/video-scene-00005.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,B,
1,internet/6hWB001GSu8/video-scene-00028.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving downward; B: Moving left; C: Basically unchange; D: Moving upward,C,
1,internet/73lQgsAKYSc/video-scene-00022.mp4,0.0,"In this video clip, how is the chimpanzees's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,B,
1,internet/7DZmTaRDuzM/video-scene-00004.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Rotating clockwise; C: Rotating counterclockwise; D: Basically unchange,D,0-3
1,internet/7DZmTaRDuzM/video-scene-00030.mp4,1.0,"In this video clip, how is the blue car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning right; B: Moving backward and turning right; C: Moving forward and turning left; D: Moving backward and turning left,C,
1,internet/7DZmTaRDuzM/video-scene-00032.mp4,1.0,"In this video clip, how is the train's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,A,
1,internet/7cD3EPH2_jU/video-scene-00058.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,A,0-4
1,internet/87iHlP0YkPM/video-scene-00045.mp4,0.0,"In this video clip, how is the dragon's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,B,
1,internet/8KNYC9Kw4W0/video-scene-00049.mp4,0.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning right; B: Moving forward and turning left; C: Moving backward and turning left; D: Moving backward and turning right,A,0-2
1,internet/8ZPZ8V3X2sM/video-scene-00010.mp4,0.0,"In this video clip, how is the helicopter's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Basically unchange; C: Moving downward; D: Moving upward,C,
1,internet/8ZPZ8V3X2sM/video-scene-00068.mp4,0.0,"In this video clip, how is the mecha's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving forward; C: Moving left; D: Moving backward,B,
0,internet/8mb0h_b182g/video-scene-00013.mp4,1.0,"In this video clip, how is the fighter's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving right; C: Moving backward; D: Moving left,A,
0,internet/96NMjhVBaxc/video-scene-00006.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,A,
1,internet/96NMjhVBaxc/video-scene-00012.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,A,
1,internet/96NMjhVBaxc/video-scene-00019.mp4,1.0,"In this video clip, how is the plane's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,C,
1,internet/96NMjhVBaxc/video-scene-00027.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving forward; C: Moving left; D: Moving backward,B,0-2
1,internet/9pJLAEuk1_I/video-scene-00022.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,B,
1,internet/9w9OIBfjg3E/video-scene-00050.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving downward; C: Moving upward; D: Basically unchange,D,
1,internet/A9PaEE5Q3xk/video-scene-00020.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving upward; B: Basically unchange; C: Moving forward; D: Moving downward,B,
1,internet/AN2SZ4H4Qzk/video-scene-00048.mp4,1.0,"In this video clip, how is the horse's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving right; C: Moving backward; D: Moving forward,D,
1,internet/AN2SZ4H4Qzk/video-scene-00054.mp4,1.0,"In this video clip, how is the ship's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving right; C: Moving backward; D: Moving forward,D,
1,internet/AcRFY9WFIpY/video-scene-00010.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving forward and turning left; C: Basically unchange; D: Moving forward and turning right,C,
1,internet/AcRFY9WFIpY/video-scene-00206.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving right; D: Moving left,B,
1,internet/ArXf6X_0-ww/video-scene-00048.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning right; B: Moving backward and turning left; C: Moving backward and turning right; D: Moving forward and turning left,A,
1,internet/B-tEt_VaN0U/video-scene-00031.mp4,1.0,"In this video clip, how is the truck's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,D,6-12
1,internet/BB3zcRQJfXE/video-scene-00020.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving right; C: Moving forward; D: Moving left,C,
1,internet/BGB5FY0Zklk/video-scene-00015.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Basically unchange; B: Moving forward; C: Moving backward and turning left; D: Moving backward-left,A,
1,internet/BJ5YQFt9ab0/video-scene-00008.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating clockwise; B: Moving downward; C: Moving upward; D: Basically unchange,C,
1,internet/BTMO_goJ9sQ/video-scene-00063.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,B,
1,internet/BYUSpyONQ0A/video-scene-00021.mp4,1.0,"In this video clip, how is the horse's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,C,
1,internet/BahFh-GTZkM/video-scene-00001.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Basically unchange; B: Rotating clockwise; C: Moving forward; D: Rotating counterclockwise,A,0-4
1,internet/BahFh-GTZkM/video-scene-00021.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Basically unchange; B: Moving left; C: Rotating counterclockwise; D: Rotating clockwise,A,
0,internet/BzI5kVdX8bI/video-scene-00053.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning left; B: Moving forward and turning right; C: Moving backward and turning left; D: Moving backward and turning right,B,
1,internet/CHm_afjE_2k/video-scene-00032.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward; C: Basically unchange; D: Moving backward and turning left,C,
1,internet/CNcbBZ1cEuE/video-scene-00047.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward; C: Moving right; D: Moving forward,B,
1,internet/CVIymFTuQoM/video-scene-00020.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,B,
1,internet/CbA1HWWgTbY/video-scene-00014.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving right; C: Moving backward; D: Moving left,A,
1,internet/CbA1HWWgTbY/video-scene-00025.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning right; B: Moving forward and turning left; C: Moving backward and turning right; D: Moving backward and turning left,B,
1,internet/CbA1HWWgTbY/video-scene-00026.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Basically unchange; B: Moving backward; C: Moving downward; D: Moving upward,D,
1,internet/Chz43YiO5dY/video-scene-00025.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning right; B: Moving backward and turning left; C: Moving backward and turning right; D: Moving forward and turning left,D,
1,internet/D1m2Z4_-XA4/video-scene-00009.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving left; C: Moving right; D: Moving forward,D,
1,internet/D1m2Z4_-XA4/video-scene-00010.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving right; C: Moving backward; D: Moving forward,D,
1,internet/D1m2Z4_-XA4/video-scene-00013.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning left; B: Moving forward and turning right; C: Moving backward and turning left; D: Moving backward and turning right,A,
1,internet/D1m2Z4_-XA4/video-scene-00025.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,C,
1,internet/DJqkat66RG4/video-scene-00002.mp4,1.0,"In this video clip, how is the horse's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,C,
1,internet/DJqkat66RG4/video-scene-00021.mp4,1.0,"In this video clip, how is the horse's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,C,3-5
1,internet/EGgsdaCt3wI/video-scene-00077.mp4,1.0,"In this video clip, how is the motorbike's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning left; B: Moving forward and turning right; C: Moving forward and turning left; D: Moving backward and turning right,C,1-4
1,internet/ES9KIAzjvBE/video-scene-00001.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Basically unchange; C: Rotating clockwise; D: Moving forward,B,0-8
1,internet/ES9KIAzjvBE/video-scene-00015.mp4,1.0,"In this video clip, how is the plane's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving right; D: Moving left,B,
1,internet/Ed_-q5b-5KE/video-scene-00004.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving upward; B: Moving backward; C: Rotating clockwise; D: Moving downward,A,
1,internet/Ed_-q5b-5KE/video-scene-00017.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward-left; C: Basically unchange; D: Moving forward,C,
1,internet/EmKR8MQammg/video-scene-00016.mp4,1.0,"In this video clip, how is the wolf's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,B,
1,internet/EmKR8MQammg/video-scene-00062.mp4,1.0,"In this video clip, how is the horse's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Rotating clockwise; C: Rotating counterclockwise; D: Basically unchange,D,2-5
1,internet/EmKR8MQammg/video-scene-00073.mp4,1.0,"In this video clip, how is the horse's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating clockwise; B: Moving downward; C: Moving upward; D: Basically unchange,D,
1,internet/EmKR8MQammg/video-scene-00090.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,C,
1,internet/EmKR8MQammg/video-scene-00094.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Basically unchange; D: Moving forward,C,
1,internet/EsA9VSYO8DU/video-scene-00001.mp4,1.0,"In this video clip, how is the ship's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,D,
1,internet/F9xgki5p26k/video-scene-00056.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,A,
1,internet/FM-CE4D8NJM/video-scene-00046.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Basically unchange; B: Rotating clockwise; C: Moving left; D: Rotating counterclockwise,A,
1,internet/FQIx05cdYCM/video-scene-00005.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Basically unchange; B: Moving forward; C: Rotating counterclockwise; D: Rotating clockwise,C,
1,internet/FQIx05cdYCM/video-scene-00017.mp4,1.0,"In this video clip, how is the soldier's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving right; C: Moving left; D: Moving backward,A,
1,internet/FQIx05cdYCM/video-scene-00039.mp4,1.0,"In this video clip, how is the fighter's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,C,
1,internet/FQIx05cdYCM/video-scene-00052.mp4,1.0,"In this video clip, how is the boat's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,D,
1,internet/FopBvLLXKZ0/video-scene-00016.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning left; B: Moving forward and turning right; C: Moving backward and turning right; D: Moving backward and turning left,A,0-3
1,internet/FopBvLLXKZ0/video-scene-00043.mp4,1.0,"In this video clip, how is the plane's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving right; C: Moving backward; D: Moving forward,D,
1,internet/FopBvLLXKZ0/video-scene-00047.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning left; B: Moving backward and turning right; C: Moving forward and turning left; D: Moving forward and turning right,D,0-1
1,internet/FopBvLLXKZ0/video-scene-00054.mp4,1.0,"In this video clip, how is the motorbike's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving downward; B: Moving forward-right; C: Basically unchange; D: Moving upward,D,0-1
1,internet/HzJ7Nvwz1e8/video-scene-00030.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Rotating counterclockwise; C: Basically unchange; D: Rotating clockwise,C,0-8
0,internet/IGrJRY3UwP0/video-scene-00017.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Orbiting counterclockwise; C: Orbiting clockwise; D: Basically unchange,B,0-4
1,internet/IL4fmLYbCEA/video-scene-00018.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning left; B: Moving backward and turning left; C: Moving backward and turning right; D: Moving forward and turning right,D,0-2
1,internet/J7RW7WNzh0w/video-scene-00004.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward; C: Moving right; D: Moving forward,D,
1,internet/JIdfUEI4si8/video-scene-00015.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,C,
1,internet/KB3KMUw54Hc/video-scene-00006.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,C,0-3
1,internet/KB3KMUw54Hc/video-scene-00011.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,A,
1,internet/KB3KMUw54Hc/video-scene-00040.mp4,1.0,"In this video clip, how is the plane's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving left; C: Moving right; D: Moving backward,A,
1,internet/KB3KMUw54Hc/video-scene-00073.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving backward and turning left; C: Moving forward and turning left; D: Moving forward and turning right,D,1-4
1,internet/KB3KMUw54Hc/video-scene-00094.mp4,1.0,"In this video clip, how is the plane's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,A,
1,internet/KB3KMUw54Hc/video-scene-00095.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,C,2-5
1,internet/KB3KMUw54Hc/video-scene-00117.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving upward; B: Moving forward-right; C: Moving downward; D: Basically unchange,A,2-5
1,internet/KCox-nsChqg/video-scene-00028.mp4,0.0,"In this video clip, how is the aircraft's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,C,
1,internet/Kui5PpD9ITE/video-scene-00116.mp4,0.0,"In this video clip, how is the horse's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving right; C: Moving backward; D: Moving left,A,0-2
1,internet/L-L23XzHX9w/video-scene-00054.mp4,0.0,"In this video clip, how is the aircraft's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning left; B: Moving forward and turning right; C: Moving forward and turning left; D: Moving backward and turning right,B,
1,internet/L-L23XzHX9w/video-scene-00119.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,C,
1,internet/L-L23XzHX9w/video-scene-00178.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,A,
1,internet/L85T-a6JUUw/video-scene-00011.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating clockwise; B: Moving downward; C: Basically unchange; D: Moving upward,C,3-10
1,internet/L85T-a6JUUw/video-scene-00031.mp4,1.0,"In this video clip, how is the characters's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving right; C: Moving backward; D: Moving forward,D,
1,internet/LHkYq4MhhAU/video-scene-00009.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning left; B: Moving backward and turning right; C: Moving forward and turning right; D: Moving backward and turning left,A,
1,internet/LHkYq4MhhAU/video-scene-00022.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning left; B: Moving backward and turning right; C: Moving forward and turning right; D: Moving backward and turning left,A,0-1
1,internet/LHkYq4MhhAU/video-scene-00040.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning left; B: Moving backward and turning right; C: Moving forward and turning right; D: Moving forward and turning left,C,
1,internet/LMEUYq17150/video-scene-00011.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,C,
1,internet/LS-f2jmR5F4/video-scene-00021.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,C,
1,internet/LeaRA-9yMNY/video-scene-00010.mp4,1.0,"In this video clip, how is the wheelchair's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,C,2-4
1,internet/LeaRA-9yMNY/video-scene-00035.mp4,1.0,"In this video clip, how is the helicopter's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving downward; B: Basically unchange; C: Moving backward; D: Moving upward,A,2-4
1,internet/LeaRA-9yMNY/video-scene-00131.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving right; C: Moving backward; D: Moving forward,D,2-5
1,internet/LeaRA-9yMNY/video-scene-00160.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,C,
1,internet/LfUqbCL2OKk/video-scene-00008.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,B,0-3
1,internet/M6aVlqbiZrE/video-scene-00021.mp4,1.0,"In this video clip, how is the plane's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving upward; C: Moving right; D: Moving downward,D,
1,internet/MQugcNLFI9k/video-scene-00054.mp4,1.0,"In this video clip, how is the airplane's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving downward; B: Moving upward; C: Moving right; D: Moving left,A,
1,internet/MnvpmaUfGNw/video-scene-00024.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,B,1-3
0,internet/NQ9FYgIoG3I/video-scene-00045.mp4,0.0,"In this video clip, how is the fox's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving forward and turning right; C: Moving backward and turning left; D: Moving forward and turning left,D,
1,internet/NzfC0j8GU_w/video-scene-00016.mp4,1.0,"In this video clip, how is the sailboat's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving left; C: Moving right; D: Moving forward,D,
1,internet/NzfC0j8GU_w/video-scene-00029.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Rotating clockwise; C: Basically unchange; D: Rotating counterclockwise,B,
1,internet/NzfC0j8GU_w/video-scene-00035.mp4,1.0,"In this video clip, how is the motorbike's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,C,
1,internet/O47JUErbk34/video-scene-00048.mp4,1.0,"In this video clip, how is the chaaracter's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,A,
1,internet/O8HHE92h3Vc/video-scene-00022.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Basically unchange; B: Orbiting counterclockwise; C: Moving right; D: Orbiting clockwise,B,0-1
1,internet/OCKNzAGQ86U/video-scene-00025.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving right; C: Moving forward; D: Moving left,C,
1,internet/OCKNzAGQ86U/video-scene-00037.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving right; C: Moving backward; D: Moving left,A,
1,internet/OWwdUUUScyA/video-scene-00008.mp4,0.0,"In this video clip, how is the aircraft's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving downward; B: Moving upward; C: Moving backward; D: Basically unchange,D,
1,internet/Oa4QcdNsqUE/video-scene-00030.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning right; B: Moving forward and turning left; C: Moving backward and turning left; D: Moving backward and turning right,B,
1,internet/Qi2rkY_WJUg/video-scene-00009.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving forward and turning right; C: Moving backward and turning left; D: Moving forward and turning left,B,
1,internet/Qi2rkY_WJUg/video-scene-00011.mp4,1.0,"In this video clip, how is the bus's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,B,
1,internet/Qi2rkY_WJUg/video-scene-00050.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward and turning right; C: Basically unchange; D: Moving forward,C,
1,internet/QnYXDbHKiE4/video-scene-00043.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving upward; B: Moving downward; C: Basically unchange; D: Moving backward,B,
1,internet/QzJtMyM3HNU/video-scene-00015.mp4,1.0,"In this video clip, how is the red car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning left; B: Basically unchange; C: Moving forward; D: Moving backward,B,
1,internet/R2z3M8hdJrk/video-scene-00006.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,A,
1,internet/R2z3M8hdJrk/video-scene-00014.mp4,1.0,"In this video clip, how is the helicopter's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning left; B: Moving backward and turning left; C: Moving backward and turning right; D: Moving forward and turning right,D,
1,internet/R2z3M8hdJrk/video-scene-00036.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving backward and turning left; C: Moving forward and turning right; D: Moving forward and turning left,D,
1,internet/RUvgK_sE_e8/video-scene-00023.mp4,1.0,"In this video clip, how is the characters's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving right; C: Moving left; D: Moving forward,D,
1,internet/RUvgK_sE_e8/video-scene-00048.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving left; C: Moving right; D: Moving backward,A,
1,internet/RUvgK_sE_e8/video-scene-00056.mp4,1.0,"In this video clip, how is the dragon's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Basically unchange; C: Rotating clockwise; D: Rotating counterclockwise,D,
1,internet/RXt-hSbF02k/video-scene-00003.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving right; C: Moving backward; D: Moving left,A,
1,internet/RXt-hSbF02k/video-scene-00081.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving left; C: Moving right; D: Moving forward,D,"0-5,cam reverse forward"
1,internet/Rbf1_xnVN8k/video-scene-00045.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,C,
1,internet/S1tMvtJvBTc/video-scene-00008.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,B,
1,internet/SX2vYvhMAqc/video-scene-00019.mp4,1.0,"In this video clip, how is the creature's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving right; C: Moving forward; D: Moving left,C,
1,internet/Tub_j2foJjo/video-scene-00008.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Rotating counterclockwise; C: Rotating clockwise; D: Basically unchange,D,
1,internet/Tub_j2foJjo/video-scene-00022.mp4,1.0,"In this video clip, how is the soldier's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,D,
1,internet/Tub_j2foJjo/video-scene-00024.mp4,1.0,"In this video clip, how is the soldier's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,A,
1,internet/Tub_j2foJjo/video-scene-00044.mp4,1.0,"In this video clip, how is the plane's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving left; C: Moving right; D: Moving forward,D,0-4
1,internet/TzfXDnHifeM/video-scene-00030.mp4,0.0,"In this video clip, how is the Flying Dragon's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning left; B: Moving backward and turning right; C: Moving backward and turning left; D: Moving forward and turning right,A,2-5
0,internet/UKCOdrLG3Z8/video-scene-00017.mp4,1.0,"In this video clip, how is the elephant's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving upward; B: Moving backward and turning right; C: Moving backward; D: Moving downward,A,0-3
1,internet/VR7uvOTdWLw/video-scene-00068.mp4,0.0,"In this video clip, how is the raccoon's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,C,
1,internet/VoACKEC8Rvo/video-scene-00022.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,B,
0,internet/W625SVFCiOo/video-scene-00015.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning right; B: Moving backward and turning left; C: Moving backward and turning right; D: Moving forward and turning left,D,1-3
1,internet/WhodXqmJuvA/video-scene-00089.mp4,0.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning right; B: Moving backward and turning right; C: Moving backward and turning left; D: Moving forward and turning left,D,1-4
1,internet/X_MqKoj_sk8/video-scene-00063.mp4,1.0,"In this video clip, how is the motorbike's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving right; D: Moving left,B,0-3
1,internet/ZHq2OW6gjZM/video-scene-00023.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving backward and turning left; C: Moving forward and turning left; D: Moving forward and turning right,C,
1,internet/_ZYHlc2Niaw/video-scene-00052.mp4,1.0,"In this video clip, how is the boat's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,B,
1,internet/alBBpADUWMM/video-scene-00024.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,B,
1,internet/alBBpADUWMM/video-scene-00041.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving right; C: Moving left; D: Moving forward,C,
1,internet/b-ZGTD0NihE/video-scene-00026.mp4,0.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning left; B: Moving forward and turning left; C: Moving backward and turning right; D: Moving forward and turning right,D,
1,internet/chxX9uucndY/video-scene-00063.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving left; C: Moving right; D: Moving forward,D,
1,internet/ebpkUvyCXXo/video-scene-00006.mp4,0.0,"In this video clip, how is the robot's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,B,
1,internet/ex_On2pyFFY/video-scene-00001.mp4,1.0,"In this video clip, how is the boat's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,A,
0,internet/fQS9GOcGy9c/video-scene-00070.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Basically unchange; B: Rotating counterclockwise; C: Moving upward; D: Rotating clockwise,D,
0,internet/fXCfGwUY52g/video-scene-00060.mp4,1.0,"In this video clip, how is the boat's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning left; B: Moving forward and turning left; C: Moving backward and turning right; D: Moving forward and turning right,B,
1,internet/fgeBZVy5Nfg/video-scene-00032.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,C,
1,internet/g5bRCqlI0XE/video-scene-00019.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving downward; B: Moving upward; C: Moving backward; D: Basically unchange,A,
0,internet/gbH9nFjHFwI/video-scene-00047.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Basically unchange; C: Moving upward; D: Moving downward,C,
1,internet/h9yDvzBrSC4/video-scene-00147.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward-right; B: Moving forward-left; C: Moving forward-right; D: Moving backward-left,B,0-1
1,internet/hGcZmj7fK6c/video-scene-00034.mp4,1.0,"In this video clip, how is the train's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving right; C: Moving left; D: Moving backward,A,
1,internet/hGcZmj7fK6c/video-scene-00040.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating counterclockwise; B: Basically unchange; C: Rotating clockwise; D: Moving downward,C,
1,internet/hUu2sh7CsIc/video-scene-00015.mp4,1.0,"In this video clip, how is the plane's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,C,
1,internet/hUu2sh7CsIc/video-scene-00052.mp4,1.0,"In this video clip, how is the boat's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward; C: Moving right; D: Moving forward,D,
1,internet/hUu2sh7CsIc/video-scene-00055.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving right; C: Moving backward; D: Moving forward,D,0-2
1,internet/hZyzCFdTC5s/video-scene-00060.mp4,0.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating counterclockwise; B: Moving upward; C: Rotating clockwise; D: Basically unchange,C,0-3
1,internet/iAPFIUDB1W0/video-scene-00001.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving left; C: Moving right; D: Moving forward,D,
1,internet/iBcdMHwRy4M/video-scene-00002.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving left; C: Moving right; D: Moving forward,D,0-2
1,internet/ioQ1Rp6Rt3Y/video-scene-00017.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving upward; B: Moving forward and turning left; C: Basically unchange; D: Moving downward,C,
1,internet/ioQ1Rp6Rt3Y/video-scene-00049.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Rotating counterclockwise; C: Rotating clockwise; D: Basically unchange,B,
0,internet/j1R6DL9J__s/video-scene-00078.mp4,1.0,"In this video clip, how is the ship's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,B,
1,internet/j1R6DL9J__s/video-scene-00097.mp4,1.0,"In this video clip, how is the ship's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,D,
1,internet/j1R6DL9J__s/video-scene-00109.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,C,
1,internet/jobrPfuFBC0/video-scene-00042.mp4,1.0,"In this video clip, how is the man closed to viewer's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving right; D: Moving left,D,
1,internet/ldyYlLCjATw/video-scene-00065.mp4,1.0,"In this video clip, how is the boat's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving forward; C: Moving left; D: Moving backward,B,
1,internet/lk7NaQ7p0yQ/video-scene-00051.mp4,0.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,B,
1,internet/luJZFHO6jh4/video-scene-00015.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving right; D: Moving left,B,
1,internet/m3FHjU6z0Hc/video-scene-00020.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Orbiting counterclockwise; B: Moving upward; C: Moving downward; D: Orbiting clockwise,D,0-1
1,internet/mlUKWRnYzR4/video-scene-00039.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Basically unchange; C: Moving backward; D: Moving forward,B,
1,internet/nN36Wysa2pA/video-scene-00005.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Basically unchange; B: Rotating counterclockwise; C: Rotating clockwise; D: Moving backward,B,
1,internet/nVTrJnvpD7Q/video-scene-00031.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving upward; B: Moving backward-left; C: Moving downward; D: Moving backward and turning right,A,
1,internet/neQEUASHiXo/video-scene-00063.mp4,0.0,"In this video clip, how is the white car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving forward and turning left; C: Moving forward and turning right; D: Moving backward and turning left,C,
1,internet/nlw7L7gYnlA/video-scene-00025.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,A,6-9
1,internet/ofcSLZ0i4Zs/video-scene-00071.mp4,1.0,"In this video clip, how is the woman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving right; C: Moving forward; D: Moving left,C,
1,internet/om_4BDabO3g/video-scene-00009.mp4,1.0,"In this video clip, how is the aircraft's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving downward; B: Rotating clockwise; C: Basically unchange; D: Rotating counterclockwise,D,
1,internet/ov_o2Gxbt08/video-scene-00028.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,C,
1,internet/plzoYbhvNo4/video-scene-00056.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving forward; C: Moving left; D: Moving backward,B,
1,internet/plzoYbhvNo4/video-scene-00084.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning left; B: Moving forward and turning left; C: Moving backward and turning right; D: Moving forward and turning right,B,
1,internet/q3Yr2nJVq6o/video-scene-00023.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving left; C: Moving right; D: Moving backward,A,
1,internet/qiGhCbwdS04/video-scene-00063.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating clockwise; B: Moving forward and turning left; C: Basically unchange; D: Rotating counterclockwise,A,
1,internet/rUZ8okSnE4k/video-scene-00002.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving right; C: Moving backward; D: Moving forward,D,
1,internet/reSD-13YTSw/video-scene-00077.mp4,1.0,"In this video clip, how is the characters's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating clockwise; B: Basically unchange; C: Moving left; D: Rotating counterclockwise,A,
0,internet/sWEGOoENBf4/video-scene-00029.mp4,1.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating counterclockwise; B: Rotating clockwise; C: Basically unchange; D: Moving forward,B,
0,internet/sWEGOoENBf4/video-scene-00081.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,C,
1,internet/t7RU8wifW2k/video-scene-00016.mp4,0.0,"In this video clip, how is the chracter's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward; C: Moving right; D: Moving forward,D,
1,internet/tYDVKFeLtyk/video-scene-00063.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating counterclockwise; B: Basically unchange; C: Moving downward; D: Moving forward,A,
1,internet/u35WIs62R2M/video-scene-00055.mp4,1.0,"In this video clip, how is the boaat's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving left; C: Moving right; D: Moving backward,A,
1,internet/u35WIs62R2M/video-scene-00075.mp4,1.0,"In this video clip, how is the motorbike's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,C,
1,internet/u35WIs62R2M/video-scene-00078.mp4,1.0,"In this video clip, how is the fireman's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,C,
1,internet/u35WIs62R2M/video-scene-00159.mp4,1.0,"In this video clip, how is the airplane's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning left; B: Moving backward and turning right; C: Moving backward and turning left; D: Moving forward and turning right,D,
1,internet/uaKXU_zuRGM/video-scene-00005.mp4,1.0,"In this video clip, how is the horse's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,C,
1,internet/v1d_QQgrwLA/video-scene-00025.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,C,
1,internet/v1d_QQgrwLA/video-scene-00030.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving right; C: Moving backward; D: Moving left,A,
1,internet/wx-37uR_imo/video-scene-00025.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Basically unchange; B: Moving forward; C: Moving forward and turning right; D: Moving forward and turning left,A,
0,internet/y0TQxsqxWJk/video-scene-00010.mp4,0.0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving forward and turning right; C: Moving forward and turning left; D: Moving backward and turning left,C,0-2
1,internet/y0TQxsqxWJk/video-scene-00036.mp4,0.0,"In this video clip, how is the truck's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving forward and turning right; C: Moving backward and turning left; D: Moving forward and turning left,B,
1,internet/yjQo36p_rqU/video-scene-00047.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,C,
1,internet/zP2c7kIgxW8/video-scene-00054.mp4,1.0,"In this video clip, how is the hero's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,A,1-3
1,internet/zqEpG0eT1LM/video-scene-00019.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,A,
1,internet/0kNwUIP85a8/video-scene-00005.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving forward and turning right; C: Basically unchange; D: Moving forward and turning left,C,
1,internet/0kNwUIP85a8/video-scene-00009.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning left; B: Moving backward and turning right; C: Moving backward and turning left; D: Moving forward and turning right,A,0-2
1,internet/0kNwUIP85a8/video-scene-00010.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward; C: Moving right; D: Moving forward,D,
0,internet/BB3zcRQJfXE/video-scene-00023.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving upward; C: Moving downward; D: Moving left,C,
1,internet/LHkYq4MhhAU/video-scene-00004.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving backward and turning left; C: Moving forward and turning right; D: Moving forward and turning left,D,
1,internet/LHkYq4MhhAU/video-scene-00016.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning left; B: Moving backward and turning right; C: Moving forward and turning right; D: Moving backward and turning left,A,
1,internet/LHkYq4MhhAU/video-scene-00019.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving backward and turning left; C: Moving forward and turning left; D: Moving forward and turning right,C,2-4
1,internet/LHkYq4MhhAU/video-scene-00023.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,A,
1,internet/LHkYq4MhhAU/video-scene-00024.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning left; B: Moving forward and turning right; C: Moving backward and turning right; D: Moving backward and turning left,B,0-2
1,internet/LHkYq4MhhAU/video-scene-00027.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,A,
1,internet/LHkYq4MhhAU/video-scene-00037.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving right; C: Moving left; D: Moving forward,D,
1,internet/ZieW_OSkuiQ/video-scene-00007.mp4,1.0,"In this video clip, how is the bike's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,A,
1,internet/ZieW_OSkuiQ/video-scene-00020.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,D,
1,internet/ZieW_OSkuiQ/video-scene-00023.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning right; B: Moving backward and turning left; C: Moving forward and turning left; D: Moving backward and turning right,C,
1,internet/ZieW_OSkuiQ/video-scene-00025.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning right; B: Moving forward and turning left; C: Moving backward and turning right; D: Moving backward and turning left,B,
1,internet/ZieW_OSkuiQ/video-scene-00027.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving forward and turning left; C: Moving backward and turning left; D: Moving forward and turning right,D,0-3
1,internet/ZieW_OSkuiQ/video-scene-00044.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning right; B: Moving backward and turning left; C: Moving backward and turning right; D: Moving forward and turning left,A,
1,internet/ZieW_OSkuiQ/video-scene-00047.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving backward and turning left; C: Moving forward and turning right; D: Moving forward and turning left,C,
1,internet/ZieW_OSkuiQ/video-scene-00066.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,C,
1,internet/ZieW_OSkuiQ/video-scene-00067.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,A,
1,internet/ZieW_OSkuiQ/video-scene-00081.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning left; B: Moving backward and turning left; C: Moving backward and turning right; D: Moving forward and turning right,D,
1,internet/a3Mc4PLoiNg/video-scene-00045.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning right; B: Moving backward and turning right; C: Moving forward and turning left; D: Moving backward and turning left,C,
0,internet/a3Mc4PLoiNg/video-scene-00060.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning left; B: Moving forward and turning left; C: Moving backward and turning right; D: Moving forward and turning right,D,
1,internet/eOGZ9GJU52I/video-scene-00045.mp4,1.0,"In this video clip, how is the motorbike's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning right; B: Moving forward and turning left; C: Moving backward and turning left; D: Moving backward and turning right,B,0-10
1,internet/ebpkUvyCXXo/video-scene-00026.mp4,1.0,"In this video clip, how is the man's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning left; B: Moving forward and turning left; C: Moving forward and turning right; D: Moving backward and turning right,B,0-1.5
1,internet/ssKf_Qo7VVk/video-scene-00000.mp4,1.0,"In this video clip, how is the helicopter's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Basically unchange; B: Moving upward; C: Moving downward; D: Moving backward,B,
1,internet/ssKf_Qo7VVk/video-scene-00058.mp4,1.0,"In this video clip, how is the plane's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving left; C: Moving right; D: Moving forward,D,
1,internet/ssKf_Qo7VVk/video-scene-00104.mp4,1.0,"In this video clip, how is the black car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,C,cam reverse left
1,internet/ssKf_Qo7VVk/video-scene-00105.mp4,1.0,"In this video clip, how is the plane's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,C,
1,internet/4oXDmqUl6YU/4oXDmqUl6YU-1.mp4,1.0,"In this video clip, how is the person's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving forward and turning left; C: Moving backward and turning left; D: Moving forward and turning right,D,
1,internet/6XMuUVw7TOM/6XMuUVw7TOM-1.mp4,1.0,"In this video clip, how is the vehicle's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving left; C: Moving right; D: Moving forward,A,
1,internet/6XMuUVw7TOM/6XMuUVw7TOM-2.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving left; C: Moving right; D: Moving forward,D,
0,internet/6XMuUVw7TOM/6XMuUVw7TOM-3.mp4,1.0,"In this video clip, how is the vehicle's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating counterclockwise; B: Rotating clockwise; C: Moving backward; D: Basically unchange,A,
1,internet/6XMuUVw7TOM/6XMuUVw7TOM-4.mp4,1.0,"In this video clip, how is the blue car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving right; C: Moving left; D: Moving backward,A,blue car
0,internet/6XMuUVw7TOM/6XMuUVw7TOM-5.mp4,1.0,"In this video clip, how is the vehicle's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving right; C: Moving forward; D: Moving left,C,
0,internet/6XMuUVw7TOM/6XMuUVw7TOM-6.mp4,1.0,"In this video clip, how is the vehicle's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning right; B: Moving backward and turning right; C: Moving forward and turning left; D: Moving backward and turning left,A,
1,internet/6XMuUVw7TOM/6XMuUVw7TOM-7.mp4,1.0,"In this video clip, how is the vehicle's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving forward and turning left; C: Moving backward and turning left; D: Moving forward and turning right,B,
1,internet/6XMuUVw7TOM/6XMuUVw7TOM-8.mp4,1.0,"In this video clip, how is the black sedan's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving right; C: Moving backward; D: Moving left,A,black car
1,internet/6XMuUVw7TOM/6XMuUVw7TOM-9.mp4,1.0,"In this video clip, how is the black sedan's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving left; C: Moving right; D: Moving forward,D,black car
1,internet/AlJhMpk_AXo/AlJhMpk_AXo-1.mp4,1.0,"In this video clip, how is the boat's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,B,0-4
1,internet/AlJhMpk_AXo/AlJhMpk_AXo-2.mp4,1.0,"In this video clip, how is the boat's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward; C: Moving right; D: Moving forward,D,0-3
1,internet/AlJhMpk_AXo/AlJhMpk_AXo-3.mp4,1.0,"In this video clip, how is the ship's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,B,
1,internet/AlJhMpk_AXo/AlJhMpk_AXo-4.mp4,1.0,"In this video clip, how is the boat's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,C,
1,internet/AlJhMpk_AXo/AlJhMpk_AXo-5.mp4,1.0,"In this video clip, how is the ship's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,B,0-2
0,internet/FKrVK8EmasM/FKrVK8EmasM-1.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,D,
1,internet/PUodFjt01CY/PUodFjt01CY-1.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving right; D: Moving left,D,
1,internet/PUodFjt01CY/PUodFjt01CY-2.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving backward and turning left; C: Moving forward and turning right; D: Moving forward and turning left,C,
1,internet/PUodFjt01CY/PUodFjt01CY-3.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving left; C: Moving right; D: Moving forward,D,
1,internet/Sv8BzW01x-Y/Sv8BzW01x-Y-1.mp4,1.0,"In this video clip, how is the race car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,C,
1,internet/Sv8BzW01x-Y/Sv8BzW01x-Y-2.mp4,1.0,"In this video clip, how is the race car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving backward and turning left; C: Moving forward and turning right; D: Moving forward and turning left,C,
1,internet/Sv8BzW01x-Y/Sv8BzW01x-Y-3.mp4,1.0,"In this video clip, how is the race car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving forward and turning right; C: Moving backward and turning left; D: Moving forward and turning left,D,
1,internet/Sv8BzW01x-Y/Sv8BzW01x-Y-4.mp4,1.0,"In this video clip, how is the race car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning left; B: Moving backward and turning right; C: Moving forward and turning left; D: Moving forward and turning right,D,
1,internet/Sv8BzW01x-Y/Sv8BzW01x-Y-5.mp4,1.0,"In this video clip, how is the race car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,A,
0,internet/Sv8BzW01x-Y/Sv8BzW01x-Y-6.mp4,1.0,"In this video clip, how is the race car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,B,
1,internet/Sv8BzW01x-Y/Sv8BzW01x-Y-7.mp4,1.0,"In this video clip, how is the race car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward; C: Moving right; D: Moving forward,D,
1,internet/Sv8BzW01x-Y/Sv8BzW01x-Y-8.mp4,1.0,"In this video clip, how is the race car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving right; C: Moving backward; D: Moving forward,D,
1,internet/Sv8BzW01x-Y/Sv8BzW01x-Y-9.mp4,1.0,"In this video clip, how is the race car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,B,0-2
1,internet/TikSave_7463225157532863766/TikSave_7463225157532863766-1.mp4,1.0,"In this video clip, how is the person's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,D,
1,internet/XbgV7cTrf_4/XbgV7cTrf_4-1.mp4,1.0,"In this video clip, how is the person's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving right; C: Moving forward; D: Moving left,C,
1,internet/XbgV7cTrf_4/XbgV7cTrf_4-2.mp4,1.0,"In this video clip, how is the person's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,D,
1,internet/ctEksNz7tqg/ctEksNz7tqg-1.mp4,1.0,"In this video clip, how is the cyclist's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward; C: Moving right; D: Moving forward,D,
1,internet/ctEksNz7tqg/ctEksNz7tqg-2.mp4,1.0,"In this video clip, how is the cyclist's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,A,cam reverse right
0,internet/ctEksNz7tqg/ctEksNz7tqg-3.mp4,1.0,"In this video clip, how is the cyclist's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving right; D: Moving left,B,
1,internet/n_GkpkanNJI/n_GkpkanNJI-1.mp4,1.0,"In this video clip, how is the race car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,C,2-4
1,internet/n_GkpkanNJI/n_GkpkanNJI-10.mp4,1.0,"In this video clip, how is the cyclist's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,D,
1,internet/n_GkpkanNJI/n_GkpkanNJI-11.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning right; B: Moving forward and turning left; C: Moving backward and turning left; D: Moving forward and turning right,B,
1,internet/n_GkpkanNJI/n_GkpkanNJI-12.mp4,1.0,"In this video clip, how is the race car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,C,
1,internet/n_GkpkanNJI/n_GkpkanNJI-13.mp4,1.0,"In this video clip, how is the cyclist's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,A,
1,internet/n_GkpkanNJI/n_GkpkanNJI-14.mp4,1.0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward and turning left; B: Orbiting clockwise; C: Orbiting counterclockwise; D: Basically unchange,C,
1,internet/n_GkpkanNJI/n_GkpkanNJI-15.mp4,1.0,"In this video clip, how is the skier's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,B,
1,internet/n_GkpkanNJI/n_GkpkanNJI-16.mp4,1.0,"In this video clip, how is the cyclist's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,C,
1,internet/n_GkpkanNJI/n_GkpkanNJI-2.mp4,1.0,"In this video clip, how is the skier's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,B,
1,internet/n_GkpkanNJI/n_GkpkanNJI-3.mp4,1.0,"In this video clip, how is the race car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Rotating clockwise; B: Moving backward; C: Rotating counterclockwise; D: Basically unchange,C,
1,internet/n_GkpkanNJI/n_GkpkanNJI-4.mp4,1.0,"In this video clip, how is the race car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Basically unchange; B: Rotating clockwise; C: Rotating counterclockwise; D: Moving backward,C,
1,internet/n_GkpkanNJI/n_GkpkanNJI-5.mp4,1.0,"In this video clip, how is the race car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Basically unchange; B: Rotating counterclockwise; C: Moving backward; D: Rotating clockwise,B,
1,internet/n_GkpkanNJI/n_GkpkanNJI-6.mp4,1.0,"In this video clip, how is the race car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,B,0-1
1,internet/n_GkpkanNJI/n_GkpkanNJI-7.mp4,1.0,"In this video clip, how is the cyclist's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward; B: Moving right; C: Moving backward; D: Moving left,A,cam reverse left forward diag
1,internet/n_GkpkanNJI/n_GkpkanNJI-8.mp4,1.0,"In this video clip, how is the paraglider's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving downward; B: Moving upward; C: Basically unchange; D: Moving backward,A,cam up down
1,internet/n_GkpkanNJI/n_GkpkanNJI-9.mp4,1.0,"In this video clip, how is the race car's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning left; B: Moving backward and turning left; C: Moving forward and turning right; D: Moving backward and turning right,C,
1,internet/zjYBVSvBvcM/zjYBVSvBvcM-1.mp4,1.0,"In this video clip, how is the vehicle's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving forward and turning right; B: Moving backward and turning right; C: Moving backward and turning left; D: Moving forward and turning left,C,
1,internet/zjYBVSvBvcM/zjYBVSvBvcM-2.mp4,1.0,"In this video clip, how is the vehicle's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving backward; B: Moving right; C: Moving left; D: Moving forward,A,
1,internet/zjYBVSvBvcM/zjYBVSvBvcM-3.mp4,1.0,"In this video clip, how is the vehicle's location moving in the 3D scene relative to his/her/its starting orientation and location?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,D,
0,internet/-7bJwW2NYyc/video-scene-00001.mp4,0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,D,
0,internet/-7bJwW2NYyc/video-scene-00179.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Basically unchange; B: Moving right; C: Moving backward; D: Moving forward,A,
0,internet/-Sjrs05F-4o/video-scene-00020.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving left; B: Moving right; C: Moving backward; D: Moving forward,D,
0,internet/-Sjrs05F-4o/video-scene-00035.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving right; D: Moving left,B,
0,internet/-Sjrs05F-4o/video-scene-00040.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,C,
0,internet/-Sjrs05F-4o/video-scene-00101.mp4,0,"In this video clip, how is the plane's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,A,
0,internet/-Sjrs05F-4o/video-scene-00120.mp4,0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving backward; B: Moving left; C: Moving right; D: Moving forward,D,
0,internet/-z5c_d2_54U/video-scene-00023.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving forward and turning left; B: Moving backward and turning right; C: Moving forward and turning right; D: Moving backward and turning left,A,
0,internet/02P6SAFU7mo/video-scene-00012.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,A,
0,internet/02P6SAFU7mo/video-scene-00051.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,D,
0,internet/09sD74GZwEc/video-scene-00066.mp4,0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,C,
0,internet/09sD74GZwEc/video-scene-00067.mp4,0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,B,
0,internet/0IRTpb1y8b0/video-scene-00002.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving backward and turning left; B: Moving forward and turning right; C: Moving backward and turning right; D: Moving forward and turning left,D,
0,internet/0IRTpb1y8b0/video-scene-00008.mp4,0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving backward; B: Moving right; C: Moving forward; D: Moving left,C,
0,internet/0IRTpb1y8b0/video-scene-00022.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving upward; B: Moving downward; C: Moving right; D: Moving backward,A,
0,internet/0tIoyN7WKuA/video-scene-00027.mp4,0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,B,
0,internet/0tIoyN7WKuA/video-scene-00084.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving upward; B: Moving downward; C: Basically unchange; D: Moving backward,A,
0,internet/1MR3H_9Wq4A/video-scene-00055.mp4,0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,C,
0,internet/2MdI1C-m4kk/video-scene-00033.mp4,0,"In this video clip, how is the hource's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving left; B: Moving backward; C: Moving right; D: Moving forward,D,
0,internet/2kzaSEU-P70/video-scene-00034.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Rotating counterclockwise; B: Basically unchange; C: Rotating clockwise; D: Moving forward,A,
0,internet/3HSkNwDXwf0/video-scene-00025.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,B,
0,internet/3LDJxHWtFUI/video-scene-00044.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Rotating clockwise; B: Basically unchange; C: Rotating counterclockwise; D: Moving right,A,
0,internet/3duBNs-snn8/video-scene-00009.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,C,
0,internet/4rE_ToGWcdU/video-scene-00019.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Orbiting counterclockwise; B: Orbiting clockwise; C: Basically unchange; D: Moving forward,A,
0,internet/5FUEltKsVJQ/video-scene-00034.mp4,0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving forward and turning left; B: Moving backward and turning right; C: Moving backward and turning left; D: Moving forward and turning right,A,
0,internet/5H0Ik7QBikI/video-scene-00033.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving downward; B: Moving upward; C: Orbiting counterclockwise; D: Orbiting clockwise,B,
0,internet/5H0Ik7QBikI/video-scene-00060.mp4,0,"In this video clip, how is the boat's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,D,
0,internet/5X5i4qN6M88/video-scene-00022.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving left; B: Moving right; C: Moving backward; D: Moving forward,D,
0,internet/5X5i4qN6M88/video-scene-00072.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving upward; B: Moving downward; C: Moving left; D: Moving right; ,B,
0,internet/5jYgYFpGCL4/video-scene-00024.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,D,
0,internet/6hWB001GSu8/video-scene-00006.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,B,
0,internet/73lQgsAKYSc/video-scene-00040.mp4,0,"In this video clip, how is the monkey's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,B,
0,internet/7DZmTaRDuzM/video-scene-00006.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,C,
0,internet/7DZmTaRDuzM/video-scene-00010.mp4,0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Orbiting clockwise; B: Orbiting counterclockwise; C: Moving backward; D: Moving right,B,
0,internet/8KNYC9Kw4W0/video-scene-00022.mp4,0,"In this video clip, how is the dog's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving forward; B: Moving left; C: Moving right; D: Moving backward,A,
0,internet/8xg6tLsnw2E/video-scene-00005.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving right; B: Moving forward; C: Moving left; D: Moving backward,B,
0,internet/96NMjhVBaxc/video-scene-00005.mp4,0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving forward; B: Moving right; C: Moving backward; D: Moving left,A,
0,internet/9w9OIBfjg3E/video-scene-00003.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,C,
0,internet/9w9OIBfjg3E/video-scene-00061.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving forward; B: Moving left; C: Moving right; D: Moving backward,A,
0,internet/AN2SZ4H4Qzk/video-scene-00055.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving forward; B: Moving right; C: Moving left; D: Moving backward,A,
0,internet/AcRFY9WFIpY/video-scene-00093.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,D,
0,internet/AcRFY9WFIpY/video-scene-00174.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Basically unchange; B: Moving backward; C: Moving left; D: Moving forward,A,
0,internet/B7OA6JJ8-74/video-scene-00018.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,C,
0,internet/B7OA6JJ8-74/video-scene-00056.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving downward; B: Moving upward; C: Orbiting clockwise; D: Orbiting counterclockwise,A,
0,internet/BMcGfgAo5pU/video-scene-00029.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving backward; B: Moving left; C: Moving right; D: Moving forward,D,
0,internet/BTMO_goJ9sQ/video-scene-00028.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,A,
0,internet/BTMO_goJ9sQ/video-scene-00078.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving left; B: Moving right; C: Moving backward; D: Moving forward,D,
0,internet/BYUSpyONQ0A/video-scene-00036.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving upward; B: Moving downward; C: Moving right; D: Moving forward,B,
0,internet/BYUSpyONQ0A/video-scene-00038.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving upward; B: Moving downward; C: Moving right; D: Moving forward,A,
0,internet/ByjcxvzFSTg/video-scene-00012.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving right; B: Moving forward; C: Moving left; D: Moving backward,B,
0,internet/BzI5kVdX8bI/video-scene-00028.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving backward; B: Moving left; C: Moving right; D: Moving forward,D,
0,internet/BzI5kVdX8bI/video-scene-00050.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,C,
0,internet/C21Io5WhqDg/video-scene-00060.mp4,0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,C,
0,internet/CRWfO8WBDjE/video-scene-00028.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,A,
0,internet/CVIymFTuQoM/video-scene-00005.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,C,
0,internet/CVIymFTuQoM/video-scene-00022.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving left; B: Moving backward; C: Moving right; D: Moving forward,D,
0,internet/CXdIm5FNkA4/video-scene-00020.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving backward; B: Moving right; C: Moving forward; D: Moving left,C,
0,internet/CbA1HWWgTbY/video-scene-00007.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,A,
0,internet/CbA1HWWgTbY/video-scene-00009.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,C,
0,internet/CbA1HWWgTbY/video-scene-00028.mp4,0,"In this video clip, how is the dog's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Basically unchange; B: Moving left; C: Moving backward; D: Moving right,A,
0,internet/CbA1HWWgTbY/video-scene-00029.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving downward; B: Moving upward; C: Orbiting clockwise; D: Orbiting counterclockwise,B,
0,internet/CbA1HWWgTbY/video-scene-00031.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,C,
0,internet/Chz43YiO5dY/video-scene-00056.mp4,0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving backward and turning left; B: Moving forward and turning right; C: Moving backward and turning right; D: Moving forward and turning left,D,
0,internet/DYhQWROu0jo/video-scene-00013.mp4,0,"In this video clip, how is the bird's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving forward; B: Moving right; C: Moving backward; D: Moving left,A,
0,internet/DnLc7wp-l6M/video-scene-00035.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving forward; B: Moving right; C: Moving left; D: Moving backward,A,
0,internet/DnLc7wp-l6M/video-scene-00039.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving upward; B: Moving downward; C: Moving backward and turning right; D: Moving forward and turning left,B,
0,internet/EGgsdaCt3wI/video-scene-00089.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving upward; B: Moving downward; C: Moving backward and turning right; D: Moving forward and turning left,B,
0,internet/EctUETP7MDs/video-scene-00015.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Basically unchange; B: Moving left; C: Moving forward; D: Moving backward,A,
0,internet/EctUETP7MDs/video-scene-00020.mp4,0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,A,
0,internet/EctUETP7MDs/video-scene-00023.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,B,
0,internet/Ed_-q5b-5KE/video-scene-00021.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,C,
0,internet/EmKR8MQammg/video-scene-00011.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving left; B: Moving backward; C: Moving right; D: Moving forward,D,
0,internet/FHlxw98mcec/video-scene-00018.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Basically unchange; B: Moving left; C: Moving forward; D: Moving backward,A,
0,internet/FSvRy0un_Jc/video-scene-00029.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,D,
0,internet/FSvRy0un_Jc/video-scene-00118.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Basically unchange; B: Moving left; C: Moving forward; D: Moving backward,A,
0,internet/F_T5mtz0kaI/video-scene-00053.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,C,
0,internet/FopBvLLXKZ0/video-scene-00033.mp4,0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Orbiting clockwise; B: Orbiting counterclockwise; C: Basically unchange; D: Basically unchange,B,
0,internet/FopBvLLXKZ0/video-scene-00056.mp4,0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Basically unchange; B: Rotating counterclockwise; C: Rotating clockwise; D: Moving right,B,
0,internet/HasIb5pfWkQ/video-scene-00069.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Basically unchange; B: Moving downward; C: Moving backward and turning right; D: Moving forward and turning left,A,
0,internet/HwF0sLA9Yz8/video-scene-00052.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,B,
0,internet/HzJ7Nvwz1e8/video-scene-00014.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving right; B: Moving forward; C: Moving left; D: Moving backward,B,
0,internet/IX5tw_9BxKs/video-scene-00008.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,D,
0,internet/IX5tw_9BxKs/video-scene-00090.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving upward; B: Moving downward; C: Moving right; D: Moving left;,B,
0,internet/KB3KMUw54Hc/video-scene-00030.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving downward; B: Moving upward; C: Moving right; D: Moving left;,A,
0,internet/KCox-nsChqg/video-scene-00013.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving right; D: Moving left,B,
0,internet/KUaYWNfkOio/video-scene-00081.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Basically unchange; B: Moving left; C: Moving forward; D: Moving backward,A,
0,internet/Kui5PpD9ITE/video-scene-00034.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Basically unchange; B: Moving downward; C: Moving backward and turning right; D: Moving forward and turning left,A,
0,internet/Kui5PpD9ITE/video-scene-00121.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,C,
0,internet/LHkYq4MhhAU/video-scene-00025.mp4,0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,B,
0,internet/LHkYq4MhhAU/video-scene-00028.mp4,0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving forward; B: Moving left; C: Moving right; D: Moving backward,A,
0,k700/base jumping/W6cAhAqvyeY_000191_000201/video-scene-00004.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving backward; B: Moving right; C: Moving left; D: Moving forward,D,
0,k700/biking through snow/U7C_DDfxcIw_000039_000049/video-scene-00000.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Basically unchange; B: Moving backward; C: Moving forward; D: Moving left,A,
0,k700/biking through snow/VSvqRB3rGMM_000041_000051/video-scene-00002.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving left; B: Moving right; C: Moving backward; D: Moving forward,D,
0,k700/bobsledding/RmXiMYttqEQ_000032_000042/video-scene-00002.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,C,
0,k700/catching or throwing softball/g0IggNctMG4_000052_000062/video-scene-00001.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,C,
0,k700/jumping bicycle/K-wekxDR900_000041_000051/video-scene-00002.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,A,
0,k700/lawn mower racing/oEgwfQypnlM_000191_000201/video-scene-00000.mp4,0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,B,
0,k700/luge/lmcZK0bl24o_000019_000029/video-scene-00000.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving left; B: Moving backward; C: Moving right; D: Moving forward,D,
0,k700/marching/-0IErS_cisg_000017_000027/video-scene-00002.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,B,
0,k700/pushing wheelchair/kiYWU8gwDBc_000009_000019/video-scene-00000.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,C,
0,k700/pushing wheelchair/pgR6wDS_vIY_000004_000014/video-scene-00004.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,C,
0,k700/pushing wheelchair/qR7TGYYAHDc_000021_000031/video-scene-00000.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,C,
0,k700/riding a bike/BCZkNciA97g_000061_000071/video-scene-00003.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,D,
0,k700/riding mule/zGXpnX4m8qA_000021_000031/video-scene-00000.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,B,
0,k700/riding or walking with horse/qmAMFBzbn-c_000087_000097/video-scene-00003.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,B,
0,k700/riding unicycle/gZE8s3Eh4xI_000004_000014/video-scene-00000.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,D,
0,k700/running on treadmill/P0AbmHrm2r4_000114_000124/video-scene-00001.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Basically unchange; B: Moving left; C: Moving forward; D: Moving backward,A,
0,k700/skateboarding/-KkkzJ1yWHE_000300_000310/video-scene-00000.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,B,
0,k700/skateboarding/-mkcnkZXybY_000061_000071/video-scene-00002.mp4,0,"In this video clip, how is the car's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving left; B: Moving right; C: Moving backward; D: Moving forward,D,
0,k700/skateboarding/VrfS9xgwQog_000006_000016/video-scene-00002.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving forward; B: Moving left; C: Moving right; D: Moving backward,A,
0,k700/skiing slalom/bQrcj7GCJJQ_000357_000367/video-scene-00002.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,D,
0,k700/sled dog racing/V-igSpuq8Q0_000027_000037/video-scene-00003.mp4,0,"In this video clip, how is the character's location moving in the 3D scene relative to his/her/its own starting orientation and location?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,C,
3,CameraBench/-2uIa-XMJC0.5.3.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,B,
3,CameraBench/-eyUFAJ1xqo.1.0.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,B,
3,CameraBench/03hvbnE0asg.0.0.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Rotating counterclockwise; B: Rotating clockwise; C: Moving right; D: Moving left,B,
2,CameraBench/0Pzq0URbL2M.1.4.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting clockwise; B: Basically unchange; C: Moving right; D: Orbiting counterclockwise,A,
2,CameraBench/0Pzq0URbL2M.10.4.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,C,
3,CameraBench/0TqQje61Hoo.3.1.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Moving backward-left; C: Moving forward-right; D: Moving backward-right,B,
2,CameraBench/0Um7WnY72Us.1.0.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Basically unchange; C: Moving left; D: Moving right,B,
2,CameraBench/0UthxdAH0ks.3.0.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving right; C: Moving backward; D: Moving left,A,
2,CameraBench/0tIoyN7WKuA.3.1.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting counterclockwise; B: Basically unchange; C: Moving backward; D: Orbiting clockwise,D,
3,CameraBench/0xHjRq5hd9c.0.10.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward and turning left; B: Moving forward and turning right; C: Moving backward and turning left; D: Moving backward and turning right,B,
3,CameraBench/0xHjRq5hd9c.0.9.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,C,
3,CameraBench/1018.1.7.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving right; C: Moving left; D: Moving backward,D,
2,CameraBench/1448735.0.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving backward; D: Moving forward,D,
3,CameraBench/1470.0.10.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward and turning right; B: Moving forward and turning left; C: Moving forward and turning right; D: Moving backward and turning left,B,
3,CameraBench/1470.0.2.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,B,
2,CameraBench/1560.0.0.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving backward; C: Moving right; D: Moving forward,D,
2,CameraBench/190.2.2.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Moving backward-right; C: Moving forward-right; D: Moving backward-left,C,
2,CameraBench/190.2.7.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Basically unchange; C: Moving right; D: Moving upward,B,
3,CameraBench/190.2.9.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,A,
3,CameraBench/1widYShgv6o.5.1.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,C,
2,CameraBench/2521.4.1.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Turning backward-left; C: Orbiting counterclockwise; D: Orbiting clockwise,D,
3,CameraBench/2KuVjf4uB9k.0.12.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-left; B: Moving forward-right; C: Moving backward-right; D: Moving forward-left,D,
3,CameraBench/3005.1.8.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving backward-right; C: Moving forward-left; D: Moving backward-left,B,
2,CameraBench/30KKutVrpDs.0.2.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Orbiting clockwise; C: Turning backward-left; D: Orbiting counterclockwise,B,
3,CameraBench/3115442.0.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,C,
2,CameraBench/338.2.2.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Rotating clockwise; C: Rotating counterclockwise; D: Moving right,B,
2,CameraBench/338.2.30.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Rotating clockwise; B: Rotating counterclockwise; C: Moving right; D: Moving left,B,
3,CameraBench/338.2.32.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting counterclockwise; B: Orbiting clockwise; C: Moving backward; D: Moving forward,C,
3,CameraBench/394cd3ffde533c8b364131cb7286c88786fc1892c52e78c2fa113e654363a9f7.0.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward and turning left; B: Moving forward and turning right; C: Moving forward and turning left; D: Moving backward and turning right,D,
2,CameraBench/3HYfPz8lvDI.5.2.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Basically unchange; B: Moving right; C: Moving upward; D: Moving left,A,
3,CameraBench/3m-ME9AXCTo.0.3.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting counterclockwise; B: Moving forward; C: Orbiting clockwise; D: Moving backward,A,
3,CameraBench/3m-ME9AXCTo.1.1.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting clockwise; B: Turning backward-left; C: Moving backward-left; D: Orbiting counterclockwise,D,
3,CameraBench/3pxrECZYEAA.1.1.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,D,
3,CameraBench/3vBUREkRzug.0.5.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving right; C: Moving left; D: Moving backward,C,
2,CameraBench/4422.0.24.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting counterclockwise; B: Moving left; C: Basically unchange; D: Orbiting clockwise,A,
2,CameraBench/4PcpGxihPac.4.0.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,C,
2,CameraBench/4jdZkC33NXw.0.1.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Moving downward; C: Basically unchange; D: Moving backward,B,
3,CameraBench/4uGfFYzxWEg.5.2.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-right; B: Moving forward-right; C: Moving backward-left; D: Moving forward-left,C,
3,CameraBench/5eDQ2SSsmEk.2.4.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Basically unchange; C: Moving left; D: Moving upward,B,
2,CameraBench/5eDQ2SSsmEk.3.6.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Moving backward-right; C: Moving forward-right; D: Moving backward-left,C,
3,CameraBench/5eDQ2SSsmEk.9.7.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Basically unchange; B: Moving upward; C: Moving right; D: Moving left,A,
3,CameraBench/6303.0.14.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,C,
2,CameraBench/63xBvrlmZfw.0.2.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Moving forward; C: Orbiting clockwise; D: Orbiting counterclockwise,C,
3,CameraBench/6IUJgiKJ_mE.4.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,A,
3,CameraBench/88vmzn_LufA.5.0.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving backward-left; C: Moving backward-right; D: Moving forward-left,C,
3,CameraBench/8SphTOiOe6k.0.3.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving backward-right; C: Moving backward-left; D: Moving forward-left,A,
2,CameraBench/8SphTOiOe6k.5.1.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving backward-left; C: Moving forward-left; D: Moving backward-right,C,
2,CameraBench/8iZ8RtiJq14.5.2.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Basically unchange; B: Moving upward; C: Moving downward; D: Moving forward,C,
2,CameraBench/8iZ8RtiJq14.6.4.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,D,
3,CameraBench/99f927656086265ccda299e2c2ec394f4bfded4daa3ea64efcb4ee6c95b8c7de.0.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,D,
2,CameraBench/9rGRF5S7bGk.0.0.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving left; C: Moving right; D: Moving forward,D,
2,CameraBench/C4Ktho9cjYk.0.3.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Basically unchange; B: Moving upward; C: Moving left; D: Moving downward,D,
3,CameraBench/CBRwF0LU3Ys.0.6.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-left; B: Moving forward-left; C: Moving forward-right; D: Moving backward-right,C,
3,CameraBench/Cj6ho1-G6tw.0.13.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving downward; D: Moving upward,D,
3,CameraBench/CjPSzAtLzO8.0.9.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Moving backward-right; C: Moving forward-right; D: Moving backward-left,C,
3,CameraBench/FbSNaKmBfO0.3.1.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving backward; C: Moving right; D: Moving forward,C,
2,CameraBench/FfSnJdpFBb8.0.1.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,D,
3,CameraBench/Gel59Iy3YhQ.46.1.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving downward; B: Moving right; C: Moving left; D: Moving upward,D,
3,CameraBench/HTMDNZOlUq4.0.2.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,A,
3,CameraBench/IWv0EhEGmNI.16.4.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,D,
3,CameraBench/KAer-wHAd38.5.8.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,B,
2,CameraBench/KB3KMUw54Hc.4.5.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting counterclockwise; B: Orbiting clockwise; C: Moving forward; D: Turning backward-left,A,
2,CameraBench/Kapdye-diSM.5.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Orbiting clockwise; C: Turning forward-right; D: Orbiting counterclockwise,D,
3,CameraBench/M0jmSsQ5ptw.3.12.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Basically unchange; B: Moving right; C: Moving upward; D: Moving left,A,
3,CameraBench/M0jmSsQ5ptw.3.16.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,B,two object
3,CameraBench/M0jmSsQ5ptw.3.5.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Rotating counterclockwise; B: Rotating clockwise; C: Moving left; D: Moving right,A,
3,CameraBench/MQugcNLFI9k.2.8.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting counterclockwise; B: Orbiting clockwise; C: Moving forward-left; D: Basically unchange,B,
2,CameraBench/MQugcNLFI9k.6.3.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting clockwise; B: Turning backward-right; C: Moving backward-right; D: Orbiting counterclockwise,D,
3,CameraBench/MuNyfqxAO6Y.2.0.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving right; C: Moving forward; D: Moving left,C,
3,CameraBench/MuNyfqxAO6Y.2.3.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward and turning right; B: Moving backward and turning left; C: Moving forward and turning left; D: Moving forward and turning right,A,
2,CameraBench/MuNyfqxAO6Y.2.4.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting clockwise; B: Turning backward-left; C: Moving right; D: Orbiting counterclockwise,A,
2,CameraBench/OCBYMQzG44U.21.16.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward and turning right; B: Moving backward and turning left; C: Moving forward and turning right; D: Moving forward and turning left,D,moving down
3,CameraBench/Oy8yQZ1Wg7k.0.0.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,B,
2,CameraBench/QPqOP1iaxkc.0.5.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward and turning left; B: Moving forward and turning right; C: Moving backward and turning right; D: Moving forward and turning left,B,
2,CameraBench/Qh6c-SZmWUI.2.2.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving right; C: Moving backward; D: Moving left,C,
2,CameraBench/RZs5Hz1klno.5.6.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,C,
2,CameraBench/Stgxxg-S4jo.2.1.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Turning forward-right; B: Moving forward; C: Orbiting clockwise; D: Orbiting counterclockwise,D,
3,CameraBench/Uofofz62A2E.0.2.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,D,
3,CameraBench/VaSlqE0Nx2Q.6.0.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving left; D: Moving backward,A,
3,CameraBench/VaSlqE0Nx2Q.7.2.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving right; C: Moving left; D: Moving forward,B,
3,CameraBench/Wwndsgg7_DU.9.2.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Rotating clockwise; C: Rotating counterclockwise; D: Moving left,C,
3,CameraBench/Wx68yLCrWP0.0.0.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Rotating clockwise; B: Rotating counterclockwise; C: Moving left; D: Moving right,A,
3,CameraBench/XA2X_JBzkzY.0.1.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving right; D: Moving left,A,
3,CameraBench/XN2VC7QFdTs.2.3.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,C,
3,CameraBench/YBC2JaevzOI.0.3.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Rotating counterclockwise; C: Rotating clockwise; D: Moving left,B,
3,CameraBench/YBC2JaevzOI.1.4.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Rotating clockwise; D: Rotating counterclockwise,D,
3,CameraBench/Yp5eTT6kZIo.4.1.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Moving backward-right; C: Moving backward-left; D: Moving forward-right,D,
2,CameraBench/ZBsv_5fHtIg.0.2.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,C,
3,CameraBench/ZBsv_5fHtIg.0.3.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,D,
3,CameraBench/ZU6ZU14lCNI.0.7.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward and turning left; B: Moving forward and turning right; C: Moving backward and turning right; D: Moving backward and turning left,A,
3,CameraBench/ZXloF-qGW4U.2.2.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-right; B: Moving forward-right; C: Moving forward-left; D: Moving backward-left,D,
3,CameraBench/as8lT-q2_E8.0.0.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving backward; D: Moving forward,C,
3,CameraBench/awPo_VZabRc.2.3.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving upward; C: Moving downward; D: Basically unchange,C,
2,CameraBench/eO_VWpZF08o.1.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting counterclockwise; B: Turning forward-left; C: Basically unchange; D: Orbiting clockwise,A,
3,CameraBench/f4ZzHtww6Tc.2.2.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,A,
3,CameraBench/g7gPegf76Mw.1.6.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,C,
3,CameraBench/mIiPt1YVkP8.10.7.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving left; D: Moving backward,A,
3,CameraBench/mIiPt1YVkP8.11.8.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Moving backward-right; C: Moving backward-left; D: Moving forward-right,B,
2,CameraBench/mIiPt1YVkP8.9.7.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Turning forward-right; B: Orbiting clockwise; C: Turning backward-left; D: Orbiting counterclockwise,B,moving down
2,CameraBench/nGJMwixogyk.5.4.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Moving forward-right; C: Moving backward-right; D: Moving backward-left,B,
3,CameraBench/nb69sgB5mG0.2.3.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving right; C: Moving forward; D: Moving left,A,
3,CameraBench/oRt5NPY7yYA.0.6.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,D,
2,CameraBench/oRt5NPY7yYA.4.1.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting clockwise; B: Orbiting counterclockwise; C: Moving backward; D: Moving forward,B,
3,CameraBench/oRt5NPY7yYA.5.0.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-right; B: Moving backward-left; C: Moving forward-left; D: Moving forward-right,B,
3,CameraBench/pJwjgXcJ4zQ.2.0.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving right; C: Moving left; D: Moving forward,D,
3,CameraBench/pNGMY3xVkVE.0.1.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,D,
3,CameraBench/pq8MBzYgZ88.0.0.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving right; C: Moving left; D: Moving backward,D,
3,CameraBench/px9IqOnilHI.3.0.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,A,
3,CameraBench/sKJeTaIEldM.1.1.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving left; C: Moving right; D: Moving backward,A,reverse moving left
2,CameraBench/u35WIs62R2M.1.4.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving upward; C: Moving downward; D: Moving backward,C,reverse moving left
3,CameraBench/uWCGK4nneeU.1.1.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting clockwise; B: Orbiting counterclockwise; C: Moving upward; D: Moving downward,C,
2,CameraBench/upC8hjr2b4g.8.1.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving backward; C: Moving downward; D: Moving upward,D,
2,CameraBench/vQwotuKuUzE.0.0.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting clockwise; B: Orbiting counterclockwise; C: Moving backward-right; D: Moving backward-left,B,
3,CameraBench/video_206294.0.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,B,
3,CameraBench/z9Bw94k7AxQ.0.10.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,D,
3,SynFMC/Rendered_Traj_Results/dynamic/10/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,C,
3,SynFMC/Rendered_Traj_Results/dynamic/103/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving downward; B: Orbiting clockwise; C: Basically unchange; D: Orbiting counterclockwise,B,
3,SynFMC/Rendered_Traj_Results/dynamic/110/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving upward; C: Basically unchange; D: Moving right,C,
2,SynFMC/Rendered_Traj_Results/dynamic/115/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Basically unchange; C: Moving upward; D: Moving right,B,
3,SynFMC/Rendered_Traj_Results/dynamic/121/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving right; C: Moving backward; D: Moving left,A,
3,SynFMC/Rendered_Traj_Results/dynamic/123/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,D,
3,SynFMC/Rendered_Traj_Results/dynamic/133/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,C,
3,SynFMC/Rendered_Traj_Results/dynamic/14/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving downward; C: Turning backward-right; D: Moving upward,B,
3,SynFMC/Rendered_Traj_Results/dynamic/145/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward and turning right; B: Moving backward and turning left; C: Moving forward and turning left; D: Moving forward and turning right,B,
3,SynFMC/Rendered_Traj_Results/dynamic/146/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving backward; D: Moving forward,B,
3,SynFMC/Rendered_Traj_Results/dynamic/15/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,C,
2,SynFMC/Rendered_Traj_Results/dynamic/178/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,C,
3,SynFMC/Rendered_Traj_Results/dynamic/183/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving backward-right; C: Moving forward-left; D: Moving backward-left,C,
3,SynFMC/Rendered_Traj_Results/dynamic/188/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,D,
3,SynFMC/Rendered_Traj_Results/dynamic/196/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Basically unchange; B: Moving left; C: Moving right; D: Moving upward,A,
3,SynFMC/Rendered_Traj_Results/dynamic/198/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,A,
3,SynFMC/Rendered_Traj_Results/dynamic/215/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,B,
3,SynFMC/Rendered_Traj_Results/dynamic/227/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,D,
3,SynFMC/Rendered_Traj_Results/dynamic/234/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,B,
3,SynFMC/Rendered_Traj_Results/dynamic/277/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,C,
3,SynFMC/Rendered_Traj_Results/dynamic/302/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving backward-right; C: Moving backward-left; D: Moving forward-left,A,
3,SynFMC/Rendered_Traj_Results/dynamic/367/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting counterclockwise; B: Moving downward; C: Moving backward; D: Moving upward,D,
3,SynFMC/Rendered_Traj_Results/dynamic/375/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,A,
3,SynFMC/Rendered_Traj_Results/dynamic/39/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,C,
3,SynFMC/Rendered_Traj_Results/dynamic/391/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving left; D: Moving downward,D,
3,SynFMC/Rendered_Traj_Results/dynamic/400/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,A,
3,SynFMC/Rendered_Traj_Results/dynamic/403/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,D,
3,SynFMC/Rendered_Traj_Results/dynamic/419/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,B,
3,SynFMC/Rendered_Traj_Results/dynamic/427/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,C,
3,SynFMC/Rendered_Traj_Results/dynamic/428/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,C,
3,SynFMC/Rendered_Traj_Results/dynamic/439/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,B,
3,SynFMC/Rendered_Traj_Results/dynamic/45/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Moving downward; C: Orbiting counterclockwise; D: Moving right,A,
2,SynFMC/Rendered_Traj_Results/dynamic/450/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting clockwise; B: Moving backward; C: Moving forward; D: Orbiting counterclockwise,A,
2,SynFMC/Rendered_Traj_Results/dynamic/451/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving right; C: Moving forward; D: Moving left,A,
3,SynFMC/Rendered_Traj_Results/dynamic/467/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,B,
3,SynFMC/Rendered_Traj_Results/dynamic/486/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving left; C: Moving right; D: Moving backward,A,1s
2,SynFMC/Rendered_Traj_Results/dynamic/56/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,C,
3,SynFMC/Rendered_Traj_Results/dynamic/6/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,D,
3,SynFMC/Rendered_Traj_Results/dynamic/72/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Moving downward; C: Moving forward-right; D: Turning forward-right,A,1.5s
2,SynFMC/Rendered_Traj_Results/dynamic/81/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving downward; B: Moving upward; C: Moving forward-left; D: Moving backward-right,A,
3,SynFMC/Rendered_Traj_Results/dynamic/92/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving downward; B: Orbiting counterclockwise; C: Moving upward; D: Orbiting clockwise,D,1s
3,SynFMC/Rendered_Traj_Results/dynamic/96/video_480p.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Basically unchange; B: Moving right; C: Moving upward; D: Moving left,A,1s
3,k700/base jumping/W6cAhAqvyeY_000191_000201/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,C,
3,k700/base jumping/rGy7-nevWFM_000000_000010/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving left; C: Moving upward; D: Basically unchange,D,
3,k700/biking through snow/TCSecVqiHv4_000169_000179/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving right; C: Moving left; D: Moving forward,D,
3,k700/biking through snow/TCSecVqiHv4_000169_000179/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Rotating clockwise; B: Moving right; C: Rotating counterclockwise; D: Moving left,C,1-2s
3,k700/bulldozing/Mwfxj5jW-dc_000000_000010/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving left; C: Basically unchange; D: Moving upward,C,
3,k700/bulldozing/qhx08XOm0GU_000248_000258/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Moving right; C: Moving downward; D: Moving left,A,
3,k700/canoeing or kayaking/vRzRGPrVeKY_000023_000033/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving backward; D: Moving forward,B,
3,k700/carrying weight/bBvQGdo2NvU_000052_000062/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving backward; C: Moving right; D: Moving forward,C,
3,k700/catching or throwing frisbee/U0ktmc6Jgek_000041_000051/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Basically unchange; C: Moving upward; D: Moving left,B,1-3s
3,k700/catching or throwing frisbee/tXQo-v3YG1g_000001_000011/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Basically unchange; C: Moving left; D: Moving right,B,
3,k700/catching or throwing softball/F1y0ToSPCvM_000035_000045/video-scene-00003.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Basically unchange; C: Moving right; D: Moving left,B,
3,k700/crossing river/JRmwuQBJNj8_000046_000056/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Basically unchange; C: Moving right; D: Moving upward,B,0-5s
3,k700/curling (sport)/Kj2XTVseGaI_000041_000051/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Basically unchange; B: Moving left; C: Moving upward; D: Moving right,A,0-1s
2,k700/curling (sport)/P1bxYawvTQU_000010_000020/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,C,
2,k700/delivering mail/5_mJv7w4NJU_000000_000010/video-scene-00005.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving left; C: Moving right; D: Moving backward,A,
3,k700/delivering mail/_AbWP7o-RSs_000092_000102/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving backward-left; C: Moving backward-right; D: Moving forward-left,D,
2,k700/diving cliff/BcjPY8Xq1Eg_003117_003127/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving left; D: Moving backward,A,
3,k700/docking boat/7XgBHarpxOY_000028_000038/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Moving backward-right; C: Moving forward-right; D: Moving backward-left,B,
2,k700/dodgeball/i7DApGaMVM0_000050_000060/video-scene-00003.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,A,
2,k700/dribbling basketball/7oIruC7gva8_000087_000097/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting counterclockwise; B: Orbiting clockwise; C: Moving right; D: Moving forward,B,
3,k700/driving car/YGxnmSTG1js_000108_000118/video-scene-00001.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward and turning right; B: Moving forward and turning left; C: Moving backward and turning right; D: Moving backward and turning left,B,1-2s
3,k700/driving tractor/94YJ3FMpeZ8_000028_000038/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving upward; C: Basically unchange; D: Moving right,C,
3,k700/driving tractor/9l3CweWo2h8_000003_000013/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Basically unchange; B: Moving right; C: Moving upward; D: Moving left,A,
3,k700/geocaching/_qJxV4JtSmA_000182_000192/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,C,0-2s
3,k700/golf driving/CBCmxO1fP8k_000064_000074/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving right; C: Moving backward; D: Moving left,D,
3,k700/herding cattle/9UYdL3ZTUSM_000013_000023/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving upward; D: Basically unchange,D,
3,k700/herding cattle/AyYIgWcTuQM_000003_000013/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving left; C: Moving upward; D: Basically unchange,D,
3,k700/herding cattle/aZvUng53U2I_000002_000012/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Rotating counterclockwise; B: Rotating clockwise; C: Moving left; D: Moving right,A,
3,k700/hockey stop/uzCZ_qfK-lo_000024_000034/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving upward; C: Basically unchange; D: Moving right,C,0-2s
2,k700/hoverboarding/L1qZRZONznY_000004_000014/video-scene-00007.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving backward; C: Moving right; D: Moving forward,A,
3,k700/hoverboarding/ODuDuZXX4go_000032_000042/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-left; B: Moving backward-right; C: Moving forward-left; D: Moving forward-right,B,0.3-1s
3,k700/hurdling/8SMY-IEcyCU_000001_000011/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Rotating counterclockwise; C: Moving left; D: Rotating clockwise,B,2-5s
3,k700/ice skating/EZtgEVFXLHw_000001_000011/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving backward-left; C: Moving backward-right; D: Moving forward-left,D,
3,k700/ice skating/lrrkA1ASuxA_000032_000042/video-scene-00004.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Rotating counterclockwise; B: Moving left; C: Moving right; D: Rotating clockwise,D,
3,k700/ice swimming/zUCWM0GONic_000157_000167/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving left; C: Basically unchange; D: Moving upward,C,
3,k700/jaywalking/nh6kHg7hRyQ_000006_000016/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,A,5-7s
3,k700/jogging/QY8RJBxbLnA_000116_000126/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,B,
3,k700/jogging/QY8RJBxbLnA_000116_000126/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-left; B: Moving backward-right; C: Moving forward-right; D: Moving forward-left,D,
3,k700/jogging/T2AP6MeSAo8_000201_000211/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving left; C: Moving right; D: Moving backward,A,
2,k700/kitesurfing/68NshKLwMU0_000057_000067/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Moving forward; C: Orbiting clockwise; D: Orbiting counterclockwise,C,
2,k700/land sailing/N9bFveAnSIU_000096_000106/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,B,
3,k700/lawn mower racing/mi6uwVxkJP0_000133_000143/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving upward; C: Basically unchange; D: Moving left,C,
3,k700/lawn mower racing/sK_LWTdusxU_000048_000058/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Basically unchange; D: Moving upward,C,
3,k700/longboarding/F1ZbekX_koo_000288_000298/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Rotating counterclockwise; C: Moving left; D: Rotating clockwise,D,
2,k700/longboarding/d13RKJ1Qx6w_000022_000032/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving backward; C: Moving right; D: Moving forward,D,0.5-2
3,k700/luge/LvPMb4h5RuM_000018_000028/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving left; C: Moving right; D: Moving backward,A,reverse back
3,k700/marching/Ln_UzrBR1r0_000032_000042/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving left; C: Basically unchange; D: Moving upward,C,
2,k700/marching/PJ1OjqHi-L0_000081_000091/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,A,
2,k700/marching/ox06Z0XV8_M_000142_000152/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Moving backward; C: Moving downward; D: Rotating clockwise,C,
3,k700/moon walking/FGuwZjR06_Y_000059_000069/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Rotating clockwise; C: Moving left; D: Rotating counterclockwise,B,0-3
3,k700/motorcycling/D62FyprEknY_000157_000167/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward and turning right; B: Moving backward and turning left; C: Moving forward and turning left; D: Moving backward and turning right,A,4-8
3,k700/paragliding/76njkKraeDc_000000_000010/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Rotating clockwise; C: Rotating counterclockwise; D: Moving left,C,
3,k700/parkour/skA1nMaGIfM_000062_000072/video-scene-00003.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,A,
2,k700/playing laser tag/ntqZnMmWrlE_000023_000033/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Basically unchange; B: Orbiting counterclockwise; C: Turning backward-left; D: Orbiting clockwise,B,
2,k700/playing paintball/-KSlNTNJDxo_000009_000019/video-scene-00003.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving right; C: Moving forward; D: Moving left,D,
3,k700/playing polo/J7j8_hz_hx8_000018_000028/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,B,0-3s
3,k700/playing road hockey/C-WIZUak28k_000007_000017/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Rotating counterclockwise; C: Rotating clockwise; D: Moving left,C,0-2s
3,k700/pushing car/Rsbq7mgPgXM_000014_000024/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Rotating counterclockwise; C: Rotating clockwise; D: Moving left,B,
3,k700/pushing car/n6jSTM8q3nw_000007_000017/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving left; D: Moving backward,B,
2,k700/pushing wheelbarrow/SCe6x03FBaI_000003_000013/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving downward; C: Moving upward; D: Basically unchange,B,
3,k700/pushing wheelchair/QF2z6xBNWIA_000016_000026/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,B,
3,k700/pushing wheelchair/mcMDV4N884Q_000053_000063/video-scene-00004.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-left; B: Moving forward-right; C: Moving forward-left; D: Moving backward-right,C,
3,k700/pushing wheelchair/nwBRn1CugHo_000113_000123/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,C,
3,k700/riding a bike/9Bhl527p5cM_001247_001257/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving left; D: Moving backward,B,0-3
3,k700/riding a bike/B1nDimzrEbo_000004_000014/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,D,0-6
3,k700/riding camel/KH2ghayeo8k_000042_000052/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,D,
3,k700/riding camel/LPCekhiwV94_000221_000231/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving backward-left; C: Moving forward-left; D: Moving backward-right,B,
3,k700/riding camel/ndWJaRSGyCE_000074_000084/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,A,
3,k700/riding mule/A9_QwZriy8k_000000_000010/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,B,0-5
2,k700/riding mule/YKNMwsc1_ss_000110_000120/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,B,
3,k700/riding mule/afmuV-Aiv2M_000041_000051/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Basically unchange; B: Moving upward; C: Moving right; D: Moving left,A,5-9
3,k700/riding mule/q6elxqsBhcg_000209_000219/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving right; D: Moving left,B,3-7
3,k700/riding mule/uayDext7cVU_000119_000129/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Moving right; C: Basically unchange; D: Moving left,C,4-8
3,k700/riding scooter/Fo_d9bsuYQE_000035_000045/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward and turning right; B: Moving forward and turning right; C: Moving forward and turning left; D: Moving backward and turning left,C,0-3
3,k700/riding scooter/GPRT_zYR4kk_000009_000019/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Basically unchange; C: Moving upward; D: Moving right,B,0-3
2,k700/riding snow blower/LOO790fA_00_000026_000036/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Basically unchange; C: Moving right; D: Moving upward,B,"rotate90,0-4"
3,k700/riding unicycle/EdOU7ow9jPM_000085_000095/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Rotating clockwise; C: Moving right; D: Rotating counterclockwise,D,
3,k700/roller skating/6MKV90DUPCY_000024_000034/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,C,0-5
2,k700/running on treadmill/nkOGrY5O_vA_000117_000127/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Moving backward-left; C: Moving backward-right; D: Moving forward-right,C,
3,k700/side kick/F7s5gZ98X2Q_000006_000016/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Rotating clockwise; B: Moving left; C: Moving right; D: Rotating counterclockwise,D,2-5
2,k700/skateboarding/06ofnvq2Hjs_000065_000075/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving backward; C: Moving right; D: Moving forward,D,reverse forward
3,k700/skateboarding/RTvs_EKwEJE_000100_000110/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,A,
3,k700/skateboarding/RrTCg06AvMM_000053_000063/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,C,
3,k700/skateboarding/rWAR3z0YIPg_000010_000020/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,B,
3,k700/skateboarding/rWAR3z0YIPg_000010_000020/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,B,reverse forward
3,k700/ski ballet/BpxDJkUUzWA_000355_000365/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-left; B: Moving backward-right; C: Moving forward-left; D: Moving forward-right,C,5-8
3,k700/skiing crosscountry/Ig2aR8Keq44_000027_000037/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,C,0-5
3,k700/skiing crosscountry/Ig2aR8Keq44_000027_000037/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,B,1-3
3,k700/skiing crosscountry/kn-pphD7uK8_000121_000131/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,C,1-3
2,k700/skiing mono/WmDFb0gZRnY_000059_000069/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,A,
3,k700/skiing mono/rQFNdqdK5nY_000080_000090/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,B,3-7
2,k700/skiing mono/tte1xX1T8xY_000028_000038/video-scene-00003.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting clockwise; B: Moving backward; C: Turning backward-right; D: Orbiting counterclockwise,D,
3,k700/skiing slalom/bQrcj7GCJJQ_000357_000367/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,B,
3,k700/sled dog racing/WaP8tgWoqOU_000012_000022/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,C,
3,k700/sled dog racing/tKZzteaCpds_000063_000073/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving right; C: Moving backward; D: Moving left,A,0-2
3,k700/snorkeling/l5BUJmVWLaA_000118_000128/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,D,
3,k700/snowboarding/9o2tVONLRMU_000003_000013/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving right; C: Moving left; D: Moving backward,A,2-4
3,k700/snowboarding/cA-S2dh5Bkg_000079_000089/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,D,
3,k700/snowmobiling/NdAuyvdNneI_000018_000028/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Rotating clockwise; B: Rotating counterclockwise; C: Moving left; D: Moving right,A,0-7
3,k700/steering car/EqEOpgIYkPE_000078_000088/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,A,
3,k700/steering car/GdPiYfzw7fQ_000004_000014/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving right; C: Moving left; D: Moving backward,D,
3,k700/swimming backstroke/GAw4NZDPCuU_000003_000013/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,C,
3,k700/swimming breast stroke/sa391NAMpPA_000004_000014/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-left; B: Moving backward-right; C: Moving forward-right; D: Moving forward-left,B,
3,k700/swimming breast stroke/zqb6UG19AjQ_000050_000060/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,A,
3,k700/tiptoeing/OaXQdr9pnd8_000008_000018/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Moving backward-left; C: Moving forward-right; D: Moving backward-right,D,
3,k700/tobogganing/iNGnDAGsO1Y_000059_000069/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward and turning left; B: Moving forward and turning right; C: Moving forward and turning left; D: Moving backward and turning right,C,
3,k700/walking the dog/CFkD8z6bQvo_000056_000066/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving backward; D: Moving forward,D,
3,k700/water skiing/8npAWfpWO_o_000000_000010/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving backward; D: Moving forward,C,
2,k700/water skiing/9YJec6_lXDA_000013_000023/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Basically unchange; B: Orbiting clockwise; C: Orbiting counterclockwise; D: Turning forward-right,C,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_-dwQmhzgQWw/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving right; D: Moving left,A,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_0k2LNdvcCZA/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Rotating counterclockwise; B: Moving left; C: Moving right; D: Rotating clockwise,D,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_0s5B3EsBeWI/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-right; B: Moving forward-left; C: Moving forward-right; D: Moving backward-left,A,0-2
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_0vTXxnLEriA/video-scene-00003.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward and turning left; B: Moving forward and turning left; C: Moving forward and turning right; D: Moving backward and turning right,A,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_0yOd_4OK43I/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,D,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_11tmFrZZUoM/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Orbiting counterclockwise; C: Moving left; D: Orbiting clockwise,B,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_16mZjk4AOJs/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting counterclockwise; B: Orbiting clockwise; C: Moving forward-right; D: Turning backward-right,B,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_1_LX8Jw5l-A/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Orbiting counterclockwise; C: Orbiting clockwise; D: Moving downward,B,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_1dHrVQtInLI/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving right; C: Moving left; D: Moving forward,D,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_2TNTcPLxKMc/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,A,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_2pz0U6OwIuA/video-scene-00005.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Turning forward-left; C: Basically unchange; D: Moving downward,A,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_3b1VFoA7Q7k/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,D,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_3cLBcl7nAxA/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,B,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_3cLBcl7nAxA/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Orbiting clockwise; C: Orbiting counterclockwise; D: Turning forward-right,C,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_3dgcBwHRv_4/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,C,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_3rSmVlRrlDA/video-scene-00008.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving left; C: Moving right; D: Moving forward,A,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_3yfgMZfLMnQ/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving backward; C: Moving right; D: Moving forward,B,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_4NwcGjxVuWg/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,B,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_4ml3OGrYvVQ/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,C,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_4ml3OGrYvVQ/video-scene-00003.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Orbiting clockwise; C: Moving upward; D: Orbiting counterclockwise,B,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_52BQHFb0Sj8/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,C,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_55koFoYV-j8/video-scene-00002.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving left; C: Moving right; D: Moving forward,D,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_55koFoYV-j8/video-scene-00006.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,A,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_55koFoYV-j8/video-scene-00007.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving right; C: Moving forward; D: Moving left,C,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_55koFoYV-j8/video-scene-00008.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,B,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_76W9Z1rovDk/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting clockwise; B: Moving forward; C: Moving downward; D: Orbiting counterclockwise,D,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_7P2oXnIs8r4/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving right; C: Moving forward; D: Moving left,C,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_7sBatb7FCgM/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving left; C: Basically unchange; D: Moving upward,C,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_8K-8QeQ6CEA/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-left; B: Moving forward-left; C: Moving forward-right; D: Moving backward-right,A,0-1
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_8t-xKwg70Aw/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving right; C: Moving forward; D: Moving left,A,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_8t-xKwg70Aw/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,C,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_9AAsPmSn1WM/video-scene-00009.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,B,2-4
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_9BqJ_P4kjA0/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving backward-right; C: Moving backward-left; D: Moving forward-left,B,2-3
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_AMFqxnJ6lyY/video-scene-00000.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving backward-right; C: Moving backward-left; D: Moving forward-left,D,0-1
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_AY7fHA0o6IU/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving downward; B: Moving left; C: Moving forward; D: Moving upward,D,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_AY7fHA0o6IU/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Moving right; C: Moving downward; D: Moving left,A,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_BmSVh00LM7o/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,C,0-1.2
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_D7GKwj259T8/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving right; C: Moving left; D: Moving forward,D,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_DhdZCTLh8BI/video-scene-00005.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,A,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_EDesz2zqnV0/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-left; B: Moving backward-right; C: Moving forward-left; D: Moving forward-right,C,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_EJn2Dafb4Pw/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,D,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_EaBVnvifA8A/video-scene-00003.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,D,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_ErnwkTjdkpY/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,B,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_FlMn0GmDp5s/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving right; C: Moving backward; D: Moving left,C,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_Fyp7lWnCAco/video-scene-00001.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving left; C: Moving right; D: Moving backward,A,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_Fyp7lWnCAco/video-scene-00003.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Moving backward-right; C: Moving downward; D: Moving backward-left,A,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_G4EqAn9rtzg/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,C,1-2s
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_GDhFffL5E1Q/video-scene-00004.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving right; C: Moving left; D: Moving forward,A,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_Gul_qo64V2U/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,B,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_HaoB-KBtckY/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,B,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_Hj_2Yn5q5h0/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting counterclockwise; B: Orbiting clockwise; C: Moving upward; D: Moving downward,B,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_Hj_2Yn5q5h0/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Orbiting clockwise; C: Basically unchange; D: Orbiting counterclockwise,D,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_I-Nq_WrtERQ/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting counterclockwise; B: Moving forward; C: Basically unchange; D: Orbiting clockwise,A,0-2
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_J2M4Gk_yaIo/video-scene-00005.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving forward-left; C: Moving backward-right; D: Moving backward-left,C,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_JMPBTWiUVHw/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-left; B: Moving forward-right; C: Moving forward-left; D: Moving backward-right,C,3-6
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_KOuN5eQQa8c/video-scene-00007.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting counterclockwise; B: Moving downward; C: Moving upward; D: Orbiting clockwise,D,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_K_3g5aDcmEM/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,A,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_LAQ8XzOPaPA/video-scene-00004.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving right; C: Moving left; D: Moving forward,C,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_MUQK3vhVOiw/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving right; C: Moving left; D: Moving forward,C,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_NzvBsCoiyqc/video-scene-00004.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,B,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_O6QfY9a5E7k/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-left; B: Moving forward-right; C: Moving forward-left; D: Moving backward-right,C,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_OQwveka9WKo/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,D,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_OpT9L_7g68M/video-scene-00003.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting counterclockwise; B: Orbiting clockwise; C: Moving downward; D: Moving forward,A,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_OpT9L_7g68M/video-scene-00004.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting clockwise; B: Orbiting counterclockwise; C: Moving forward; D: Moving forward-right,B,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_P5gH6mkNQZg/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,A,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_PCj0xJV7GI0/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,C,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_POmG8B51pI8/video-scene-00005.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,D,0-2
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_PZg1hDiWFYk/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Moving right; C: Moving backward; D: Moving downward,D,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_RmxRewk08WE/video-scene-00004.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving right; C: Moving backward; D: Moving left,D,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_Sw_eP0zi4k0/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Orbiting counterclockwise; C: Orbiting clockwise; D: Moving forward-right,B,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_TQGzgx1Ls0k/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-right; B: Moving forward-left; C: Moving backward-left; D: Moving forward-right,D,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_TR9ta_pJFAw/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,B,0-3
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_TXf5cL95Y3w/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving left; C: Moving right; D: Moving forward,A,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_TsuHAopbc1I/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-right; B: Moving backward-left; C: Moving forward-left; D: Moving forward-right,C,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_U0x52_k3EG8/video-scene-00004.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,A,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_UJCxQ54i0o0/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Rotating clockwise; B: Moving left; C: Moving right; D: Rotating counterclockwise,A,0-2
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_Ulol_nV9Rw4/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving downward; B: Orbiting clockwise; C: Orbiting counterclockwise; D: Moving upward,C,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_Ulol_nV9Rw4/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-left; B: Orbiting counterclockwise; C: Moving upward; D: Orbiting clockwise,D,0-2
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_Ulol_nV9Rw4/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,B,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_V1-QQkEPCC8/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Orbiting clockwise; C: Orbiting counterclockwise; D: Moving backward-left,B,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_VtP9ZQ9BdYk/video-scene-00005.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Basically unchange; B: Orbiting clockwise; C: Moving upward; D: Moving downward,C,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_VwLZQLnWnrg/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving right; D: Moving left,A,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_WjVJ8j6qWWQ/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving left; D: Moving backward,A,reverse forward
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_XlvvPiM82Jc/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting counterclockwise; B: Orbiting clockwise; C: Moving backward; D: Turning backward-left,B,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_Xx8UOZNPsKQ/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving right; C: Moving left; D: Moving forward,D,7-11
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_Y08I0FQC9Lg/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,D,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_YfKRSLpJZDw/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Rotating clockwise; C: Rotating counterclockwise; D: Moving right,B,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_YyUFRWZb1DE/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,C,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb__D_q7wjUv_w/video-scene-00001.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,B,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb__D_q7wjUv_w/video-scene-00003.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Moving backward-left; C: Moving backward-right; D: Moving forward-right,B,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb__D_q7wjUv_w/video-scene-00006.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-right; B: Moving forward-left; C: Moving forward-right; D: Moving backward-left,A,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb__WYlSbgv0Fs/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Orbiting counterclockwise; C: Moving right; D: Orbiting clockwise,D,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb__ktvEEOzqZ0/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving left; C: Moving right; D: Moving backward,D,0-2
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_aSGtwaZ22ZU/video-scene-00003.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,B,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_aSLaqLBcWrA/video-scene-00003.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-left; B: Moving upward; C: Moving downward; D: Moving backward-right,B,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_aYckcF68fnU/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving right; D: Moving left,B,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_au9X6t7TVSY/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Moving forward-right; C: Moving backward-right; D: Moving backward-left,B,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_byy2-cV2kvk/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,A,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_cTVM2cQ3JI0/video-scene-00003.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting clockwise; B: Orbiting counterclockwise; C: Moving forward-right; D: Moving forward-left,B,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_dJAUt-hx2iU/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Basically unchange; C: Moving right; D: Moving upward,B,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_dJAUt-hx2iU/video-scene-00008.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-right; B: Moving forward-left; C: Moving backward-left; D: Moving forward-right,B,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_dmuk705efRU/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Rotating counterclockwise; B: Moving right; C: Rotating clockwise; D: Moving left,C,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_eFKKMI9KVtA/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,D,0-3
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_eajNgrGwIJs/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,C,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_fiRLBLcw-uY/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,D,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_g7sEtiEa1-o/video-scene-00003.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Orbiting clockwise; C: Orbiting counterclockwise; D: Moving backward,C,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_ipIHgYHNXJI/video-scene-00003.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Turning forward-left; B: Orbiting clockwise; C: Turning forward-right; D: Orbiting counterclockwise,D,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_ipIHgYHNXJI/video-scene-00006.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Rotating counterclockwise; B: Moving right; C: Rotating clockwise; D: Moving left,C,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_jEKwQF1YKoE/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving right; C: Moving left; D: Moving backward,A,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_jFuJEun2yCM/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving backward; C: Moving right; D: Moving forward,D,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_l3EgB4gU8hE/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting clockwise; B: Orbiting counterclockwise; C: Turning forward-left; D: Turning forward-right,B,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_l3EgB4gU8hE/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting counterclockwise; B: Orbiting clockwise; C: Turning forward-left; D: Turning forward-right,B,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_nUdgT0sezco/video-scene-00000.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving backward-right; C: Moving forward-left; D: Moving backward-left,C,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_oJvsubfR5ZI/video-scene-00000.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Orbiting clockwise; C: Moving forward; D: Orbiting counterclockwise,D,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_q5N2L5L9j1Q/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-right; B: Moving forward-right; C: Moving backward-left; D: Moving forward-left,B,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_rxacbYNKuzI/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving right; C: Moving left; D: Moving backward,B,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_rxacbYNKuzI/video-scene-00003.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,D,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_s4NYML0xW-k/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Turning forward-left; C: Moving downward; D: Turning forward-right,A,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_tXfxkxh27ks/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving right; D: Moving left,A,
2,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_uI19fhkZPUA/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-right; B: Moving forward-right; C: Moving backward-left; D: Moving forward-left,B,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_upupV4Dyfv0/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving backward; C: Moving right; D: Moving forward,B,
3,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_vuokNBBf2XQ/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Rotating clockwise; B: Moving right; C: Rotating counterclockwise; D: Moving left,A,
2,llava178k/30_60_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_3xoDRxJrD-w/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,D,
3,llava178k/30_60_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_4GHQeWJQTuw/video-scene-00011.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,A,
3,llava178k/30_60_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_Bag2HJhcV44/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-left; B: Orbiting counterclockwise; C: Orbiting clockwise; D: Moving backward-right,C,
2,llava178k/30_60_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_MOd-t8Uxs24/video-scene-00003.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting counterclockwise; B: Moving forward; C: Orbiting clockwise; D: Moving left,A,
2,llava178k/30_60_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_MOd-t8Uxs24/video-scene-00007.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Rotating clockwise; C: Rotating counterclockwise; D: Moving left,C,
2,llava178k/30_60_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_T55Kx9W-SvI/video-scene-00000.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Orbiting clockwise; C: Moving right; D: Orbiting counterclockwise,B,
3,llava178k/30_60_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_T55Kx9W-SvI/video-scene-00005.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,C,
3,llava178k/30_60_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_T55Kx9W-SvI/video-scene-00007.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,B,reverse right forward
3,llava178k/30_60_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_XmkcVwEJ_Q8/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,A,
2,llava178k/30_60_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_ZL9ztyaDSqM/video-scene-00022.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving left; C: Moving right; D: Moving backward,D,
2,llava178k/30_60_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_vId5_kpnZZU/video-scene-00002.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Moving backward-right; C: Moving forward-right; D: Moving backward-left,A,
2,llava178k/30_60_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_vId5_kpnZZU/video-scene-00007.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving upward; C: Moving forward-left; D: Moving downward,B,
2,llava178k/30_60_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_vp_GfW0XCuE/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,B,
2,llava178k/30_60_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_vp_GfW0XCuE/video-scene-00005.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving backward-right; C: Moving forward-left; D: Moving backward-left,D,
3,internet/-4dDC0lPRB0/video-scene-00006.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving forward-left; C: Moving backward-right; D: Moving backward-left,A,"0-2, reverse back"
2,internet/-4dDC0lPRB0/video-scene-00014.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving upward; C: Moving left; D: Moving downward,B,
2,internet/-4dDC0lPRB0/video-scene-00026.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,D,
2,internet/-4dDC0lPRB0/video-scene-00028.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving downward; B: Orbiting clockwise; C: Orbiting counterclockwise; D: Moving upward,A,
3,internet/-4dDC0lPRB0/video-scene-00033.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,C,
2,internet/-4dDC0lPRB0/video-scene-00042.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,D,
2,internet/-7bJwW2NYyc/video-scene-00039.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,A,7-11
2,internet/-7bJwW2NYyc/video-scene-00045.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Moving downward; C: Orbiting clockwise; D: Orbiting counterclockwise,A,
3,internet/-7bJwW2NYyc/video-scene-00060.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,D,
3,internet/-7bJwW2NYyc/video-scene-00152.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,C,
2,internet/-7bJwW2NYyc/video-scene-00161.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting counterclockwise; B: Orbiting clockwise; C: Moving upward; D: Moving downward,D,
3,internet/-7bJwW2NYyc/video-scene-00167.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,C,
3,internet/-7bJwW2NYyc/video-scene-00168.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving downward; B: Moving upward; C: Moving left; D: Basically unchange,A,
3,internet/-FGVJS3rT80/video-scene-00014.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving upward; C: Moving left; D: Basically unchange,D,
3,internet/-FGVJS3rT80/video-scene-00022.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Moving backward-right; C: Moving backward-left; D: Moving forward-right,C,
3,internet/-FGVJS3rT80/video-scene-00034.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,C,
3,internet/-FGVJS3rT80/video-scene-00056.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving right; C: Moving left; D: Moving backward,A,
3,internet/-YVsVvsABOQ/video-scene-00011.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,C,
2,internet/-YVsVvsABOQ/video-scene-00040.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,A,
3,internet/-a_AvIzbVHI/video-scene-00017.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,C,
3,internet/-a_AvIzbVHI/video-scene-00024.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving downward; D: Moving upward,C,
2,internet/-tQTIMPC7T8/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving backward-left; C: Moving backward-right; D: Moving forward-left,D,
2,internet/-tQTIMPC7T8/video-scene-00005.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Moving downward; C: Moving backward-left; D: Moving backward-right,A,
2,internet/-z5c_d2_54U/video-scene-00011.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving downward; B: Moving forward-right; C: Moving upward; D: Moving forward-left,C,
2,internet/02P6SAFU7mo/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,B,
2,internet/0AE-W5r-QBE/video-scene-00040.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,C,
3,internet/0DDmJ-6pn7w/video-scene-00047.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,C,
3,internet/0IRTpb1y8b0/video-scene-00007.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving backward-left; C: Moving backward-right; D: Moving forward-left,B,0-4s
2,internet/0IRTpb1y8b0/video-scene-00045.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving forward-left; C: Moving backward-left; D: Moving backward-right,B,0-3
3,internet/0tIoyN7WKuA/video-scene-00028.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,C,
3,internet/1MR3H_9Wq4A/video-scene-00076.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Moving backward-left; C: Moving backward-right; D: Moving forward-right,D,
3,internet/1MjOFcsnz34/video-scene-00006.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Basically unchange; B: Moving upward; C: Moving right; D: Moving left,A,
3,internet/2MdI1C-m4kk/video-scene-00006.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving backward; C: Moving right; D: Moving forward,A,
3,internet/2TsQA3aRd14/video-scene-00059.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,B,
2,internet/2d0iWOhbSjU/video-scene-00020.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Moving upward; C: Moving downward; D: Moving forward-right,B,
3,internet/2kzaSEU-P70/video-scene-00012.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,C,
2,internet/2kzaSEU-P70/video-scene-00054.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,B,
3,internet/336clDassMQ/video-scene-00026.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving right; C: Moving left; D: Moving forward,A,2-4
3,internet/3LDJxHWtFUI/video-scene-00042.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,D,
3,internet/3NZyvpYYj3o/video-scene-00011.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving left; D: Moving backward,B,
3,internet/3NZyvpYYj3o/video-scene-00046.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward and turning left; B: Moving backward and turning right; C: Moving forward and turning left; D: Moving forward and turning right,D,
2,internet/4I8Q07t5hik/video-scene-00053.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,C,
3,internet/4UuBCncNhYw/video-scene-00023.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving right; C: Moving forward; D: Moving left,B,
3,internet/4cZ3OQlfupM/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Turning backward-right; B: Turning backward-left; C: Moving upward; D: Moving downward,C,
3,internet/4cZ3OQlfupM/video-scene-00016.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving right; C: Moving backward; D: Moving left,B,
3,internet/4cZ3OQlfupM/video-scene-00023.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving downward; B: Turning forward-right; C: Moving upward; D: Turning forward-left,C,0-4
3,internet/4cZ3OQlfupM/video-scene-00043.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Moving forward-left; C: Moving downward; D: Moving forward-right,A,
3,internet/4rE_ToGWcdU/video-scene-00013.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward and turning left; B: Moving forward and turning right; C: Moving forward and turning left; D: Moving backward and turning right,B,
3,internet/5FUEltKsVJQ/video-scene-00020.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,D,
3,internet/5FUEltKsVJQ/video-scene-00037.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,C,
3,internet/5FUEltKsVJQ/video-scene-00071.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,B,
2,internet/5H0Ik7QBikI/video-scene-00099.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward-right; C: Orbiting clockwise; D: Orbiting counterclockwise,C,
3,internet/5H0Ik7QBikI/video-scene-00118.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Orbiting counterclockwise; C: Moving left; D: Orbiting clockwise,B,
3,internet/5jYgYFpGCL4/video-scene-00015.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving right; D: Moving left,A,
2,internet/5jYgYFpGCL4/video-scene-00031.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Turning forward-left; B: Orbiting counterclockwise; C: Orbiting clockwise; D: Turning forward-right,B,
2,internet/5jYgYFpGCL4/video-scene-00041.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,C,
2,internet/5umLTWybVd4/video-scene-00010.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving left; D: Moving backward,D,
3,internet/5umLTWybVd4/video-scene-00022.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,C,
2,internet/6Dya28hBChQ/video-scene-00032.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Turning forward-right; B: Moving downward; C: Turning forward-left; D: Moving upward,D,
3,internet/6VNL2NdYvFQ/video-scene-00036.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-left; B: Moving upward; C: Moving backward-right; D: Moving downward,B,
3,internet/6VNL2NdYvFQ/video-scene-00049.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving downward; B: Orbiting counterclockwise; C: Orbiting clockwise; D: Moving upward,A,
3,internet/6VNL2NdYvFQ/video-scene-00075.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Moving left; C: Moving right; D: Moving downward,A,
3,internet/6cpC7A1h4uk/video-scene-00005.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-right; B: Moving backward-left; C: Moving forward-right; D: Moving forward-left,C,
2,internet/6hWB001GSu8/video-scene-00028.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Orbiting counterclockwise; D: Orbiting clockwise,C,
3,internet/73lQgsAKYSc/video-scene-00022.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,C,
2,internet/7DZmTaRDuzM/video-scene-00004.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,D,0-3
3,internet/7DZmTaRDuzM/video-scene-00032.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-left; B: Moving forward-left; C: Moving backward-right; D: Moving forward-right,A,
3,internet/7cD3EPH2_jU/video-scene-00058.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,A,0-4
3,internet/87iHlP0YkPM/video-scene-00045.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,A,
3,internet/8KNYC9Kw4W0/video-scene-00049.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving right; D: Moving left,B,0-2
3,internet/8mb0h_b182g/video-scene-00013.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Moving left; C: Basically unchange; D: Moving right,C,
3,internet/96NMjhVBaxc/video-scene-00006.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Basically unchange; B: Moving upward; C: Moving right; D: Moving left,A,
3,internet/96NMjhVBaxc/video-scene-00012.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving backward-left; C: Moving backward-right; D: Moving forward-left,A,
3,internet/96NMjhVBaxc/video-scene-00019.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,B,
3,internet/96NMjhVBaxc/video-scene-00027.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,B,0-2
3,internet/9pJLAEuk1_I/video-scene-00022.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving forward-left; C: Moving upward; D: Moving downward,C,
2,internet/9w9OIBfjg3E/video-scene-00050.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,B,
2,internet/A9PaEE5Q3xk/video-scene-00020.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Moving backward-right; C: Moving downward; D: Moving backward-left,C,
3,internet/AN2SZ4H4Qzk/video-scene-00048.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving downward; B: Turning backward-right; C: Turning backward-left; D: Moving upward,A,
3,internet/AN2SZ4H4Qzk/video-scene-00054.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving backward; C: Moving right; D: Moving forward,D,
2,internet/AcRFY9WFIpY/video-scene-00010.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-left; B: Moving backward-right; C: Moving forward-right; D: Moving forward-left,A,
2,internet/AcRFY9WFIpY/video-scene-00044.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Moving backward; C: Moving forward; D: Moving downward,A,
3,internet/AcRFY9WFIpY/video-scene-00206.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-right; B: Moving forward-left; C: Moving forward-right; D: Moving backward-left,D,
3,internet/ArXf6X_0-ww/video-scene-00048.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward and turning right; B: Moving forward and turning left; C: Moving forward and turning right; D: Moving backward and turning left,D,
2,internet/B-tEt_VaN0U/video-scene-00010.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-left; B: Moving backward-right; C: Moving forward-right; D: Moving forward-left,C,
3,internet/B-tEt_VaN0U/video-scene-00031.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,A,6-12
3,internet/BB3zcRQJfXE/video-scene-00020.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving right; C: Moving left; D: Moving forward,D,
2,internet/BGB5FY0Zklk/video-scene-00015.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Moving backward-right; C: Moving forward-right; D: Moving backward-left,C,
3,internet/BJ5YQFt9ab0/video-scene-00008.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving downward; B: Moving upward; C: Moving forward-left; D: Moving forward-right,A,
3,internet/BTMO_goJ9sQ/video-scene-00063.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,B,
3,internet/BVJQmEcrik0/video-scene-00006.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving downward; B: Moving forward; C: Moving backward; D: Moving upward,D,
3,internet/BYUSpyONQ0A/video-scene-00021.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-right; B: Moving forward-right; C: Moving backward-left; D: Moving forward-left,A,
2,internet/BahFh-GTZkM/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting clockwise; B: Moving backward-right; C: Moving backward-left; D: Orbiting counterclockwise,A,0-4
2,internet/BahFh-GTZkM/video-scene-00021.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Orbiting counterclockwise; C: Moving forward; D: Orbiting clockwise,B,
2,internet/CHm_afjE_2k/video-scene-00032.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,B,
3,internet/CNcbBZ1cEuE/video-scene-00047.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,C,
3,internet/CVIymFTuQoM/video-scene-00020.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,A,
3,internet/CbA1HWWgTbY/video-scene-00014.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving downward; B: Moving forward; C: Moving upward; D: Basically unchange,C,
3,internet/CbA1HWWgTbY/video-scene-00025.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Moving backward-left; C: Moving backward-right; D: Moving forward-right,A,
3,internet/CbA1HWWgTbY/video-scene-00026.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving downward; B: Orbiting counterclockwise; C: Orbiting clockwise; D: Moving upward,C,
3,internet/Chz43YiO5dY/video-scene-00025.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,C,
2,internet/Chz43YiO5dY/video-scene-00069.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting clockwise; B: Moving backward; C: Orbiting counterclockwise; D: Moving left,C,
3,internet/D1m2Z4_-XA4/video-scene-00009.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-right; B: Moving forward-left; C: Moving forward-right; D: Moving backward-left,A,
3,internet/D1m2Z4_-XA4/video-scene-00010.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,B,
3,internet/D1m2Z4_-XA4/video-scene-00013.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving left; D: Moving backward,A,
3,internet/D1m2Z4_-XA4/video-scene-00025.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving backward; D: Moving forward,C,
3,internet/DJqkat66RG4/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving backward-left; C: Moving backward-right; D: Moving forward-left,D,
3,internet/DJqkat66RG4/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Orbiting clockwise; C: Moving downward; D: Orbiting counterclockwise,A,
3,internet/DJqkat66RG4/video-scene-00021.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,B,3-5
2,internet/DnLc7wp-l6M/video-scene-00027.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Basically unchange; B: Orbiting clockwise; C: Orbiting counterclockwise; D: Moving upward,B,3-5
3,internet/EGgsdaCt3wI/video-scene-00077.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward and turning right; B: Moving backward and turning left; C: Moving forward and turning left; D: Moving forward and turning right,A,1-4
2,internet/ES9KIAzjvBE/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-right; B: Orbiting counterclockwise; C: Moving left; D: Orbiting clockwise,B,0-8
3,internet/ES9KIAzjvBE/video-scene-00015.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,C,
3,internet/Ed_-q5b-5KE/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting counterclockwise; B: Moving forward-left; C: Orbiting clockwise; D: Moving forward-right,A,
3,internet/Ed_-q5b-5KE/video-scene-00004.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,B,
2,internet/Ed_-q5b-5KE/video-scene-00017.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving downward; B: Orbiting counterclockwise; C: Orbiting clockwise; D: Moving forward,B,
2,internet/Ed_-q5b-5KE/video-scene-00025.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Orbiting counterclockwise; D: Orbiting clockwise,D,
3,internet/EmKR8MQammg/video-scene-00016.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving right; C: Moving backward; D: Moving left,C,
2,internet/EmKR8MQammg/video-scene-00062.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Moving backward-left; C: Moving backward-right; D: Moving forward-right,C,2-5
2,internet/EmKR8MQammg/video-scene-00073.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Moving forward; C: Moving backward; D: Moving downward,A,
3,internet/EmKR8MQammg/video-scene-00090.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving left; D: Moving backward,A,
2,internet/EmKR8MQammg/video-scene-00094.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving left; C: Moving right; D: Moving backward,C,
3,internet/EsA9VSYO8DU/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-left; B: Moving backward-right; C: Moving forward-left; D: Moving forward-right,B,
2,internet/EsA9VSYO8DU/video-scene-00018.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Moving downward; C: Moving forward; D: Moving backward,A,
3,internet/F9xgki5p26k/video-scene-00056.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,D,
3,internet/F9xgki5p26k/video-scene-00059.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,C,
2,internet/FHlxw98mcec/video-scene-00010.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Rotating clockwise; C: Moving left; D: Rotating counterclockwise,B,
2,internet/FM-CE4D8NJM/video-scene-00046.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving right; C: Moving forward; D: Moving left,D,
3,internet/FQIx05cdYCM/video-scene-00005.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,C,
3,internet/FQIx05cdYCM/video-scene-00017.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving left; D: Moving backward,C,
3,internet/FQIx05cdYCM/video-scene-00039.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving backward-right; C: Moving forward-left; D: Moving backward-left,A,
3,internet/FQIx05cdYCM/video-scene-00052.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward and turning left; B: Moving backward and turning left; C: Moving forward and turning right; D: Moving backward and turning right,A,
3,internet/FopBvLLXKZ0/video-scene-00016.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-right; B: Moving forward-left; C: Moving backward-left; D: Moving forward-right,A,0-3
3,internet/FopBvLLXKZ0/video-scene-00043.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving right; C: Moving forward; D: Moving left,C,
3,internet/FopBvLLXKZ0/video-scene-00047.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-left; B: Moving forward-left; C: Moving forward-right; D: Moving backward-right,D,0-1
3,internet/FopBvLLXKZ0/video-scene-00054.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,C,0-1
2,internet/HzJ7Nvwz1e8/video-scene-00030.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting clockwise; B: Orbiting counterclockwise; C: Turning forward-left; D: Turning forward-right,A,0-8
3,internet/J7RW7WNzh0w/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving left; C: Moving right; D: Moving backward,A,
3,internet/J7RW7WNzh0w/video-scene-00004.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving right; C: Moving backward; D: Moving left,A,
3,internet/JIdfUEI4si8/video-scene-00015.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving forward-left; C: Moving backward-right; D: Moving backward-left,B,
3,internet/KB3KMUw54Hc/video-scene-00006.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving backward; C: Moving right; D: Moving forward,C,0-3
3,internet/KB3KMUw54Hc/video-scene-00011.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Moving forward-left; C: Moving downward; D: Moving forward-right,A,
3,internet/KB3KMUw54Hc/video-scene-00040.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving downward; C: Moving upward; D: Moving backward,B,
2,internet/KB3KMUw54Hc/video-scene-00044.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward and turning right; B: Moving backward and turning left; C: Moving forward and turning left; D: Moving backward and turning right,C,
3,internet/KB3KMUw54Hc/video-scene-00073.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward and turning left; B: Moving backward and turning left; C: Moving backward and turning right; D: Moving forward and turning right,A,1-4
3,internet/KB3KMUw54Hc/video-scene-00094.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward and turning left; B: Moving forward and turning right; C: Moving forward and turning left; D: Moving backward and turning right,C,
3,internet/KB3KMUw54Hc/video-scene-00095.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,A,2-5
3,internet/KB3KMUw54Hc/video-scene-00117.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving right; C: Moving left; D: Moving forward,D,2-5
3,internet/KCox-nsChqg/video-scene-00028.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving right; C: Moving left; D: Moving forward,D,
2,internet/KMxH3Dc89ts/video-scene-00015.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Orbiting clockwise; D: Orbiting counterclockwise,D,
2,internet/KUaYWNfkOio/video-scene-00095.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,D,
3,internet/Kui5PpD9ITE/video-scene-00116.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving left; C: Moving right; D: Moving forward,D,0-2
3,internet/L-L23XzHX9w/video-scene-00054.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward and turning right; B: Moving forward and turning left; C: Moving backward and turning left; D: Moving backward and turning right,A,
2,internet/L-L23XzHX9w/video-scene-00111.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting counterclockwise; B: Basically unchange; C: Turning forward-left; D: Orbiting clockwise,D,
3,internet/L-L23XzHX9w/video-scene-00119.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,D,
3,internet/L-L23XzHX9w/video-scene-00178.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Moving forward-right; C: Moving backward-right; D: Moving backward-left,A,
2,internet/L85T-a6JUUw/video-scene-00011.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Turning forward-right; B: Turning backward-left; C: Orbiting counterclockwise; D: Orbiting clockwise,D,3-10
2,internet/L85T-a6JUUw/video-scene-00019.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,A,
2,internet/L85T-a6JUUw/video-scene-00021.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Moving backward-right; C: Moving backward-left; D: Moving forward-right,B,
3,internet/L85T-a6JUUw/video-scene-00031.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving downward; B: Turning forward-left; C: Turning forward-right; D: Moving upward,D,
3,internet/LHkYq4MhhAU/video-scene-00009.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,A,
3,internet/LHkYq4MhhAU/video-scene-00040.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward and turning left; B: Moving backward and turning left; C: Moving backward and turning right; D: Moving forward and turning right,B,
3,internet/LMEUYq17150/video-scene-00011.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting clockwise; B: Turning forward-right; C: Orbiting counterclockwise; D: Turning forward-left,A,
3,internet/LS-f2jmR5F4/video-scene-00021.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving right; C: Moving left; D: Moving backward,D,
3,internet/LeaRA-9yMNY/video-scene-00010.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Moving forward-right; C: Moving backward-right; D: Moving backward-left,A,2-4
3,internet/LeaRA-9yMNY/video-scene-00035.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,C,2-4
3,internet/LeaRA-9yMNY/video-scene-00131.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,C,2-5
3,internet/LeaRA-9yMNY/video-scene-00160.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving left; D: Moving backward,B,
3,internet/LfUqbCL2OKk/video-scene-00008.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving downward; B: Moving upward; C: Turning forward-left; D: Basically unchange,B,0-3
3,internet/M6aVlqbiZrE/video-scene-00021.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving backward; D: Moving forward,D,
3,internet/M6aVlqbiZrE/video-scene-00050.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Moving forward-right; C: Moving backward-right; D: Moving backward-left,A,0-2
2,internet/MKmYwlTZo0E/video-scene-00034.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,C,
3,internet/MQugcNLFI9k/video-scene-00054.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,A,
2,internet/MQugcNLFI9k/video-scene-00192.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving right; C: Moving forward; D: Moving left,A,
3,internet/MbZzcu8-SbI/video-scene-00003.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,B,0-5
3,internet/MnvpmaUfGNw/video-scene-00024.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving left; D: Moving backward,D,1-3
2,internet/NQ9FYgIoG3I/video-scene-00035.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving right; C: Moving left; D: Moving forward,A,
3,internet/NzfC0j8GU_w/video-scene-00016.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-right; B: Moving forward-right; C: Moving forward-left; D: Moving backward-left,B,
3,internet/NzfC0j8GU_w/video-scene-00029.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,C,
3,internet/NzfC0j8GU_w/video-scene-00035.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,C,
3,internet/O47JUErbk34/video-scene-00048.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving backward; C: Moving right; D: Moving forward,A,
3,internet/O8HHE92h3Vc/video-scene-00008.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,A,
3,internet/O8HHE92h3Vc/video-scene-00022.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,C,0-1
3,internet/OCKNzAGQ86U/video-scene-00025.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Moving downward; C: Turning forward-left; D: Turning backward-left,A,
3,internet/OCKNzAGQ86U/video-scene-00037.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,A,
2,internet/OWwdUUUScyA/video-scene-00008.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,A,
3,internet/Oa4QcdNsqUE/video-scene-00030.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward and turning left; B: Moving backward and turning right; C: Moving forward and turning right; D: Moving forward and turning left,B,
2,internet/PELrYd64L_8/video-scene-00069.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,C,
2,internet/PELrYd64L_8/video-scene-00077.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving backward; C: Moving right; D: Moving forward,B,
2,internet/PELrYd64L_8/video-scene-00183.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,C,
3,internet/Q2_G7D_Jgvc/video-scene-00041.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving backward; D: Moving forward,D,
3,internet/Qi2rkY_WJUg/video-scene-00009.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving backward; C: Moving forward; D: Moving right,D,
3,internet/Qi2rkY_WJUg/video-scene-00011.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,B,
2,internet/Qi2rkY_WJUg/video-scene-00050.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving right; C: Moving left; D: Moving backward,A,
3,internet/QnYXDbHKiE4/video-scene-00043.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving left; D: Moving backward,D,
2,internet/QzJtMyM3HNU/video-scene-00015.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,C,
3,internet/R2z3M8hdJrk/video-scene-00006.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-left; B: Moving forward-right; C: Moving forward-left; D: Moving backward-right,D,
3,internet/R2z3M8hdJrk/video-scene-00014.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,C,
3,internet/R2z3M8hdJrk/video-scene-00030.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward and turning right; B: Moving backward and turning left; C: Moving backward and turning right; D: Moving forward and turning left,A,
3,internet/R2z3M8hdJrk/video-scene-00036.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving right; C: Moving forward; D: Moving left,C,
3,internet/RUvgK_sE_e8/video-scene-00023.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Orbiting counterclockwise; C: Orbiting clockwise; D: Moving backward,C,
3,internet/RUvgK_sE_e8/video-scene-00048.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving right; C: Moving forward; D: Moving left,A,
3,internet/RUvgK_sE_e8/video-scene-00056.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving right; C: Moving backward; D: Moving left,C,
3,internet/RXt-hSbF02k/video-scene-00003.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving right; C: Moving left; D: Moving forward,B,
3,internet/RXt-hSbF02k/video-scene-00081.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,A,"0-5,cam reverse forward"
3,internet/Rbf1_xnVN8k/video-scene-00045.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving backward; D: Moving forward,D,
3,internet/Rg5D0yMWWEM/video-scene-00032.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,A,
3,internet/S1tMvtJvBTc/video-scene-00008.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,B,
3,internet/SX2vYvhMAqc/video-scene-00019.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving backward-right; C: Moving forward-left; D: Moving backward-left,A,
3,internet/SbozyYNrWmc/video-scene-00020.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Orbiting counterclockwise; C: Moving forward-left; D: Orbiting clockwise,D,
2,internet/Tub_j2foJjo/video-scene-00008.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting counterclockwise; B: Turning backward-right; C: Orbiting clockwise; D: Turning backward-left,C,
3,internet/Tub_j2foJjo/video-scene-00022.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,C,
3,internet/Tub_j2foJjo/video-scene-00024.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,C,
3,internet/Tub_j2foJjo/video-scene-00044.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,C,0-4
3,internet/TzfXDnHifeM/video-scene-00030.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-right; B: Moving forward-left; C: Moving forward-right; D: Moving backward-left,C,2-5
3,internet/TzfXDnHifeM/video-scene-00081.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving right; D: Moving left,A,
3,internet/TzxTr3o3qzY/video-scene-00015.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,A,1-5
3,internet/UKCOdrLG3Z8/video-scene-00017.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Basically unchange; C: Moving right; D: Moving left,B,0-3
3,internet/VR7uvOTdWLw/video-scene-00068.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,A,
3,internet/VoACKEC8Rvo/video-scene-00022.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving right; D: Moving left,B,
3,internet/WhodXqmJuvA/video-scene-00089.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving left; C: Moving right; D: Moving backward,D,1-4
2,internet/WhodXqmJuvA/video-scene-00120.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Basically unchange; B: Moving upward; C: Moving downward; D: Moving right,C,
2,internet/XDuyG5ngON4/video-scene-00050.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving downward; B: Orbiting counterclockwise; C: Orbiting clockwise; D: Moving right,C,
3,internet/X_MqKoj_sk8/video-scene-00063.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-right; B: Moving forward-right; C: Moving forward-left; D: Moving backward-left,A,0-3
3,internet/ZHq2OW6gjZM/video-scene-00023.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving right; C: Moving forward; D: Moving left,C,
3,internet/_ZYHlc2Niaw/video-scene-00052.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-right; B: Moving forward-left; C: Moving backward-left; D: Moving forward-right,B,
2,internet/_ZYHlc2Niaw/video-scene-00075.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,B,
3,internet/alBBpADUWMM/video-scene-00024.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Moving backward-right; C: Moving backward-left; D: Moving forward-right,C,
3,internet/alBBpADUWMM/video-scene-00041.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Moving forward-right; C: Moving forward-left; D: Moving downward,D,
2,internet/b-ZGTD0NihE/video-scene-00012.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Moving downward; C: Moving upward; D: Moving forward-right,B,
3,internet/b-ZGTD0NihE/video-scene-00026.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving left; C: Moving backward; D: Moving forward,D,
2,internet/chxX9uucndY/video-scene-00028.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,B,
2,internet/chxX9uucndY/video-scene-00047.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Basically unchange; C: Moving downward; D: Moving backward-right,A,
3,internet/chxX9uucndY/video-scene-00063.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving right; C: Moving left; D: Moving backward,D,
2,internet/chxX9uucndY/video-scene-00074.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving left; C: Moving right; D: Moving forward,A,
2,internet/dyFcxEwbyG8/video-scene-00035.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Orbiting counterclockwise; C: Turning forward-left; D: Orbiting clockwise,B,
2,internet/eI4W2hH-JmQ/video-scene-00006.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving left; C: Moving right; D: Moving backward,D,
3,internet/ebpkUvyCXXo/video-scene-00006.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving backward; C: Moving forward; D: Moving left,B,
3,internet/ex_On2pyFFY/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving forward-left; C: Moving backward-left; D: Moving backward-right,A,
2,internet/fSr_nfsdlRg/video-scene-00031.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving downward; B: Turning forward-right; C: Moving upward; D: Turning forward-left,C,
2,internet/fSr_nfsdlRg/video-scene-00071.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting clockwise; B: Turning forward-right; C: Basically unchange; D: Orbiting counterclockwise,D,
2,internet/fXCfGwUY52g/video-scene-00077.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Moving downward; C: Moving backward-left; D: Moving backward-right,A,
3,internet/fgeBZVy5Nfg/video-scene-00032.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving backward; D: Moving right,B,
3,internet/g5bRCqlI0XE/video-scene-00019.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving left; D: Moving backward,B,
3,internet/gbH9nFjHFwI/video-scene-00047.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Basically unchange; C: Moving right; D: Moving upward,B,
2,internet/ghbSF-H2170/video-scene-00036.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving forward; D: Moving backward,C,
3,internet/h9yDvzBrSC4/video-scene-00147.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Moving backward-left; C: Moving forward-right; D: Moving backward-right,C,0-1
3,internet/hGcZmj7fK6c/video-scene-00034.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Orbiting clockwise; C: Basically unchange; D: Moving downward,A,
3,internet/hGcZmj7fK6c/video-scene-00040.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving right; C: Moving forward; D: Moving left,A,
3,internet/hUu2sh7CsIc/video-scene-00015.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,B,
2,internet/hUu2sh7CsIc/video-scene-00032.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,B,
3,internet/hUu2sh7CsIc/video-scene-00052.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving backward; D: Moving forward,C,
3,internet/hUu2sh7CsIc/video-scene-00055.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Moving backward-left; C: Moving backward-right; D: Moving forward-right,B,0-2
3,internet/hZyzCFdTC5s/video-scene-00060.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,B,0-3
3,internet/iAPFIUDB1W0/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,A,
3,internet/iBcdMHwRy4M/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving left; C: Moving right; D: Moving forward,A,0-2
2,internet/iBcdMHwRy4M/video-scene-00041.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,B,0-2
2,internet/ioQ1Rp6Rt3Y/video-scene-00017.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Basically unchange; C: Moving upward; D: Moving downward,D,
3,internet/ioQ1Rp6Rt3Y/video-scene-00049.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving right; C: Moving backward; D: Moving left,A,
3,internet/j1R6DL9J__s/video-scene-00097.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,D,
3,internet/j1R6DL9J__s/video-scene-00109.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-left; B: Moving forward-left; C: Moving backward-right; D: Moving forward-right,A,
3,internet/jobrPfuFBC0/video-scene-00042.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving left; C: Moving forward; D: Moving right,A,
2,internet/knSQ60KFiMk/video-scene-00025.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving backward; D: Moving forward,B,
3,internet/luJZFHO6jh4/video-scene-00015.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving backward; D: Moving forward,B,
2,internet/mlUKWRnYzR4/video-scene-00039.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,C,
3,internet/nN36Wysa2pA/video-scene-00005.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,B,
3,internet/nVTrJnvpD7Q/video-scene-00031.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving downward; B: Turning forward-right; C: Turning backward-left; D: Moving upward,D,
3,internet/neQEUASHiXo/video-scene-00033.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,C,
2,internet/nfycEiFGpLU/video-scene-00002.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-right; B: Moving forward-left; C: Moving backward-left; D: Moving forward-right,D,
3,internet/nlw7L7gYnlA/video-scene-00025.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving backward-right; C: Moving forward-left; D: Moving backward-left,D,6-9
3,internet/ofcSLZ0i4Zs/video-scene-00071.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving downward; B: Moving forward; C: Moving upward; D: Moving backward,C,
3,internet/om_4BDabO3g/video-scene-00009.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Rotating counterclockwise; B: Rotating clockwise; C: Moving right; D: Moving left,B,
3,internet/ov_o2Gxbt08/video-scene-00028.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving backward; C: Moving right; D: Moving forward,D,
3,internet/plzoYbhvNo4/video-scene-00056.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving downward; B: Moving upward; C: Moving backward; D: Moving forward,B,
3,internet/plzoYbhvNo4/video-scene-00084.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving right; C: Moving forward; D: Moving left,C,
3,internet/q3Yr2nJVq6o/video-scene-00023.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving left; D: Moving backward,D,
2,internet/qiGhCbwdS04/video-scene-00071.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,A,
2,internet/qiGhCbwdS04/video-scene-00076.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward and turning left; B: Moving backward and turning right; C: Moving forward and turning right; D: Moving forward and turning left,C,0-4
3,internet/rUZ8okSnE4k/video-scene-00002.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,A,
3,internet/reSD-13YTSw/video-scene-00077.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Turning forward-right; B: Turning forward-left; C: Orbiting counterclockwise; D: Orbiting clockwise,C,
2,internet/reSD-13YTSw/video-scene-00078.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting clockwise; B: Moving backward-left; C: Orbiting counterclockwise; D: Moving backward-right,C,
2,internet/t0SkV41lK0c/video-scene-00014.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,A,
3,internet/t7RU8wifW2k/video-scene-00016.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving upward; C: Moving downward; D: Moving backward,B,
3,internet/tYDVKFeLtyk/video-scene-00063.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,A,
3,internet/u35WIs62R2M/video-scene-00055.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving backward-left; C: Moving backward-right; D: Moving forward-left,A,
3,internet/u35WIs62R2M/video-scene-00075.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving right; D: Moving left,B,
3,internet/u35WIs62R2M/video-scene-00076.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving left; D: Moving backward,B,
3,internet/u35WIs62R2M/video-scene-00078.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving left; C: Moving right; D: Moving backward,A,
3,internet/u35WIs62R2M/video-scene-00159.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,C,
3,internet/uaKXU_zuRGM/video-scene-00005.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Moving backward-left; C: Moving forward-right; D: Moving backward-right,B,
3,internet/v1d_QQgrwLA/video-scene-00025.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,A,
3,internet/v1d_QQgrwLA/video-scene-00030.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving forward-left; C: Moving backward-right; D: Moving backward-left,C,
2,internet/wx-37uR_imo/video-scene-00025.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving forward; C: Moving left; D: Moving right,B,
3,internet/y0TQxsqxWJk/video-scene-00036.mp4,0.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-left; B: Moving forward-right; C: Moving downward; D: Moving upward,D,
3,internet/yjQo36p_rqU/video-scene-00047.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,D,
3,internet/zqEpG0eT1LM/video-scene-00019.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,A,
2,internet/0kNwUIP85a8/video-scene-00001.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving right; C: Moving backward; D: Moving left,A,
2,internet/0kNwUIP85a8/video-scene-00005.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving left; C: Moving forward; D: Moving backward,C,
3,internet/0kNwUIP85a8/video-scene-00009.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward and turning left; B: Moving backward and turning right; C: Moving backward and turning left; D: Moving forward and turning right,D,0-2
3,internet/0kNwUIP85a8/video-scene-00010.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,A,
3,internet/BB3zcRQJfXE/video-scene-00018.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Moving forward-left; C: Moving downward; D: Moving forward-right,C,
3,internet/LHkYq4MhhAU/video-scene-00004.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward and turning left; B: Moving forward and turning left; C: Moving forward and turning right; D: Moving backward and turning right,D,
3,internet/LHkYq4MhhAU/video-scene-00016.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Moving backward-right; C: Moving backward-left; D: Moving forward-right,B,
3,internet/LHkYq4MhhAU/video-scene-00019.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,C,2-4
3,internet/LHkYq4MhhAU/video-scene-00023.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-right; B: Moving forward-right; C: Moving backward-left; D: Moving forward-left,B,
3,internet/LHkYq4MhhAU/video-scene-00024.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-right; B: Moving forward-left; C: Moving backward-left; D: Moving forward-right,B,0-2
3,internet/LHkYq4MhhAU/video-scene-00027.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-right; B: Moving backward-left; C: Moving forward-right; D: Moving forward-left,D,
3,internet/LHkYq4MhhAU/video-scene-00037.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving left; C: Moving right; D: Moving backward,D,
3,internet/ZieW_OSkuiQ/video-scene-00007.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Moving backward-right; C: Moving forward-right; D: Moving backward-left,C,
3,internet/ZieW_OSkuiQ/video-scene-00020.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving backward-left; C: Moving backward-right; D: Moving forward-left,C,
3,internet/ZieW_OSkuiQ/video-scene-00023.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving backward-right; C: Moving backward-left; D: Moving forward-left,B,
3,internet/ZieW_OSkuiQ/video-scene-00025.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward and turning left; B: Moving forward and turning left; C: Moving backward and turning right; D: Moving forward and turning right,B,
3,internet/ZieW_OSkuiQ/video-scene-00027.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving downward; B: Moving upward; C: Moving forward; D: Moving backward,B,0-3
3,internet/ZieW_OSkuiQ/video-scene-00044.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving right; C: Moving backward; D: Moving left,C,
3,internet/ZieW_OSkuiQ/video-scene-00047.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving backward-left; C: Moving forward-left; D: Moving backward-right,B,
3,internet/ZieW_OSkuiQ/video-scene-00066.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-left; B: Moving forward-left; C: Moving backward-right; D: Moving forward-right,B,
3,internet/ZieW_OSkuiQ/video-scene-00067.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Moving backward-left; C: Moving forward-right; D: Moving backward-right,C,
3,internet/ZieW_OSkuiQ/video-scene-00081.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward and turning left; B: Moving forward and turning left; C: Moving forward and turning right; D: Moving backward and turning right,D,
3,internet/a3Mc4PLoiNg/video-scene-00060.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Moving right; C: Moving left; D: Basically unchange,D,
3,internet/eOGZ9GJU52I/video-scene-00045.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward and turning left; B: Moving backward and turning left; C: Moving backward and turning right; D: Moving forward and turning right,C,0-10
3,internet/ebpkUvyCXXo/video-scene-00021.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Turning forward-right; B: Orbiting clockwise; C: Turning forward-left; D: Orbiting counterclockwise,D,0-2
3,internet/ssKf_Qo7VVk/video-scene-00000.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Moving right; D: Moving left,C,
3,internet/ssKf_Qo7VVk/video-scene-00058.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving backward-left; C: Moving forward-left; D: Moving backward-right,D,
3,internet/ssKf_Qo7VVk/video-scene-00104.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward and turning left; B: Moving forward and turning right; C: Moving backward and turning right; D: Moving forward and turning left,D,cam reverse left
3,internet/ssKf_Qo7VVk/video-scene-00105.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-right; B: Moving backward-left; C: Moving forward-right; D: Moving forward-left,C,
3,internet/4oXDmqUl6YU/4oXDmqUl6YU-1.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving left; C: Moving backward; D: Moving right,A,
3,internet/6XMuUVw7TOM/6XMuUVw7TOM-1.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving right; C: Moving backward; D: Moving left,C,
3,internet/6XMuUVw7TOM/6XMuUVw7TOM-2.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Moving backward-left; C: Moving backward-right; D: Moving forward-right,A,
3,internet/6XMuUVw7TOM/6XMuUVw7TOM-4.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving right; C: Moving forward; D: Moving left,A,blue car
3,internet/6XMuUVw7TOM/6XMuUVw7TOM-5.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Basically unchange; B: Moving upward; C: Moving right; D: Moving left,A,
3,internet/6XMuUVw7TOM/6XMuUVw7TOM-6.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Moving upward; D: Basically unchange,D,
3,internet/6XMuUVw7TOM/6XMuUVw7TOM-7.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward and turning right; B: Moving forward and turning right; C: Moving backward and turning left; D: Moving forward and turning left,A,
3,internet/6XMuUVw7TOM/6XMuUVw7TOM-8.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-right; B: Moving backward-left; C: Moving forward-left; D: Moving forward-right,D,black car
3,internet/6XMuUVw7TOM/6XMuUVw7TOM-9.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-left; B: Moving forward-right; C: Moving forward-left; D: Moving backward-right,D,black car
3,internet/AlJhMpk_AXo/AlJhMpk_AXo-1.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving forward-left; C: Moving backward-left; D: Moving backward-right,D,0-4
3,internet/AlJhMpk_AXo/AlJhMpk_AXo-2.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-right; B: Moving forward-left; C: Moving backward-left; D: Moving forward-right,A,0-3
3,internet/AlJhMpk_AXo/AlJhMpk_AXo-3.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving downward; C: Moving upward; D: Turning forward-left,B,
3,internet/AlJhMpk_AXo/AlJhMpk_AXo-4.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-left; B: Moving backward-right; C: Moving forward-left; D: Moving forward-right,D,
3,internet/AlJhMpk_AXo/AlJhMpk_AXo-5.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-left; B: Moving forward-right; C: Moving backward-right; D: Moving backward-left,D,0-2
3,internet/FKrVK8EmasM/FKrVK8EmasM-1.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving upward; C: Basically unchange; D: Moving right,C,
3,internet/PUodFjt01CY/PUodFjt01CY-1.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,A,
3,internet/PUodFjt01CY/PUodFjt01CY-2.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,C,
3,internet/PUodFjt01CY/PUodFjt01CY-3.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,C,
3,internet/Sv8BzW01x-Y/Sv8BzW01x-Y-1.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward and turning right; B: Moving forward and turning left; C: Moving forward and turning right; D: Moving backward and turning left,C,
3,internet/Sv8BzW01x-Y/Sv8BzW01x-Y-2.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward and turning right; B: Moving backward and turning left; C: Moving backward and turning right; D: Moving forward and turning left,A,
3,internet/Sv8BzW01x-Y/Sv8BzW01x-Y-3.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward and turning left; B: Moving forward and turning right; C: Moving backward and turning right; D: Moving backward and turning left,A,
3,internet/Sv8BzW01x-Y/Sv8BzW01x-Y-4.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward and turning left; B: Moving forward and turning left; C: Moving backward and turning right; D: Moving forward and turning right,D,
3,internet/Sv8BzW01x-Y/Sv8BzW01x-Y-5.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward and turning left; B: Moving forward and turning right; C: Moving backward and turning right; D: Moving backward and turning left,B,
3,internet/Sv8BzW01x-Y/Sv8BzW01x-Y-6.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Basically unchange; C: Moving upward; D: Moving left,B,
3,internet/Sv8BzW01x-Y/Sv8BzW01x-Y-7.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving backward-right; C: Moving backward-left; D: Moving forward-left,D,
3,internet/Sv8BzW01x-Y/Sv8BzW01x-Y-8.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting clockwise; B: Orbiting counterclockwise; C: Moving downward; D: Moving upward,A,
3,internet/Sv8BzW01x-Y/Sv8BzW01x-Y-9.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Orbiting clockwise; B: Turning backward-right; C: Orbiting counterclockwise; D: Turning backward-left,A,0-2
3,internet/TikSave_7463225157532863766/TikSave_7463225157532863766-1.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-left; B: Moving forward-left; C: Moving backward-right; D: Moving forward-right,B,
3,internet/XbgV7cTrf_4/XbgV7cTrf_4-1.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward and turning left; B: Moving forward and turning right; C: Moving backward and turning right; D: Moving backward and turning left,A,
3,internet/XbgV7cTrf_4/XbgV7cTrf_4-2.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving backward; C: Moving left; D: Moving right,A,
3,internet/ctEksNz7tqg/ctEksNz7tqg-1.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-right; B: Moving backward-left; C: Moving forward-right; D: Moving forward-left,D,
3,internet/ctEksNz7tqg/ctEksNz7tqg-2.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-right; B: Moving forward-left; C: Moving backward-left; D: Moving forward-right,B,cam reverse right
3,internet/ctEksNz7tqg/ctEksNz7tqg-3.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Basically unchange; B: Moving upward; C: Moving left; D: Moving right,A,
3,internet/n_GkpkanNJI/n_GkpkanNJI-1.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-left; B: Moving forward-left; C: Moving forward-right; D: Moving backward-right,C,2-4
3,internet/n_GkpkanNJI/n_GkpkanNJI-10.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving forward; C: Moving right; D: Moving backward,D,
3,internet/n_GkpkanNJI/n_GkpkanNJI-11.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving right; C: Moving left; D: Moving forward,D,
3,internet/n_GkpkanNJI/n_GkpkanNJI-12.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving forward-left; C: Moving backward-right; D: Moving backward-left,B,
3,internet/n_GkpkanNJI/n_GkpkanNJI-13.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward; B: Moving left; C: Moving right; D: Moving forward,A,
3,internet/n_GkpkanNJI/n_GkpkanNJI-14.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving backward; C: Moving left; D: Moving forward,D,
3,internet/n_GkpkanNJI/n_GkpkanNJI-15.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-left; B: Moving forward-left; C: Moving forward-right; D: Moving backward-right,D,
3,internet/n_GkpkanNJI/n_GkpkanNJI-16.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-right; B: Moving forward-right; C: Moving backward-left; D: Moving forward-left,C,
3,internet/n_GkpkanNJI/n_GkpkanNJI-2.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-right; B: Moving forward-right; C: Moving forward-left; D: Moving backward-left,A,
3,internet/n_GkpkanNJI/n_GkpkanNJI-3.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Rotating clockwise; C: Rotating counterclockwise; D: Moving right,C,
3,internet/n_GkpkanNJI/n_GkpkanNJI-4.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving left; B: Moving right; C: Rotating counterclockwise; D: Rotating clockwise,C,
3,internet/n_GkpkanNJI/n_GkpkanNJI-5.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Rotating clockwise; B: Moving right; C: Rotating counterclockwise; D: Moving left,C,
3,internet/n_GkpkanNJI/n_GkpkanNJI-6.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward; B: Moving right; C: Moving backward; D: Moving left,A,0-1
3,internet/n_GkpkanNJI/n_GkpkanNJI-7.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving backward-left; B: Moving forward-left; C: Moving forward-right; D: Moving backward-right,C,cam reverse left forward diag
3,internet/n_GkpkanNJI/n_GkpkanNJI-8.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving right; B: Moving forward; C: Moving backward; D: Moving left,B,cam up down
3,internet/n_GkpkanNJI/n_GkpkanNJI-9.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward and turning right; B: Moving backward and turning right; C: Moving backward and turning left; D: Moving forward and turning left,D,
3,internet/zjYBVSvBvcM/zjYBVSvBvcM-1.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward and turning right; B: Moving backward and turning left; C: Moving backward and turning right; D: Moving forward and turning left,A,
3,internet/zjYBVSvBvcM/zjYBVSvBvcM-2.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving forward-right; B: Moving backward-right; C: Moving forward-left; D: Moving backward-left,A,
3,internet/zjYBVSvBvcM/zjYBVSvBvcM-3.mp4,1.0,"In this video clip, relative to its starting orientation and location, how is the observer's location moving?",A: Moving upward; B: Moving backward; C: Moving forward; D: Moving downward,A,
4,CameraBench/-2uIa-XMJC0.5.3.mp4,0.0,How does the distance between the observer and the character change in this video?,A: Get farther; B: Get closer; C: Remain unchanged; D: Cannot be determined,A,
4,CameraBench/0UthxdAH0ks.3.0.mp4,1.0,How does the distance between the observer and the character change in this video?,A: Remain unchanged; B: Cannot be determined; C: Get closer; D: Get farther,C,
4,CameraBench/190.2.2.mp4,1.0,How does the distance between the observer and the car change in this video?,A: Cannot be determined; B: Get closer; C: Get farther; D: Remain unchanged,B,
4,CameraBench/190.2.9.mp4,1.0,How does the distance between the observer and the character change in this video?,A: Remain unchanged; B: Get farther; C: Cannot be determined; D: Get closer,A,
4,CameraBench/4PcpGxihPac.4.0.mp4,1.0,How does the distance between the observer and the motorbike change in this video?,A: Get closer; B: Get farther; C: Remain unchanged; D: Cannot be determined,B,
4,CameraBench/5eDQ2SSsmEk.2.4.mp4,1.0,How does the distance between the observer and the man change in this video?,A: Get closer; B: Get farther; C: Remain unchanged; D: Cannot be determined,B,
4,CameraBench/5eDQ2SSsmEk.9.7.mp4,1.0,How does the distance between the observer and the man change in this video?,A: Get farther; B: Get closer; C: Remain unchanged; D: Cannot be determined,A,
4,CameraBench/6303.0.14.mp4,1.0,How does the distance between the observer and the man change in this video?,A: Get farther; B: Remain unchanged; C: Cannot be determined; D: Get closer,B,
4,CameraBench/88vmzn_LufA.5.0.mp4,0.0,How does the distance between the observer and the car change in this video?,A: Get closer; B: Cannot be determined; C: Get farther; D: Remain unchanged,A,
4,CameraBench/8SphTOiOe6k.0.3.mp4,1.0,How does the distance between the observer and the white car change in this video?,A: Remain unchanged; B: Get farther; C: Cannot be determined; D: Get closer,D,
4,CameraBench/9rGRF5S7bGk.0.0.mp4,1.0,How does the distance between the observer and the camera change in this video?,A: Remain unchanged; B: Get farther; C: Cannot be determined; D: Get closer,D,
4,CameraBench/CBRwF0LU3Ys.0.6.mp4,1.0,How does the distance between the observer and the car change in this video?,A: Cannot be determined; B: Get farther; C: Get closer; D: Remain unchanged,C,
4,CameraBench/KAer-wHAd38.5.8.mp4,1.0,How does the distance between the observer and the motorbike change in this video?,A: Remain unchanged; B: Cannot be determined; C: Get closer; D: Get farther,D,
4,CameraBench/M0jmSsQ5ptw.3.12.mp4,1.0,How does the distance between the observer and the runner change in this video?,A: Cannot be determined; B: Get closer; C: Remain unchanged; D: Get farther,B,
4,CameraBench/M0jmSsQ5ptw.3.16.mp4,1.0,"How does the distance between the observer and the man change in this video?",A: Get farther; B: Remain unchanged; C: Cannot be determined; D: Get closer,D,two object
4,CameraBench/VaSlqE0Nx2Q.7.2.mp4,1.0,How does the distance between the observer and the character change in this video?,A: Cannot be determined; B: Get farther; C: Get closer; D: Remain unchanged,C,
4,CameraBench/XA2X_JBzkzY.0.1.mp4,1.0,How does the distance between the observer and the troops change in this video?,A: Cannot be determined; B: Get closer; C: Remain unchanged; D: Get farther,D,
4,CameraBench/awPo_VZabRc.2.3.mp4,0.0,How does the distance between the observer and the character change in this video?,A: Remain unchanged; B: Get closer; C: Get farther; D: Cannot be determined,B,
4,CameraBench/g7gPegf76Mw.1.6.mp4,1.0,How does the distance between the observer and the character change in this video?,A: Remain unchanged; B: Cannot be determined; C: Get farther; D: Get closer,D,
4,CameraBench/mIiPt1YVkP8.9.7.mp4,0.0,How does the distance between the observer and the plane change in this video?,A: Cannot be determined; B: Remain unchanged; C: Get farther; D: Get closer,D,moving down
4,CameraBench/nGJMwixogyk.5.4.mp4,1.0,How does the distance between the observer and the e-bike change in this video?,A: Cannot be determined; B: Get farther; C: Get closer; D: Remain unchanged,B,
4,CameraBench/pJwjgXcJ4zQ.2.0.mp4,1.0,How does the distance between the observer and the pedestrian change in this video?,A: Get farther; B: Get closer; C: Remain unchanged; D: Cannot be determined,A,
4,CameraBench/sKJeTaIEldM.1.1.mp4,1.0,How does the distance between the observer and the character change in this video?,A: Cannot be determined; B: Remain unchanged; C: Get farther; D: Get closer,C,reverse moving left
4,SynFMC/Rendered_Traj_Results/dynamic/121/video_480p.mp4,0.0,How does the distance between the observer and the character change in this video?,A: Get closer; B: Cannot be determined; C: Remain unchanged; D: Get farther,A,
4,SynFMC/Rendered_Traj_Results/dynamic/146/video_480p.mp4,0.0,How does the distance between the observer and the seal change in this video?,A: Cannot be determined; B: Remain unchanged; C: Get farther; D: Get closer,C,
4,SynFMC/Rendered_Traj_Results/dynamic/15/video_480p.mp4,0.0,How does the distance between the observer and the duck change in this video?,A: Get farther; B: Get closer; C: Cannot be determined; D: Remain unchanged,D,
4,SynFMC/Rendered_Traj_Results/dynamic/178/video_480p.mp4,0.0,How does the distance between the observer and the character change in this video?,A: Get farther; B: Remain unchanged; C: Cannot be determined; D: Get closer,D,
4,SynFMC/Rendered_Traj_Results/dynamic/183/video_480p.mp4,0.0,How does the distance between the observer and the character change in this video?,A: Cannot be determined; B: Get farther; C: Remain unchanged; D: Get closer,B,
4,SynFMC/Rendered_Traj_Results/dynamic/198/video_480p.mp4,0.0,How does the distance between the observer and the seal change in this video?,A: Get farther; B: Cannot be determined; C: Get closer; D: Remain unchanged,C,
4,SynFMC/Rendered_Traj_Results/dynamic/367/video_480p.mp4,0.0,How does the distance between the observer and the chicken change in this video?,A: Get closer; B: Remain unchanged; C: Cannot be determined; D: Get farther,D,
4,SynFMC/Rendered_Traj_Results/dynamic/375/video_480p.mp4,0.0,How does the distance between the observer and the character change in this video?,A: Get closer; B: Get farther; C: Remain unchanged; D: Cannot be determined,B,
4,SynFMC/Rendered_Traj_Results/dynamic/451/video_480p.mp4,0.0,How does the distance between the observer and the character change in this video?,A: Cannot be determined; B: Remain unchanged; C: Get farther; D: Get closer,C,
4,SynFMC/Rendered_Traj_Results/dynamic/467/video_480p.mp4,0.0,How does the distance between the observer and the character change in this video?,A: Remain unchanged; B: Get farther; C: Cannot be determined; D: Get closer,B,
4,SynFMC/Rendered_Traj_Results/dynamic/56/video_480p.mp4,0.0,How does the distance between the observer and the character change in this video?,A: Get farther; B: Get closer; C: Cannot be determined; D: Remain unchanged,A,
4,SynFMC/Rendered_Traj_Results/dynamic/6/video_480p.mp4,0.0,How does the distance between the observer and the character change in this video?,A: Remain unchanged; B: Get closer; C: Get farther; D: Cannot be determined,A,
4,SynFMC/Rendered_Traj_Results/dynamic/8/video_480p.mp4,0.0,How does the distance between the observer and the character change in this video?,A: Get closer; B: Cannot be determined; C: Get farther; D: Remain unchanged,C,
4,SynFMC/Rendered_Traj_Results/dynamic/81/video_480p.mp4,0.0,How does the distance between the observer and the character change in this video?,A: Remain unchanged; B: Cannot be determined; C: Get closer; D: Get farther,C,
4,k700/base jumping/rGy7-nevWFM_000000_000010/video-scene-00000.mp4,1.0,How does the distance between the observer and the man change in this video?,A: Get farther; B: Remain unchanged; C: Get closer; D: Cannot be determined,A,
4,k700/bulldozing/qhx08XOm0GU_000248_000258/video-scene-00000.mp4,1.0,How does the distance between the observer and the bulldozer change in this video?,A: Cannot be determined; B: Get closer; C: Get farther; D: Remain unchanged,B,
4,k700/catching or throwing softball/F1y0ToSPCvM_000035_000045/video-scene-00003.mp4,1.0,How does the distance between the observer and the woman change in this video?,A: Get closer; B: Get farther; C: Cannot be determined; D: Remain unchanged,A,
4,k700/crossing river/JRmwuQBJNj8_000046_000056/video-scene-00000.mp4,1.0,How does the distance between the observer and the motorbike change in this video?,A: Remain unchanged; B: Get farther; C: Get closer; D: Cannot be determined,C,0-5s
4,k700/dodgeball/i7DApGaMVM0_000050_000060/video-scene-00003.mp4,1.0,How does the distance between the observer and the man change in this video?,A: Remain unchanged; B: Get closer; C: Get farther; D: Cannot be determined,B,
4,k700/hurdling/8SMY-IEcyCU_000001_000011/video-scene-00000.mp4,1.0,How does the distance between the observer and the woman change in this video?,A: Get closer; B: Get farther; C: Cannot be determined; D: Remain unchanged,A,2-5s
4,k700/jogging/QY8RJBxbLnA_000116_000126/video-scene-00001.mp4,1.0,How does the distance between the observer and the man change in this video?,A: Remain unchanged; B: Get farther; C: Cannot be determined; D: Get closer,A,
4,k700/jogging/QY8RJBxbLnA_000116_000126/video-scene-00002.mp4,1.0,How does the distance between the observer and the man change in this video?,A: Get closer; B: Cannot be determined; C: Get farther; D: Remain unchanged,D,
4,k700/lawn mower racing/mi6uwVxkJP0_000133_000143/video-scene-00000.mp4,1.0,How does the distance between the observer and the weeder change in this video?,A: Get closer; B: Remain unchanged; C: Get farther; D: Cannot be determined,A,
4,k700/moon walking/FGuwZjR06_Y_000059_000069/video-scene-00000.mp4,1.0,How does the distance between the observer and the man change in this video?,A: Get farther; B: Get closer; C: Cannot be determined; D: Remain unchanged,B,0-3
4,k700/paragliding/95Df0yxIGbw_000076_000086/video-scene-00000.mp4,1.0,How does the distance between the observer and the paragliding change in this video?,A: Cannot be determined; B: Get farther; C: Get closer; D: Remain unchanged,B,1-3
4,k700/passing American football (not in game)/H9d1LaBEt-I_000008_000018/video-scene-00000.mp4,1.0,How does the distance between the observer and the dog change in this video?,A: Remain unchanged; B: Get closer; C: Get farther; D: Cannot be determined,C,
4,k700/playing volleyball/ezHRosKTF1s_000010_000020/video-scene-00000.mp4,1.0,How does the distance between the observer and the girl change in this video?,A: Get closer; B: Get farther; C: Remain unchanged; D: Cannot be determined,B,3-5
4,k700/pushing wheelchair/nwBRn1CugHo_000113_000123/video-scene-00001.mp4,1.0,How does the distance between the observer and the wheelchair change in this video?,A: Get closer; B: Remain unchanged; C: Get farther; D: Cannot be determined,A,
4,k700/riding mule/afmuV-Aiv2M_000041_000051/video-scene-00000.mp4,1.0,How does the distance between the observer and the horse change in this video?,A: Remain unchanged; B: Get closer; C: Get farther; D: Cannot be determined,C,5-9
4,k700/riding mule/uayDext7cVU_000119_000129/video-scene-00000.mp4,1.0,How does the distance between the observer and the horse change in this video?,A: Remain unchanged; B: Get farther; C: Cannot be determined; D: Get closer,D,4-8
4,k700/running on treadmill/nkOGrY5O_vA_000117_000127/video-scene-00001.mp4,1.0,How does the distance between the observer and the woman change in this video?,A: Get closer; B: Cannot be determined; C: Get farther; D: Remain unchanged,C,
4,k700/skateboarding/RTvs_EKwEJE_000100_000110/video-scene-00000.mp4,1.0,How does the distance between the observer and the man change in this video?,A: Cannot be determined; B: Get farther; C: Remain unchanged; D: Get closer,B,
4,k700/swimming breast stroke/sa391NAMpPA_000004_000014/video-scene-00000.mp4,1.0,How does the distance between the observer and the swimmer change in this video?,A: Remain unchanged; B: Cannot be determined; C: Get closer; D: Get farther,A,
4,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_1dHrVQtInLI/video-scene-00000.mp4,1.0,How does the distance between the observer and the car change in this video?,A: Cannot be determined; B: Get closer; C: Get farther; D: Remain unchanged,B,
4,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_3rSmVlRrlDA/video-scene-00008.mp4,1.0,How does the distance between the observer and the drink change in this video?,A: Remain unchanged; B: Get closer; C: Cannot be determined; D: Get farther,D,
4,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_55koFoYV-j8/video-scene-00007.mp4,0.0,How does the distance between the observer and the woman change in this video?,A: Get closer; B: Get farther; C: Cannot be determined; D: Remain unchanged,A,
4,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_55koFoYV-j8/video-scene-00008.mp4,0.0,How does the distance between the observer and the dog change in this video?,A: Get closer; B: Get farther; C: Remain unchanged; D: Cannot be determined,B,
4,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_7sBatb7FCgM/video-scene-00001.mp4,1.0,How does the distance between the observer and the car change in this video?,A: Get closer; B: Remain unchanged; C: Cannot be determined; D: Get farther,D,
4,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_8K-8QeQ6CEA/video-scene-00001.mp4,1.0,How does the distance between the observer and the beaver change in this video?,A: Get closer; B: Get farther; C: Cannot be determined; D: Remain unchanged,A,0-1
4,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_8t-xKwg70Aw/video-scene-00000.mp4,1.0,How does the distance between the observer and the woman change in this video?,A: Remain unchanged; B: Cannot be determined; C: Get closer; D: Get farther,D,
4,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_EJn2Dafb4Pw/video-scene-00000.mp4,1.0,How does the distance between the observer and the dog change in this video?,A: Get closer; B: Remain unchanged; C: Cannot be determined; D: Get farther,A,
4,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_GDhFffL5E1Q/video-scene-00004.mp4,1.0,How does the distance between the observer and the person change in this video?,A: Get closer; B: Cannot be determined; C: Get farther; D: Remain unchanged,C,
4,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_O6QfY9a5E7k/video-scene-00000.mp4,1.0,How does the distance between the observer and the bike change in this video?,A: Get farther; B: Remain unchanged; C: Cannot be determined; D: Get closer,D,
4,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_OQwveka9WKo/video-scene-00000.mp4,1.0,How does the distance between the observer and the man change in this video?,A: Cannot be determined; B: Get farther; C: Remain unchanged; D: Get closer,C,
4,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_P5gH6mkNQZg/video-scene-00001.mp4,1.0,How does the distance between the observer and the white car change in this video?,A: Get closer; B: Get farther; C: Cannot be determined; D: Remain unchanged,B,
4,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_PCj0xJV7GI0/video-scene-00002.mp4,1.0,How does the distance between the observer and the car change in this video?,A: Get farther; B: Remain unchanged; C: Cannot be determined; D: Get closer,D,
4,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_PZg1hDiWFYk/video-scene-00002.mp4,1.0,How does the distance between the observer and the man change in this video?,A: Cannot be determined; B: Get farther; C: Get closer; D: Remain unchanged,D,
4,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_TsuHAopbc1I/video-scene-00000.mp4,1.0,How does the distance between the observer and the truck change in this video?,A: Get closer; B: Cannot be determined; C: Remain unchanged; D: Get farther,A,
4,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_UJCxQ54i0o0/video-scene-00000.mp4,1.0,How does the distance between the observer and the baby change in this video?,A: Cannot be determined; B: Remain unchanged; C: Get closer; D: Get farther,C,0-2
4,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_Xx8UOZNPsKQ/video-scene-00000.mp4,1.0,How does the distance between the observer and the ship change in this video?,A: Remain unchanged; B: Get farther; C: Cannot be determined; D: Get closer,D,7-11
4,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_aSGtwaZ22ZU/video-scene-00003.mp4,1.0,How does the distance between the observer and the car change in this video?,A: Get closer; B: Remain unchanged; C: Cannot be determined; D: Get farther,B,
4,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_aSLaqLBcWrA/video-scene-00003.mp4,1.0,How does the distance between the observer and the man change in this video?,A: Remain unchanged; B: Cannot be determined; C: Get farther; D: Get closer,C,
4,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_byy2-cV2kvk/video-scene-00001.mp4,1.0,How does the distance between the observer and the woman change in this video?,A: Get closer; B: Remain unchanged; C: Cannot be determined; D: Get farther,A,
4,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_dJAUt-hx2iU/video-scene-00000.mp4,1.0,How does the distance between the observer and the car change in this video?,A: Cannot be determined; B: Get closer; C: Remain unchanged; D: Get farther,D,
4,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_q5N2L5L9j1Q/video-scene-00000.mp4,1.0,How does the distance between the observer and the woman change in this video?,A: Get closer; B: Cannot be determined; C: Get farther; D: Remain unchanged,A,
4,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_upupV4Dyfv0/video-scene-00001.mp4,1.0,How does the distance between the observer and the man change in this video?,A: Get closer; B: Get farther; C: Remain unchanged; D: Cannot be determined,B,
4,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_vuokNBBf2XQ/video-scene-00001.mp4,1.0,How does the distance between the observer and the man change in this video?,A: Get farther; B: Get closer; C: Remain unchanged; D: Cannot be determined,A,
4,llava178k/30_60_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_4GHQeWJQTuw/video-scene-00011.mp4,1.0,How does the distance between the observer and the car change in this video?,A: Cannot be determined; B: Get closer; C: Get farther; D: Remain unchanged,B,
4,llava178k/30_60_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_Bag2HJhcV44/video-scene-00000.mp4,1.0,How does the distance between the observer and the truck change in this video?,A: Get closer; B: Get farther; C: Cannot be determined; D: Remain unchanged,B,
4,internet/-7bJwW2NYyc/video-scene-00167.mp4,1.0,How does the distance between the observer and the car change in this video?,A: Remain unchanged; B: Get closer; C: Get farther; D: Cannot be determined,C,
4,internet/-FGVJS3rT80/video-scene-00056.mp4,1.0,How does the distance between the observer and the car change in this video?,A: Get farther; B: Remain unchanged; C: Cannot be determined; D: Get closer,D,
4,internet/0IRTpb1y8b0/video-scene-00007.mp4,0.0,How does the distance between the observer and the sailboat change in this video?,A: Cannot be determined; B: Remain unchanged; C: Get closer; D: Get farther,D,0-4s
4,internet/0IRTpb1y8b0/video-scene-00045.mp4,1.0,How does the distance between the observer and the car change in this video?,A: Get farther; B: Get closer; C: Remain unchanged; D: Cannot be determined,B,0-3
4,internet/3LDJxHWtFUI/video-scene-00042.mp4,1.0,How does the distance between the observer and the man change in this video?,A: Get farther; B: Get closer; C: Remain unchanged; D: Cannot be determined,B,
4,internet/4cZ3OQlfupM/video-scene-00023.mp4,1.0,How does the distance between the observer and the dear change in this video?,A: Cannot be determined; B: Remain unchanged; C: Get closer; D: Get farther,D,0-4
4,internet/5jYgYFpGCL4/video-scene-00041.mp4,1.0,How does the distance between the observer and the car change in this video?,A: Cannot be determined; B: Remain unchanged; C: Get farther; D: Get closer,D,
4,internet/5umLTWybVd4/video-scene-00010.mp4,1.0,How does the distance between the observer and the character change in this video?,A: Cannot be determined; B: Remain unchanged; C: Get closer; D: Get farther,D,
4,internet/5umLTWybVd4/video-scene-00022.mp4,1.0,How does the distance between the observer and the character change in this video?,A: Remain unchanged; B: Get closer; C: Cannot be determined; D: Get farther,B,
4,internet/6hWB001GSu8/video-scene-00028.mp4,1.0,How does the distance between the observer and the man change in this video?,A: Remain unchanged; B: Get closer; C: Cannot be determined; D: Get farther,D,
4,internet/73lQgsAKYSc/video-scene-00022.mp4,0.0,How does the distance between the observer and the chimpanzees change in this video?,A: Get farther; B: Get closer; C: Remain unchanged; D: Cannot be determined,A,
4,internet/7DZmTaRDuzM/video-scene-00004.mp4,1.0,How does the distance between the observer and the character change in this video?,A: Get farther; B: Get closer; C: Cannot be determined; D: Remain unchanged,A,0-3
4,internet/7DZmTaRDuzM/video-scene-00030.mp4,1.0,How does the distance between the observer and the blue car change in this video?,A: Cannot be determined; B: Get farther; C: Get closer; D: Remain unchanged,B,
4,internet/7cD3EPH2_jU/video-scene-00058.mp4,1.0,How does the distance between the observer and the car change in this video?,A: Remain unchanged; B: Get farther; C: Get closer; D: Cannot be determined,C,0-4
4,internet/87iHlP0YkPM/video-scene-00045.mp4,0.0,How does the distance between the observer and the dragon change in this video?,A: Remain unchanged; B: Get farther; C: Cannot be determined; D: Get closer,B,
4,internet/8KNYC9Kw4W0/video-scene-00049.mp4,0.0,How does the distance between the observer and the car change in this video?,A: Get farther; B: Remain unchanged; C: Get closer; D: Cannot be determined,C,0-2
4,internet/96NMjhVBaxc/video-scene-00012.mp4,1.0,How does the distance between the observer and the car change in this video?,A: Cannot be determined; B: Get closer; C: Get farther; D: Remain unchanged,C,
4,internet/AN2SZ4H4Qzk/video-scene-00048.mp4,1.0,How does the distance between the observer and the horse change in this video?,A: Cannot be determined; B: Remain unchanged; C: Get closer; D: Get farther,D,
4,internet/B-tEt_VaN0U/video-scene-00031.mp4,1.0,How does the distance between the observer and the truck change in this video?,A: Remain unchanged; B: Cannot be determined; C: Get farther; D: Get closer,C,6-12
4,internet/BB3zcRQJfXE/video-scene-00020.mp4,1.0,How does the distance between the observer and the car change in this video?,A: Get closer; B: Cannot be determined; C: Get farther; D: Remain unchanged,C,
4,internet/BJ5YQFt9ab0/video-scene-00008.mp4,1.0,How does the distance between the observer and the character change in this video?,A: Get closer; B: Cannot be determined; C: Remain unchanged; D: Get farther,A,
4,internet/D1m2Z4_-XA4/video-scene-00010.mp4,1.0,How does the distance between the observer and the character change in this video?,A: Get farther; B: Remain unchanged; C: Get closer; D: Cannot be determined,A,
4,internet/D1m2Z4_-XA4/video-scene-00013.mp4,1.0,How does the distance between the observer and the car change in this video?,A: Get closer; B: Get farther; C: Remain unchanged; D: Cannot be determined,B,
4,internet/D1m2Z4_-XA4/video-scene-00025.mp4,1.0,How does the distance between the observer and the man change in this video?,A: Cannot be determined; B: Get closer; C: Remain unchanged; D: Get farther,B,
4,internet/DJqkat66RG4/video-scene-00002.mp4,1.0,How does the distance between the observer and the horse change in this video?,A: Get farther; B: Get closer; C: Remain unchanged; D: Cannot be determined,A,
4,internet/DJqkat66RG4/video-scene-00021.mp4,1.0,How does the distance between the observer and the horse change in this video?,A: Remain unchanged; B: Get closer; C: Get farther; D: Cannot be determined,B,3-5
4,internet/EmKR8MQammg/video-scene-00062.mp4,1.0,How does the distance between the observer and the horse change in this video?,A: Remain unchanged; B: Get farther; C: Cannot be determined; D: Get closer,B,2-5
4,internet/FQIx05cdYCM/video-scene-00005.mp4,1.0,How does the distance between the observer and the man change in this video?,A: Remain unchanged; B: Get closer; C: Get farther; D: Cannot be determined,B,
4,internet/FQIx05cdYCM/video-scene-00017.mp4,1.0,How does the distance between the observer and the soldier change in this video?,A: Get closer; B: Cannot be determined; C: Remain unchanged; D: Get farther,C,
4,internet/FQIx05cdYCM/video-scene-00039.mp4,1.0,How does the distance between the observer and the fighter change in this video?,A: Cannot be determined; B: Get farther; C: Get closer; D: Remain unchanged,D,
4,internet/J7RW7WNzh0w/video-scene-00004.mp4,1.0,How does the distance between the observer and the character change in this video?,A: Get farther; B: Remain unchanged; C: Cannot be determined; D: Get closer,D,
4,internet/KUaYWNfkOio/video-scene-00095.mp4,0.0,How does the distance between the observer and the Chimpanzees change in this video?,A: Get farther; B: Get closer; C: Remain unchanged; D: Cannot be determined,A,
4,internet/Kui5PpD9ITE/video-scene-00116.mp4,0.0,How does the distance between the observer and the horse change in this video?,A: Get closer; B: Get farther; C: Remain unchanged; D: Cannot be determined,A,0-2
4,internet/L85T-a6JUUw/video-scene-00031.mp4,1.0,How does the distance between the observer and the characters change in this video?,A: Get farther; B: Cannot be determined; C: Get closer; D: Remain unchanged,A,
4,internet/LS-f2jmR5F4/video-scene-00021.mp4,1.0,How does the distance between the observer and the car change in this video?,A: Cannot be determined; B: Remain unchanged; C: Get closer; D: Get farther,C,
4,internet/NQ9FYgIoG3I/video-scene-00035.mp4,0.0,How does the distance between the observer and the character change in this video?,A: Get closer; B: Cannot be determined; C: Get farther; D: Remain unchanged,C,
4,internet/NzfC0j8GU_w/video-scene-00016.mp4,1.0,How does the distance between the observer and the sailboat change in this video?,A: Remain unchanged; B: Get farther; C: Get closer; D: Cannot be determined,C,
4,internet/NzfC0j8GU_w/video-scene-00029.mp4,1.0,How does the distance between the observer and the character change in this video?,A: Remain unchanged; B: Cannot be determined; C: Get closer; D: Get farther,C,
4,internet/NzfC0j8GU_w/video-scene-00035.mp4,1.0,How does the distance between the observer and the motorbike change in this video?,A: Remain unchanged; B: Get farther; C: Get closer; D: Cannot be determined,B,
4,internet/O47JUErbk34/video-scene-00048.mp4,1.0,How does the distance between the observer and the chaaracter change in this video?,A: Get closer; B: Cannot be determined; C: Remain unchanged; D: Get farther,D,
4,internet/OWwdUUUScyA/video-scene-00008.mp4,0.0,How does the distance between the observer and the aircraft change in this video?,A: Get closer; B: Get farther; C: Remain unchanged; D: Cannot be determined,B,
4,internet/VR7uvOTdWLw/video-scene-00068.mp4,0.0,How does the distance between the observer and the raccoon change in this video?,A: Remain unchanged; B: Cannot be determined; C: Get farther; D: Get closer,D,
4,internet/b-ZGTD0NihE/video-scene-00026.mp4,0.0,How does the distance between the observer and the car change in this video?,A: Cannot be determined; B: Get farther; C: Get closer; D: Remain unchanged,C,
4,internet/ebpkUvyCXXo/video-scene-00006.mp4,0.0,How does the distance between the observer and the robot change in this video?,A: Remain unchanged; B: Get farther; C: Cannot be determined; D: Get closer,B,
4,internet/luJZFHO6jh4/video-scene-00015.mp4,1.0,How does the distance between the observer and the car change in this video?,A: Remain unchanged; B: Cannot be determined; C: Get closer; D: Get farther,D,
4,internet/wx-37uR_imo/video-scene-00025.mp4,1.0,How does the distance between the observer and the man change in this video?,A: Cannot be determined; B: Get farther; C: Remain unchanged; D: Get closer,D,
4,internet/yjQo36p_rqU/video-scene-00047.mp4,1.0,How does the distance between the observer and the car change in this video?,A: Cannot be determined; B: Get closer; C: Get farther; D: Remain unchanged,B,
4,internet/0kNwUIP85a8/video-scene-00005.mp4,1.0,How does the distance between the observer and the man change in this video?,A: Get farther; B: Get closer; C: Remain unchanged; D: Cannot be determined,B,
4,internet/LHkYq4MhhAU/video-scene-00020.mp4,1.0,How does the distance between the observer and the car change in this video?,A: Remain unchanged; B: Get closer; C: Get farther; D: Cannot be determined,B,
4,internet/LHkYq4MhhAU/video-scene-00024.mp4,1.0,How does the distance between the observer and the car change in this video?,A: Cannot be determined; B: Get farther; C: Get closer; D: Remain unchanged,C,0-2
4,internet/LHkYq4MhhAU/video-scene-00037.mp4,1.0,How does the distance between the observer and the car change in this video?,A: Cannot be determined; B: Get farther; C: Remain unchanged; D: Get closer,D,
4,internet/ZieW_OSkuiQ/video-scene-00023.mp4,1.0,How does the distance between the observer and the car change in this video?,A: Cannot be determined; B: Get closer; C: Get farther; D: Remain unchanged,B,
4,internet/ZieW_OSkuiQ/video-scene-00067.mp4,1.0,How does the distance between the observer and the car change in this video?,A: Get farther; B: Cannot be determined; C: Get closer; D: Remain unchanged,A,
4,internet/ZieW_OSkuiQ/video-scene-00081.mp4,1.0,How does the distance between the observer and the car change in this video?,A: Cannot be determined; B: Remain unchanged; C: Get farther; D: Get closer,C,
4,internet/4oXDmqUl6YU/4oXDmqUl6YU-1.mp4,1.0,How does the distance between the observer and the person change in this video?,A: Remain unchanged; B: Get closer; C: Get farther; D: Cannot be determined,B,
4,internet/6XMuUVw7TOM/6XMuUVw7TOM-1.mp4,1.0,How does the distance between the observer and the vehicle change in this video?,A: Remain unchanged; B: Get closer; C: Get farther; D: Cannot be determined,C,
5,CameraBench/0tIoyN7WKuA.3.1.mp4,1.0,"In this video, how does the observer's position change relative to the character's own orientation?",A: from character's left to back; B: from character's left to right; C: from character's right to left; D: from character's right to back,B,
5,CameraBench/2521.4.1.mp4,1.0,"In this video, how does the observer's position change relative to the character's own orientation?",A: from character's right to front; B: from character's left to right; C: from character's left to back; D: from character's right to back,D,
5,CameraBench/3vBUREkRzug.0.4.mp4,1.0,"In this video, how does the observer's position change relative to the sailboat's own orientation?",A: from sailboat's left to back; B: from sailboat's back to front; C: from sailboat's front to back; D: from sailboat's front to left,C,
5,CameraBench/88vmzn_LufA.5.0.mp4,0.0,"In this video, how does the observer's position change relative to the car's own orientation?",A: from car's right to back; B: from car's right to front; C: from car's left to right; D: from car's left to front,B,
5,CameraBench/CBRwF0LU3Ys.0.6.mp4,1.0,"In this video, how does the observer's position change relative to the car's own orientation?",A: from car's left to back; B: from car's back to right; C: from car's back to front; D: from car's back to left,D,
5,CameraBench/KB3KMUw54Hc.4.5.mp4,1.0,"In this video, how does the observer's position change relative to the character's own orientation?",A: from character's left to back; B: from character's right to back; C: from character's left to right; D: from character's left to front,A,
5,CameraBench/Kapdye-diSM.5.mp4,1.0,"In this video, how does the observer's position change relative to the car's own orientation?",A: from car's right to front; B: from car's right to back; C: from car's left to front; D: from car's left to back,D,
5,CameraBench/MuNyfqxAO6Y.2.0.mp4,1.0,"In this video, how does the observer's position change relative to the black car's own orientation?",A: from black car's right to back; B: from black car's right to left; C: from black car's left to back; D: from black car's left to right,C,
5,CameraBench/VaSlqE0Nx2Q.7.2.mp4,1.0,"In this video, how does the observer's position change relative to the character's own orientation?",A: from character's left to front; B: from character's left to right; C: from character's right to left; D: from character's right to front,D,
5,CameraBench/YBC2JaevzOI.0.3.mp4,1.0,"In this video, how does the observer's position change relative to the character's own orientation?",A: from character's right to left; B: from character's front to back; C: from character's front to left; D: from character's front to right,C,
5,CameraBench/f4ZzHtww6Tc.5.7.mp4,1.0,"In this video, how does the observer's position change relative to the character's own orientation?",A: from character's front to left; B: from character's back to left; C: from character's back to right; D: from character's front to right,B,
5,CameraBench/mIiPt1YVkP8.9.7.mp4,0.0,"In this video, how does the observer's position change relative to the plane's own orientation?",A: from plane's left to right; B: from plane's back to right; C: from plane's back to front; D: from plane's back to left,D,moving down
5,CameraBench/nGJMwixogyk.5.4.mp4,1.0,"In this video, how does the observer's position change relative to the e-bike's own orientation?",A: from e-bike's back to left; B: from e-bike's right to back; C: from e-bike's right to front; D: from e-bike's right to left,B,
5,CameraBench/oRt5NPY7yYA.4.1.mp4,1.0,"In this video, how does the observer's position change relative to the truck's own orientation?",A: from truck's left to front; B: from truck's left to right; C: from truck's front to left; D: from truck's front to right,C,
5,CameraBench/sKJeTaIEldM.1.1.mp4,1.0,"In this video, how does the observer's position change relative to the character's own orientation?",A: from character's left to back; B: from character's right to left; C: from character's left to right; D: from character's left to front,A,reverse moving left
5,SynFMC/Rendered_Traj_Results/dynamic/121/video_480p.mp4,0.0,"In this video, how does the observer's position change relative to the character's own orientation?",A: from character's front to back; B: from character's left to right; C: from character's front to left; D: from character's front to right,D,
5,SynFMC/Rendered_Traj_Results/dynamic/14/video_480p.mp4,0.0,"In this video, how does the observer's position change relative to the man's own orientation?",A: from man's left to right; B: from man's right to front; C: from man's right to back; D: from man's left to back,C,
5,SynFMC/Rendered_Traj_Results/dynamic/45/video_480p.mp4,0.0,"In this video, how does the observer's position change relative to the character's own orientation?",A: from character's front to left; B: from character's left to back; C: from character's back to front; D: from character's front to back,D,
5,SynFMC/Rendered_Traj_Results/dynamic/450/video_480p.mp4,0.0,"In this video, how does the observer's position change relative to the character's own orientation?",A: from character's front to back; B: from character's left to front; C: from character's front to right; D: from character's front to left,D,
5,SynFMC/Rendered_Traj_Results/dynamic/467/video_480p.mp4,0.0,"In this video, how does the observer's position change relative to the character's own orientation?",A: from character's right to front; B: from character's left to back; C: from character's right to back; D: from character's left to right,C,
5,SynFMC/Rendered_Traj_Results/dynamic/71/video_480p.mp4,0.0,"In this video, how does the observer's position change relative to the character's own orientation?",A: from character's front to left; B: from character's front to back; C: from character's left to back; D: from character's front to right,A,
5,SynFMC/Rendered_Traj_Results/dynamic/72/video_480p.mp4,0.0,"In this video, how does the observer's position change relative to the character's own orientation?",A: from character's back to right; B: from character's front to right; C: from character's back to left; D: from character's front to left,C,1.5s
5,SynFMC/Rendered_Traj_Results/dynamic/79/video_480p.mp4,0.0,"In this video, how does the observer's position change relative to the fish's own orientation?",A: from fish's back to left; B: from fish's left to back; C: from fish's front to back; D: from fish's left to right,B,
5,k700/hockey stop/uzCZ_qfK-lo_000024_000034/video-scene-00001.mp4,1.0,"In this video, how does the observer's position change relative to the man's own orientation?",A: from man's front to back; B: from man's front to right; C: from man's back to front; D: from man's front to left,D,0-2s
5,k700/longboarding/bSP_4hezZ6U_000079_000089/video-scene-00003.mp4,1.0,"In this video, how does the observer's position change relative to the skateboarder's own orientation?",A: from skateboarder's right to left; B: from skateboarder's left to right; C: from skateboarder's left to back; D: from skateboarder's right to front,A,0-1.5
5,k700/luge/LvPMb4h5RuM_000018_000028/video-scene-00002.mp4,1.0,"In this video, how does the observer's position change relative to the boy's own orientation?",A: from boy's left to front; B: from boy's front to back; C: from boy's left to back; D: from boy's left to right,C,reverse back
5,k700/playing laser tag/ntqZnMmWrlE_000023_000033/video-scene-00000.mp4,1.0,"In this video, how does the observer's position change relative to the man's own orientation?",A: from man's right to left; B: from man's right to front; C: from man's right to back; D: from man's front to right,B,
5,k700/riding mule/afmuV-Aiv2M_000041_000051/video-scene-00000.mp4,1.0,"In this video, how does the observer's position change relative to the horse's own orientation?",A: from horse's right to back; B: from horse's back to front; C: from horse's right to left; D: from horse's right to front,A,5-9
5,k700/riding mule/q6elxqsBhcg_000209_000219/video-scene-00000.mp4,1.0,"In this video, how does the observer's position change relative to the horse's own orientation?",A: from horse's front to right; B: from horse's back to right; C: from horse's back to front; D: from horse's front to left,B,3-7
5,k700/riding mule/uayDext7cVU_000119_000129/video-scene-00000.mp4,1.0,"In this video, how does the observer's position change relative to the horse's own orientation?",A: from horse's left to right; B: from horse's right to front; C: from horse's left to back; D: from horse's right to left,A,4-8
5,k700/roller skating/6MKV90DUPCY_000024_000034/video-scene-00000.mp4,1.0,"In this video, how does the observer's position change relative to the woman's own orientation?",A: from woman's back to left; B: from woman's back to right; C: from woman's left to back; D: from woman's left to right,A,0-5
5,k700/skiing mono/tte1xX1T8xY_000028_000038/video-scene-00003.mp4,1.0,"In this video, how does the observer's position change relative to the man's own orientation?",A: from man's left to right; B: from man's left to back; C: from man's back to right; D: from man's back to left,C,
5,k700/snowboarding/9o2tVONLRMU_000003_000013/video-scene-00000.mp4,1.0,"In this video, how does the observer's position change relative to the skier's own orientation?",A: from skier's front to left; B: from skier's back to front; C: from skier's left to right; D: from skier's front to right,C,2-4
5,k700/snowmobiling/NdAuyvdNneI_000018_000028/video-scene-00000.mp4,1.0,"In this video, how does the observer's position change relative to the Snowmobile's own orientation?",A: from Snowmobile's front to back; B: from Snowmobile's front to left; C: from Snowmobile's back to right; D: from Snowmobile's back to front,A,0-7
5,k700/water skiing/9YJec6_lXDA_000013_000023/video-scene-00000.mp4,1.0,"In this video, how does the observer's position change relative to the surfer's own orientation?",A: from surfer's left to front; B: from surfer's right to back; C: from surfer's left to back; D: from surfer's right to front,C,
5,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_11tmFrZZUoM/video-scene-00001.mp4,1.0,"In this video, how does the observer's position change relative to the horse's own orientation?",A: from horse's right to back; B: from horse's front to right; C: from horse's left to back; D: from horse's right to front,C,
5,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_16mZjk4AOJs/video-scene-00000.mp4,1.0,"In this video, how does the observer's position change relative to the harvester's own orientation?",A: from harvester's front to right; B: from harvester's left to front; C: from harvester's left to back; D: from harvester's right to back,B,
5,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_55koFoYV-j8/video-scene-00006.mp4,0.0,"In this video, how does the observer's position change relative to the superman's own orientation?",A: from superman's right to front; B: from superman's left to front; C: from superman's right to back; D: from superman's left to back,A,
5,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_PCj0xJV7GI0/video-scene-00002.mp4,1.0,"In this video, how does the observer's position change relative to the car's own orientation?",A: from car's right to front; B: from car's right to back; C: from car's back to front; D: from car's back to right,D,
5,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_Sw_eP0zi4k0/video-scene-00000.mp4,1.0,"In this video, how does the observer's position change relative to the car's own orientation?",A: from car's front to right; B: from car's left to back; C: from car's front to back; D: from car's left to right,B,
5,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_Ulol_nV9Rw4/video-scene-00001.mp4,1.0,"In this video, how does the observer's position change relative to the man's own orientation?",A: from man's front to right; B: from man's front to left; C: from man's left to front; D: from man's left to back,A,0-2
5,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_WjVJ8j6qWWQ/video-scene-00001.mp4,1.0,"In this video, how does the observer's position change relative to the skier's own orientation?",A: from skier's left to front; B: from skier's right to left; C: from skier's front to right; D: from skier's back to front,B,reverse forward
5,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_XlvvPiM82Jc/video-scene-00002.mp4,1.0,"In this video, how does the observer's position change relative to the motorbike's own orientation?",A: from motorbike's back to right; B: from motorbike's left to front; C: from motorbike's back to left; D: from motorbike's left to back,C,
5,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_Xs2UQsCyWKE/video-scene-00000.mp4,1.0,"In this video, how does the observer's position change relative to the car's own orientation?",A: from car's left to back; B: from car's back to front; C: from car's front to left; D: from car's front to back,D,0-3
5,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_YfKRSLpJZDw/video-scene-00000.mp4,1.0,"In this video, how does the observer's position change relative to the car's own orientation?",A: from car's front to left; B: from car's front to right; C: from car's right to back; D: from car's right to front,B,
5,llava178k/0_30_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_g7sEtiEa1-o/video-scene-00003.mp4,1.0,"In this video, how does the observer's position change relative to the car's own orientation?",A: from car's right to left; B: from car's left to front; C: from car's right to back; D: from car's left to back,A,
5,llava178k/30_60_s_youtube_v0_1/liwei_youtube_videos/videos/youtube_video_2024/ytb_T55Kx9W-SvI/video-scene-00007.mp4,0.0,"In this video, how does the observer's position change relative to the car's own orientation?",A: from car's front to left; B: from car's left to front; C: from car's left to right; D: from car's front to right,D,reverse right forward
5,internet/-4dDC0lPRB0/video-scene-00006.mp4,1.0,"In this video, how does the observer's position change relative to the character's own orientation?",A: from character's right to back; B: from character's right to front; C: from character's left to back; D: from character's left to right,C,"0-2, reverse back"
5,internet/0IRTpb1y8b0/video-scene-00007.mp4,0.0,"In this video, how does the observer's position change relative to the sailboat's own orientation?",A: from sailboat's back to right; B: from sailboat's right to back; C: from sailboat's left to front; D: from sailboat's front to back,B,0-4s
5,internet/0IRTpb1y8b0/video-scene-00045.mp4,1.0,"In this video, how does the observer's position change relative to the car's own orientation?",A: from car's front to left; B: from car's left to front; C: from car's front to right; D: from car's back to right,C,0-3
5,internet/5umLTWybVd4/video-scene-00022.mp4,1.0,"In this video, how does the observer's position change relative to the character's own orientation?",A: from character's front to back; B: from character's right to front; C: from character's right to back; D: from character's front to right,B,
5,internet/6hWB001GSu8/video-scene-00028.mp4,1.0,"In this video, how does the observer's position change relative to the man's own orientation?",A: from man's left to right; B: from man's left to back; C: from man's right to front; D: from man's right to back,B,
5,internet/7DZmTaRDuzM/video-scene-00030.mp4,1.0,"In this video, how does the observer's position change relative to the blue car's own orientation?",A: from blue car's front to right; B: from blue car's right to back; C: from blue car's front to back; D: from blue car's right to left,B,
5,internet/8KNYC9Kw4W0/video-scene-00049.mp4,0.0,"In this video, how does the observer's position change relative to the car's own orientation?",A: from car's front to back; B: from car's right to front; C: from car's front to left; D: from car's left to front,B,0-2
5,internet/A9PaEE5Q3xk/video-scene-00075.mp4,1.0,"In this video, how does the observer's position change relative to the motorbike's own orientation?",A: from motorbike's right to front; B: from motorbike's left to back; C: from motorbike's right to left; D: from motorbike's left to right,D,
5,internet/BahFh-GTZkM/video-scene-00001.mp4,1.0,"In this video, how does the observer's position change relative to the woman's own orientation?",A: from woman's left to right; B: from woman's front to back; C: from woman's front to left; D: from woman's back to front,D,0-4
5,internet/Chz43YiO5dY/video-scene-00025.mp4,1.0,"In this video, how does the observer's position change relative to the character's own orientation?",A: from character's right to front; B: from character's left to back; C: from character's left to right; D: from character's right to back,D,
5,internet/ES9KIAzjvBE/video-scene-00001.mp4,1.0,"In this video, how does the observer's position change relative to the character's own orientation?",A: from character's left to back; B: from character's left to right; C: from character's back to left; D: from character's back to right,D,0-8
5,internet/FQIx05cdYCM/video-scene-00052.mp4,1.0,"In this video, how does the observer's position change relative to the boat's own orientation?",A: from boat's right to front; B: from boat's left to back; C: from boat's left to right; D: from boat's right to back,B,
5,internet/IL4fmLYbCEA/video-scene-00018.mp4,1.0,"In this video, how does the observer's position change relative to the car's own orientation?",A: from car's left to back; B: from car's back to left; C: from car's back to right; D: from car's left to right,A,0-2
5,internet/KB3KMUw54Hc/video-scene-00073.mp4,1.0,"In this video, how does the observer's position change relative to the character's own orientation?",A: from character's back to left; B: from character's back to right; C: from character's front to left; D: from character's left to right,B,1-4
5,internet/KB3KMUw54Hc/video-scene-00094.mp4,1.0,"In this video, how does the observer's position change relative to the plane's own orientation?",A: from plane's left to right; B: from plane's right to left; C: from plane's left to front; D: from plane's right to front,A,
5,internet/L85T-a6JUUw/video-scene-00011.mp4,1.0,"In this video, how does the observer's position change relative to the character's own orientation?",A: from character's front to right; B: from character's back to right; C: from character's front to left; D: from character's left to front,A,3-10
5,internet/NQ9FYgIoG3I/video-scene-00045.mp4,0.0,"In this video, how does the observer's position change relative to the fox's own orientation?",A: from fox's right to back; B: from fox's right to front; C: from fox's front to back; D: from fox's left to back,A,
5,internet/Oa4QcdNsqUE/video-scene-00030.mp4,1.0,"In this video, how does the observer's position change relative to the car's own orientation?",A: from car's left to front; B: from car's back to right; C: from car's left to back; D: from car's back to front,D,
5,internet/RXt-hSbF02k/video-scene-00081.mp4,1.0,"In this video, how does the observer's position change relative to the character's own orientation?",A: from character's left to front; B: from character's left to right; C: from character's front to left; D: from character's back to front,A,"0-5,cam reverse forward"
5,internet/SX2vYvhMAqc/video-scene-00019.mp4,1.0,"In this video, how does the observer's position change relative to the creature's own orientation?",A: from creature's back to left; B: from creature's front to right; C: from creature's back to right; D: from creature's front to left,D,
5,internet/Tub_j2foJjo/video-scene-00008.mp4,1.0,"In this video, how does the observer's position change relative to the man's own orientation?",A: from man's left to front; B: from man's front to right; C: from man's front to back; D: from man's left to right,A,
5,internet/b-ZGTD0NihE/video-scene-00026.mp4,0.0,"In this video, how does the observer's position change relative to the car's own orientation?",A: from car's left to right; B: from car's right to back; C: from car's left to front; D: from car's right to front,D,
5,internet/fQS9GOcGy9c/video-scene-00070.mp4,1.0,"In this video, how does the observer's position change relative to the man's own orientation?",A: from man's left to right; B: from man's back to front; C: from man's front to back; D: from man's right to front,D,
5,internet/ioQ1Rp6Rt3Y/video-scene-00049.mp4,1.0,"In this video, how does the observer's position change relative to the woman's own orientation?",A: from woman's front to left; B: from woman's back to right; C: from woman's back to front; D: from woman's front to back,D,
5,internet/reSD-13YTSw/video-scene-00078.mp4,1.0,"In this video, how does the observer's position change relative to the character's own orientation?",A: from character's back to right; B: from character's left to right; C: from character's back to front; D: from character's right to left,D,
5,internet/0kNwUIP85a8/video-scene-00009.mp4,1.0,"In this video, how does the observer's position change relative to the car's own orientation?",A: from car's left to back; B: from car's front to left; C: from car's back to right; D: from car's front to back,D,0-2
5,internet/LHkYq4MhhAU/video-scene-00014.mp4,1.0,"In this video, how does the observer's position change relative to the car's own orientation?",A: from car's left to back; B: from car's left to right; C: from car's right to front; D: from car's right to left,D,
5,internet/a3Mc4PLoiNg/video-scene-00045.mp4,1.0,"In this video, how does the observer's position change relative to the car's own orientation?",A: from car's back to right; B: from car's back to front; C: from car's front to right; D: from car's front to back,D,
5,internet/a3Mc4PLoiNg/video-scene-00060.mp4,1.0,"In this video, how does the observer's position change relative to the car's own orientation?",A: from car's left to front; B: from car's right to back; C: from car's left to right; D: from car's back to front,C,
5,internet/ssKf_Qo7VVk/video-scene-00104.mp4,1.0,"In this video, how does the observer's position change relative to the black car's own orientation?",A: from black car's back to right; B: from black car's front to back; C: from black car's right to back; D: from black car's front to right,B,cam reverse left
5,internet/6XMuUVw7TOM/6XMuUVw7TOM-3.mp4,1.0,"In this video, how does the observer's position change relative to the car's own orientation?",A: from 's front to back; B: from 's right to left; C: from 's right to front; D: from 's left to right,D,
5,internet/AlJhMpk_AXo/AlJhMpk_AXo-1.mp4,1.0,"In this video, how does the observer's position change relative to the ship's own orientation?",A: from 's left to right; B: from 's front to right; C: from 's front to left; D: from 's right to front,C,0-4
5,internet/AlJhMpk_AXo/AlJhMpk_AXo-2.mp4,1.0,"In this video, how does the observer's position change relative to the ship's own orientation?",A: from 's left to back; B: from 's right to left; C: from 's right to back; D: from 's left to right,B,0-3
5,internet/FKrVK8EmasM/FKrVK8EmasM-1.mp4,1.0,"In this video, how does the observer's position change relative to the car's own orientation?",A: from 's left to front; B: from 's front to right; C: from 's left to right; D: from 's back to right,A,
5,internet/ctEksNz7tqg/ctEksNz7tqg-1.mp4,1.0,"In this video, how does the observer's position change relative to the bike's own orientation?",A: from 's back to front; B: from 's back to left; C: from 's right to back; D: from 's back to right,B,
5,internet/n_GkpkanNJI/n_GkpkanNJI-2.mp4,1.0,"In this video, how does the observer's position change relative to the skier's own orientation?",A: from 's left to back; B: from 's right to front; C: from 's front to left; D: from 's back to right,B,
5,internet/n_GkpkanNJI/n_GkpkanNJI-4.mp4,1.0,"In this video, how does the observer's position change relative to the car's own orientation?",A: from 's left to right; B: from 's back to front; C: from 's front to back; D: from 's front to left,A,
5,internet/n_GkpkanNJI/n_GkpkanNJI-5.mp4,1.0,"In this video, how does the observer's position change relative to the car's own orientation?",A: from 's back to left; B: from 's right to front; C: from 's right to left; D: from 's left to back,C,
|