File size: 116,490 Bytes
2d611cb | 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 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 | {
"videos/reminder_vqa/3_douyin_2_c/0416.mp4": {
"video_uid": "3_douyin_2_c/0416",
"caption": "2025-01-11 13.16.23_盲人为什么去面馆坐地铁盲人视障日常地铁搞_video",
"annotations": [
{
"qid": 1,
"start_time": 7.31,
"end_time": 9.53,
"task": "Simulated Query",
"question": "Is there an escalator directly in front of me?",
"answer": "No, there are stairs ahead of you; the escalators are on either side."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0423.mp4": {
"video_uid": "3_douyin_2_c/0423",
"caption": "2024-12-27 12.18.37_当盲人找不到路又打死不问路盲人盲人的世界_video",
"annotations": [
{
"qid": 2,
"start_time": 100.53,
"end_time": 103.3,
"task": "Simulated Query",
"question": "Is there a subway station ahead?",
"answer": "This is a subway station. There are stairs going down ahead."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0424.mp4": {
"video_uid": "3_douyin_2_c/0424",
"caption": "2024-12-13 10.19.08_深夜加班也是很认真的导盲犬艾希我愿意与导_video",
"annotations": [
{
"qid": 3,
"start_time": 9.14,
"end_time": 11.07,
"task": "Simulated Query",
"question": "Is there a trash can nearby?",
"answer": "Ahead to your left, there is"
},
{
"qid": 4,
"start_time": 31.62,
"end_time": 32.57,
"task": "Simulated Query",
"question": "Is the road ahead smooth?",
"answer": "The road ahead has a slight bump, please be cautious."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0428.mp4": {
"video_uid": "3_douyin_2_c/0428",
"caption": "2025-02-11 09.28.22_盲人第一视角带你看他们的世界欢迎来到盲人_video",
"annotations": [
{
"qid": 5,
"start_time": 104.08,
"end_time": 105.99,
"task": "Simulated Query",
"question": "Can I cross at the upcoming intersection?",
"answer": "No vehicles are passing; you may proceed."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0429.mp4": {
"video_uid": "3_douyin_2_c/0429",
"caption": "2023-12-16 10.14.27_盲人女孩第一视角今天去超市买个人用品感谢_video",
"annotations": [
{
"qid": 6,
"start_time": 4.58,
"end_time": 4.58,
"task": "Blind Person Query",
"question": "Is there a guide here?",
"answer": "Sorry, currently unable to determine. Please consider asking a passerby."
},
{
"qid": 7,
"start_time": 67.85,
"end_time": 67.85,
"task": "Blind Person Query",
"question": "Where are the toiletries?",
"answer": "Sorry, unable to determine at the moment. Please consider asking a passerby."
},
{
"qid": 8,
"start_time": 107.14,
"end_time": 107.14,
"task": "Blind Person Query",
"question": "Is there a guide here?",
"answer": "Sorry, currently unable to determine. We suggest asking a passerby."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0432.mp4": {
"video_uid": "3_douyin_2_c/0432",
"caption": "2024-12-13 11.03.04_盲人怎样过马路盲人过马路是一件困难的事情_video",
"annotations": [
{
"qid": 9,
"start_time": 5.6,
"end_time": 8.51,
"task": "Blind Person Query",
"question": "Is there a traffic light here?",
"answer": "No, you need to go further ahead to reach the crosswalk."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0433.mp4": {
"video_uid": "3_douyin_2_c/0433",
"caption": "2024-12-23 09.58.18_盲人独闯成都人民公园他能找到茶舍吗在公园_video",
"annotations": [
{
"qid": 10,
"start_time": 11.34,
"end_time": 13.41,
"task": "Blind Person Query",
"question": "Where can I find a place to have tea?",
"answer": "Keep walking straight and you'll see it."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0434.mp4": {
"video_uid": "3_douyin_2_c/0434",
"caption": "2024-12-31 08.28.35_2024年的最后一天又让我们发现一个有语_video",
"annotations": [
{
"qid": 11,
"start_time": 12.04,
"end_time": 15.07,
"task": "Simulated Query",
"question": "Is it safe to cross the street now?",
"answer": "Not now, it's a red light. 23:16, it's green now, you can go."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0435.mp4": {
"video_uid": "3_douyin_2_c/0435",
"caption": "2024-12-25 09.55.39_今天尝试着利用盲人版高德导航步行15让我_video",
"annotations": [
{
"qid": 12,
"start_time": 29.8,
"end_time": 30.63,
"task": "Simulated Query",
"question": "Is there a traffic light ahead, and is it safe to cross?",
"answer": "No traffic lights ahead, there are cars currently, cross later."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0437.mp4": {
"video_uid": "3_douyin_2_c/0437",
"caption": "2025-02-13 09.52.59_盲人博主独行寻味新疆干煸炒面黑暗中的步步_video",
"annotations": [
{
"qid": 13,
"start_time": 113,
"end_time": 115.29,
"task": "Simulated Query",
"question": "Is there something ahead?",
"answer": "There is a car ahead; you can move towards the front left."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0441.mp4": {
"video_uid": "3_douyin_2_c/0441",
"caption": "2024-08-23 09.31.11_导盲犬不再又没有实体盲杖看看盲人小哥哥是_video",
"annotations": [
{
"qid": 14,
"start_time": 145,
"end_time": 145.4,
"task": "Blind Person Query",
"question": "What is this place?",
"answer": "Lawn ahead"
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0442.mp4": {
"video_uid": "3_douyin_2_c/0442",
"caption": "2024-07-15 10.28.01_盲人女孩借助取快递虽然曲折但还是拿到了感_video",
"annotations": [
{
"qid": 15,
"start_time": 413.43,
"end_time": 415.44,
"task": "Simulated Query",
"question": "Is there an escalator ahead?",
"answer": "Ahead, the rightmost is the escalator going up, the leftmost is the escalator coming down, and the stairs are in the middle."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0446.mp4": {
"video_uid": "3_douyin_2_c/0446",
"caption": "2024-03-05 10.09.41_出行训练日常这小巷的路走不了一点叮铃玎玲_video",
"annotations": [
{
"qid": 16,
"start_time": 25,
"end_time": 27,
"task": "Blind Person Query",
"question": "What is this? Is it a sewer?",
"answer": "Yes, it's a sewer with one cover and half removed."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0448.mp4": {
"video_uid": "3_douyin_2_c/0448",
"caption": "2024-06-13 10.56.40_三个盲人女孩在晚上勇闯海底捞一路上还真是_video",
"annotations": [
{
"qid": 17,
"start_time": 0.0,
"end_time": 2.48,
"task": "Blind Person Query",
"question": "Is this path blocked?",
"answer": "There is a railing ahead, passage is not allowed."
},
{
"qid": 18,
"start_time": 23.15,
"end_time": 25.96,
"task": "Blind Person Query",
"question": "Where is Sun City?",
"answer": "The building ahead is Sun City."
},
{
"qid": 19,
"start_time": 40.93,
"end_time": 40.93,
"task": "Blind Person Query",
"question": "Can you turn over?",
"answer": "Sure, the railing is approximately knee-high, and there are fewer obstacles inside the railing."
},
{
"qid": 20,
"start_time": 46.1,
"end_time": 46.1,
"task": "Blind Person Query",
"question": "Does the car honking concern us?",
"answer": "Sorry, unable to determine at the moment. Please consider asking a passerby."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0450.mp4": {
"video_uid": "3_douyin_2_c/0450",
"caption": "2023-12-01 01.37.05_导盲犬艾希带着小哥哥出门上班挣碎银去了导_video",
"annotations": [
{
"qid": 21,
"start_time": 27.22,
"end_time": 29.87,
"task": "Simulated Query",
"question": "Can we go straight ahead?",
"answer": "Camera malfunction at the upcoming intersection, traffic lights not visible. Proceed with caution."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0452.mp4": {
"video_uid": "3_douyin_2_c/0452",
"caption": "2025-01-03 09.53.35_当导盲犬突然不再盲人小伙身边看看盲人小伙_video",
"annotations": [
{
"qid": 22,
"start_time": 103.61,
"end_time": 105.93,
"task": "Blind Person Query",
"question": "Can I go down here?",
"answer": "There are steps ahead to the right that you can go down."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0453.mp4": {
"video_uid": "3_douyin_2_c/0453",
"caption": "2024-02-07 09.50.00_和朋友一起的出行训练居然还有好心人帮我引_video",
"annotations": [
{
"qid": 23,
"start_time": 3.24,
"end_time": 5.12,
"task": "Simulated Query",
"question": "What's ahead?",
"answer": "There is a trash can ahead, please keep to the right."
},
{
"qid": 24,
"start_time": 69.16,
"end_time": 71.64,
"task": "Blind Person Query",
"question": "What is this?",
"answer": "This is a plastic bottle."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0456.mp4": {
"video_uid": "3_douyin_2_c/0456",
"caption": "2024-11-09 09.54.38_周末的万象城人真的是多呀导盲犬艾希超酷_video",
"annotations": [
{
"qid": 25,
"start_time": 13.49,
"end_time": 14.68,
"task": "Simulated Query",
"question": "Can I go straight ahead?",
"answer": "Caution: Heavy pedestrian traffic ahead. Please proceed carefully."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0460.mp4": {
"video_uid": "3_douyin_2_c/0460",
"caption": "2025-02-12 12.04.28_我又去面馆儿坐地铁啦你们那么喜欢看我坐地_video",
"annotations": [
{
"qid": 26,
"start_time": 2.46,
"end_time": 4.15,
"task": "Blind Person Query",
"question": "Is this device charged?",
"answer": "Ahead of you is a regular staircase, not an escalator."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0463.mp4": {
"video_uid": "3_douyin_2_c/0463",
"caption": "2024-04-15 11.52.07_上次走的盲道因为太多车挡道现在整改啦和我_video",
"annotations": [
{
"qid": 27,
"start_time": 190.83,
"end_time": 193.25,
"task": "Simulated Query",
"question": "Why is it so noisy around here?",
"answer": "Nearby tactile paving is being reconfigured for spacing on both sides."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0466.mp4": {
"video_uid": "3_douyin_2_c/0466",
"caption": "2024-12-21 00.41.21_盲人用手机导航去地球吃饭会错走到火星吗盲_video",
"annotations": [
{
"qid": 28,
"start_time": 41.47,
"end_time": 44.97,
"task": "Blind Person Query",
"question": "Am I going inside or outside now?",
"answer": "You are off course. Please walk back to the right, then turn left."
},
{
"qid": 29,
"start_time": 101.64,
"end_time": 104.16,
"task": "Blind Person Query",
"question": "Is there a Yibin spicy noodles place nearby?",
"answer": "Yibin Spicy Noodles is ahead to your right."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0470.mp4": {
"video_uid": "3_douyin_2_c/0470",
"caption": "2024-11-24 09.49.28_在导盲犬在温州工作两周年的日子发现附近多_video",
"annotations": [
{
"qid": 30,
"start_time": 2.46,
"end_time": 4.28,
"task": "Simulated Query",
"question": "Is it safe to cross the street now?",
"answer": "Currently, the light is red; do not proceed. At 5:55, the light is green; you may proceed."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0472.mp4": {
"video_uid": "3_douyin_2_c/0472",
"caption": "2024-01-30 09.42.00_盲人女孩的出行训练不小心把车撞倒了不好意_video",
"annotations": [
{
"qid": 31,
"start_time": 60.2,
"end_time": 62.28,
"task": "Simulated Query",
"question": "Is it safe to cross the street now?",
"answer": "It's a green light, you may proceed."
},
{
"qid": 32,
"start_time": 86.34,
"end_time": 87.45,
"task": "Simulated Query",
"question": "Please notify me when it's safe to proceed.",
"answer": "Currently, the light is red, unable to proceed. 103.20. Currently, the light is green, you may proceed."
},
{
"qid": 33,
"start_time": 138.11,
"end_time": 139.99,
"task": "Simulated Query",
"question": "Is there a tactile paving nearby?",
"answer": "The tactile paving is directly in front of you."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0476.mp4": {
"video_uid": "3_douyin_2_c/0476",
"caption": "2023-05-29 04.28.29_今天我有点迷糊小哥哥要去十足我却待他到了_video",
"annotations": [
{
"qid": 34,
"start_time": 7.83,
"end_time": 8.84,
"task": "Blind Person Query",
"question": "Is this Ten Zu?",
"answer": "Yes, there is a wall directly ahead of you."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0482.mp4": {
"video_uid": "3_douyin_2_c/0482",
"caption": "2024-02-03 09.50.00_盲人女孩出行训练今天的盲道好难找呀叮铃玎_video",
"annotations": [
{
"qid": 35,
"start_time": 95.57,
"end_time": 96.64,
"task": "Blind Person Query",
"question": "Is this a tactile paving?",
"answer": "Tactile paving ahead."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0483.mp4": {
"video_uid": "3_douyin_2_c/0483",
"caption": "2025-02-01 01.46.30_盲人女生出门买新年的第1杯奶茶盲道上虽然_video",
"annotations": [
{
"qid": 36,
"start_time": 29.85,
"end_time": 33.25,
"task": "Simulated Query",
"question": "Can I go straight ahead?",
"answer": "Streetlight ahead on the right, please proceed with caution."
},
{
"qid": 37,
"start_time": 63.19,
"end_time": 65.2,
"task": "Simulated Query",
"question": "What's ahead?",
"answer": "Electric vehicle ahead, please be cautious."
},
{
"qid": 38,
"start_time": 428.48,
"end_time": 432.13,
"task": "Simulated Query",
"question": "Have you reached the bubble tea shop?",
"answer": "The bubble tea shop is ahead on your left."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0484.mp4": {
"video_uid": "3_douyin_2_c/0484",
"caption": "2024-09-27 08.23.58_导盲汪汪队逛广州商场导盲犬艾希我愿意与导_video",
"annotations": [
{
"qid": 39,
"start_time": 53.66,
"end_time": 55.47,
"task": "Blind Person Query",
"question": "Where to go next?",
"answer": "Continue straight, then turn."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0486.mp4": {
"video_uid": "3_douyin_2_c/0486",
"caption": "2024-12-19 09.58.33_当盲人扔掉盲杖会发生什么盲人盲人的世界视_video",
"annotations": [
{
"qid": 40,
"start_time": 52.47,
"end_time": 53.47,
"task": "Blind Person Query",
"question": "Why can't we turn here?",
"answer": "Ahead is a windowsill."
},
{
"qid": 41,
"start_time": 63.59,
"end_time": 0.0,
"task": "Blind Person Query",
"question": "How do I exit this neighborhood? How do I get out?",
"answer": "Sorry, unable to determine at the moment. Suggest asking a passerby."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0487.mp4": {
"video_uid": "3_douyin_2_c/0487",
"caption": "2024-12-14 11.04.41_盲人在外面怎样寻找饭店盲人视障人士日常_video",
"annotations": [
{
"qid": 42,
"start_time": 6.47,
"end_time": 7.61,
"task": "Blind Person Query",
"question": "Is there a restaurant ahead?",
"answer": "No restaurant ahead."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0489.mp4": {
"video_uid": "3_douyin_2_c/0489",
"caption": "2024-03-11 10.16.36_当盲人出行的时候你直到都会遇到什么吗叮铃_video",
"annotations": [
{
"qid": 43,
"start_time": 15.14,
"end_time": 17.13,
"task": "Blind Person Query",
"question": "What's blocking the tactile paving?",
"answer": "Blocked by a trash bin and an electric scooter."
},
{
"qid": 44,
"start_time": 105.61,
"end_time": 107.71,
"task": "Blind Person Query",
"question": "What is this? Is there a tactile paving?",
"answer": "There is a stone pillar ahead of you, and no tactile paving."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0490.mp4": {
"video_uid": "3_douyin_2_c/0490",
"caption": "2024-04-19 11.11.41_李娃娃体验盲人女孩的一天真的遇到好多好心_video",
"annotations": [
{
"qid": 45,
"start_time": 21.25,
"end_time": 24.29,
"task": "Blind Person Query",
"question": "Could you tell me where the nearest restroom is?",
"answer": "There is no restroom nearby. Please ask the staff for assistance."
},
{
"qid": 46,
"start_time": 341.55,
"end_time": 342.1,
"task": "Blind Person Query",
"question": "Is there anything easy to bump into here?",
"answer": "There are cosmetics directly in front of you."
},
{
"qid": 47,
"start_time": 355.47,
"end_time": 355.47,
"task": "Blind Person Query",
"question": "Where is the subway entrance?",
"answer": "Sorry, currently unable to determine. Please consider asking a passerby."
},
{
"qid": 48,
"start_time": 436.57,
"end_time": 437.58,
"task": "Blind Person Query",
"question": "Where is the nearest tactile paving?",
"answer": "The tactile paving is directly ahead of you."
},
{
"qid": 49,
"start_time": 437.67,
"end_time": 438.53,
"task": "Simulated Query",
"question": "Is there a trash can nearby?",
"answer": "There is a trash can directly in front of you."
},
{
"qid": 50,
"start_time": 566.77,
"end_time": 568.34,
"task": "Blind Person Query",
"question": "Where is the nearest tactile paving around here?",
"answer": "The tactile paving is directly ahead of you."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0491.mp4": {
"video_uid": "3_douyin_2_c/0491",
"caption": "2025-02-17 04.00.39_迷路是生活的彩蛋无障碍出行挑战盲人实录_video",
"annotations": [
{
"qid": 51,
"start_time": 0.0,
"end_time": 1.48,
"task": "Blind Person Query",
"question": "Where is this?",
"answer": "Wall ahead to the right; intersection straight ahead."
},
{
"qid": 52,
"start_time": 27.81,
"end_time": 29.76,
"task": "Blind Person Query",
"question": "Where is the tactile path?",
"answer": "The tactile paving is located ahead to your right."
},
{
"qid": 53,
"start_time": 53.94,
"end_time": 55.75,
"task": "Simulated Query",
"question": "Is there an obstacle ahead?",
"answer": "There are bollards ahead, please walk on either side."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0492.mp4": {
"video_uid": "3_douyin_2_c/0492",
"caption": "2024-09-07 10.01.33_回家导盲犬艾希导盲犬日常小狗搭子_video",
"annotations": [
{
"qid": 54,
"start_time": 25.16,
"end_time": 28.41,
"task": "Blind Person Query",
"question": "Is there anything ahead?",
"answer": "Caution: Electric vehicle ahead."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0493.mp4": {
"video_uid": "3_douyin_2_c/0493",
"caption": "2025-01-07 00.53.20_第一次自己拿着盲杖在陌生的地方出行有点小_video",
"annotations": [
{
"qid": 55,
"start_time": 13.52,
"end_time": 16.02,
"task": "Blind Person Query",
"question": "Is this a road?",
"answer": "Road ahead"
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0494.mp4": {
"video_uid": "3_douyin_2_c/0494",
"caption": "2024-11-17 10.44.45_去扔个垃圾顺便带大家看看是如何带我到达固_video",
"annotations": [
{
"qid": 56,
"start_time": 42.57,
"end_time": 44.36,
"task": "Blind Person Query",
"question": "Is there a road ahead?",
"answer": "Yes, there's a path ahead on the right."
},
{
"qid": 57,
"start_time": 51.25,
"end_time": 52.16,
"task": "Blind Person Query",
"question": "Is there a trash can nearby?",
"answer": "Yes, on your left side."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0496.mp4": {
"video_uid": "3_douyin_2_c/0496",
"caption": "2023-02-14 05.56.58_导盲犬带我去交社保导盲犬日常_video",
"annotations": [
{
"qid": 58,
"start_time": 16.34,
"end_time": 21.08,
"task": "Simulated Query",
"question": "Can we go straight ahead?",
"answer": "There are no traffic lights at the upcoming intersection. Please proceed with caution."
},
{
"qid": 59,
"start_time": 26.85,
"end_time": 28.48,
"task": "Simulated Query",
"question": "Is there an obstacle ahead?",
"answer": "There are stone pillars ahead; please walk on either side."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/0500.mp4": {
"video_uid": "3_douyin_2_c/0500",
"caption": "2024-11-15 09.51.15_一次有爱的1出行进站出站都有好多工作人员_video",
"annotations": [
{
"qid": 60,
"start_time": 19.24,
"end_time": 20.06,
"task": "Simulated Query",
"question": "Where is the security checkpoint?",
"answer": "Security checkpoint is ahead of you."
},
{
"qid": 61,
"start_time": 80.12,
"end_time": 81.4,
"task": "Simulated Query",
"question": "Is the entrance straight ahead?",
"answer": "Yes, going straight leads to the entrance."
},
{
"qid": 62,
"start_time": 121.68,
"end_time": 123.75,
"task": "Simulated Query",
"question": "Is there an elevator?",
"answer": "Yes, there will be staff to assist you."
}
]
},
"videos/reminder_vqa/3_douyin_2_c/1245.mp4": {
"video_uid": "3_douyin_2_c/1245",
"caption": "2024-09-25 06.45.45_视障者独立出行篇1我迷路了虽然走错路了但_video",
"annotations": [
{
"qid": 63,
"start_time": 224.24,
"end_time": 224.24,
"task": "Simulated Query",
"question": "Can I cross to the other side now?",
"answer": "You can cross to the other side now."
},
{
"qid": 64,
"start_time": 259.26,
"end_time": 260.12,
"task": "Simulated Query",
"question": "What store is on the left?",
"answer": "On the left is a clothing store."
},
{
"qid": 65,
"start_time": 328.82,
"end_time": 330.62,
"task": "Simulated Query",
"question": "What's ahead, and why can't I proceed? Where should I go?",
"answer": "Ahead is a shop window. You should turn left and then go straight."
}
]
},
"videos/reminder_vqa/4_bilibili_c/0513.mp4": {
"video_uid": "4_bilibili_c/0513",
"caption": "心暖暖",
"annotations": [
{
"qid": 66,
"start_time": 100.23,
"end_time": 100.23,
"task": "Blind Person Query",
"question": "Where is the entrance to Baolong?",
"answer": "Sorry, unable to determine at the moment. Please consider asking a passerby."
},
{
"qid": 67,
"start_time": 163.05,
"end_time": 163.97,
"task": "Blind Person Query",
"question": "What is this place?",
"answer": "You have arrived at Baolong Hall."
},
{
"qid": 68,
"start_time": 421.83,
"end_time": 428.44,
"task": "Blind Person Query",
"question": "Which direction should I take at the intersection?",
"answer": "Go straight, at Exit A."
}
]
},
"videos/reminder_vqa/4_bilibili_c/0519.mp4": {
"video_uid": "4_bilibili_c/0519",
"caption": "叮当陪我来食堂买早餐,20元买了很多,全程叮当非常激动和开心导盲犬拉布拉多盲人无障碍出行",
"annotations": [
{
"qid": 69,
"start_time": 300.02,
"end_time": 301.72,
"task": "Blind Person Query",
"question": "Is this the cafeteria?",
"answer": "This is the cafeteria."
},
{
"qid": 70,
"start_time": 304.15,
"end_time": 305.06,
"task": "Blind Person Query",
"question": "Is the cafeteria here?",
"answer": "The cafeteria is here."
}
]
},
"videos/reminder_vqa/4_bilibili_c/0524.mp4": {
"video_uid": "4_bilibili_c/0524",
"caption": "第一次在这里坐公交到一个第一次来的小区是否能找对路,先试试看再说公交车盲人正能量",
"annotations": [
{
"qid": 71,
"start_time": 9.27,
"end_time": 10.43,
"task": "Blind Person Query",
"question": "Which bus route is this?",
"answer": "This is bus number 8."
},
{
"qid": 72,
"start_time": 68.98,
"end_time": 70.06,
"task": "Blind Person Query",
"question": "Is it possible to walk here?",
"answer": "Proceed, but be cautious of the steps."
},
{
"qid": 73,
"start_time": 85.07,
"end_time": 86.21,
"task": "Blind Person Query",
"question": "Is it not possible to go above?",
"answer": "Proceed with caution, step up."
},
{
"qid": 74,
"start_time": 88.19,
"end_time": 89.31,
"task": "Blind Person Query",
"question": "Where is the tactile paving?",
"answer": "The tactile paving is ahead to your right."
},
{
"qid": 75,
"start_time": 94.58,
"end_time": 95.39,
"task": "Blind Person Query",
"question": "Is this a tactile paving?",
"answer": "This is a tactile path."
},
{
"qid": 76,
"start_time": 113.35,
"end_time": 114.45,
"task": "Blind Person Query",
"question": "Is this a residential area?",
"answer": "This is a residential area."
},
{
"qid": 77,
"start_time": 125.04,
"end_time": 126.16,
"task": "Blind Person Query",
"question": "Can I pass through here?",
"answer": "The entrance to the community is ahead on the right; you may proceed."
},
{
"qid": 78,
"start_time": 194.9,
"end_time": 196.29,
"task": "Blind Person Query",
"question": "Turn left here?",
"answer": "Continue straight for a while, then turn left."
},
{
"qid": 79,
"start_time": 230.84,
"end_time": 232.02,
"task": "Blind Person Query",
"question": "Am I on the right route now?",
"answer": "On the correct route now."
}
]
},
"videos/reminder_vqa/4_bilibili_c/0525.mp4": {
"video_uid": "4_bilibili_c/0525",
"caption": "两个盲人小姐姐终于找到了面包店~接上集:当时觉得自己运气爆棚,原来“TOUCH”你就在我的眼前~~",
"annotations": [
{
"qid": 80,
"start_time": 24.68,
"end_time": 24.68,
"task": "Blind Person Query",
"question": "What kind of store is this?",
"answer": "The sign on the door reads \"Shang Kong Education,\" which appears to be a tutoring center."
}
]
},
"videos/reminder_vqa/4_bilibili_c/0531.mp4": {
"video_uid": "4_bilibili_c/0531",
"caption": "想尝试全程自己一个人走,不要帮助,到了安检口这里还是翻车了,我的方向感还是不行啊盲人正能量地铁合肥",
"annotations": [
{
"qid": 81,
"start_time": 121.67,
"end_time": 122.82,
"task": "Blind Person Query",
"question": "Swipe your card here?",
"answer": "Yes, swipe your card here."
}
]
},
"videos/reminder_vqa/4_bilibili_c/0537.mp4": {
"video_uid": "4_bilibili_c/0537",
"caption": "视障女孩寻找“藏起来”的咖啡厅",
"annotations": [
{
"qid": 82,
"start_time": 1.8,
"end_time": 3.29,
"task": "Blind Person Query",
"question": "About seventy meters to the coffee shop.",
"answer": "Yes, it's over seventy meters to the coffee shop."
},
{
"qid": 83,
"start_time": 5.38,
"end_time": 7.41,
"task": "Blind Person Query",
"question": "Is there a coffee shop nearby?",
"answer": "No coffee shop nearby detected, 81.49. The coffee shop is directly ahead of you."
},
{
"qid": 84,
"start_time": 19.64,
"end_time": 19.64,
"task": "Blind Person Query",
"question": "Where is Luckin Coffee?",
"answer": "Sorry, unable to determine at the moment. Please consider asking a passerby."
},
{
"qid": 85,
"start_time": 54.93,
"end_time": 56.74,
"task": "Blind Person Query",
"question": "Can you walk along the steps?",
"answer": "You can walk along the steps."
},
{
"qid": 86,
"start_time": 86.67,
"end_time": 88.24,
"task": "Blind Person Query",
"question": "How do I enter here?",
"answer": "After opening the door, there is a step up at the entrance. Proceed with caution."
}
]
},
"videos/reminder_vqa/4_bilibili_c/0539.mp4": {
"video_uid": "4_bilibili_c/0539",
"caption": "盲人出行……",
"annotations": [
{
"qid": 87,
"start_time": 300.02,
"end_time": 302.97,
"task": "Blind Person Query",
"question": "How is the ground here?",
"answer": "The ground is uneven, and there are stairs ahead. Please be careful."
}
]
},
"videos/reminder_vqa/4_bilibili_c/0555.mp4": {
"video_uid": "4_bilibili_c/0555",
"caption": "乒乒乓乓叮叮当当,去图书馆的路我不慌张",
"annotations": [
{
"qid": 88,
"start_time": 318.89,
"end_time": 321.75,
"task": "Simulated Query",
"question": "Is there an obstacle ahead?",
"answer": "Sign and bicycle ahead."
},
{
"qid": 89,
"start_time": 532.28,
"end_time": 534.58,
"task": "Simulated Query",
"question": "Is there a tactile path nearby?",
"answer": "The tactile paving is ahead to your right."
}
]
},
"videos/reminder_vqa/4_bilibili_c/0563.mp4": {
"video_uid": "4_bilibili_c/0563",
"caption": "盲人汪涛没有导盲犬叮当陪伴独自出行去食堂打饭是啥体验?",
"annotations": [
{
"qid": 90,
"start_time": 97.1,
"end_time": 98,
"task": "Simulated Query",
"question": "Is there an obstacle on the road ahead?",
"answer": "The road ahead is clear, please proceed with confidence."
}
]
},
"videos/reminder_vqa/4_bilibili_c/0569.mp4": {
"video_uid": "4_bilibili_c/0569",
"caption": "视障UP去听音乐会的路上被小孩哥认成了大主播,现在不是,但我加油",
"annotations": [
{
"qid": 91,
"start_time": 239.82,
"end_time": 242.06,
"task": "Blind Person Query",
"question": "Should I walk towards the front right?",
"answer": "Yes, walk straight ahead to the right."
},
{
"qid": 92,
"start_time": 272.64,
"end_time": 273.76,
"task": "Blind Person Query",
"question": "Is this a line?",
"answer": "No queue."
},
{
"qid": 93,
"start_time": 407.9,
"end_time": 410.17,
"task": "Simulated Query",
"question": "Is there a step ahead?",
"answer": "Stairs ahead, please be careful and step slowly."
}
]
},
"videos/reminder_vqa/4_bilibili_c/0574.mp4": {
"video_uid": "4_bilibili_c/0574",
"caption": "来郑州玩,今天晚上吃烩面!但我觉得踩坑了!",
"annotations": [
{
"qid": 94,
"start_time": 43.89,
"end_time": 45.19,
"task": "Simulated Query",
"question": "Is there an obstacle ahead?",
"answer": "There is a bollard ahead to your right. Please be cautious."
},
{
"qid": 95,
"start_time": 50.97,
"end_time": 52.98,
"task": "Simulated Query",
"question": "How much longer is the red light?",
"answer": "The light has turned green, you can cross the street now."
}
]
},
"videos/reminder_vqa/4_bilibili_c/0576.mp4": {
"video_uid": "4_bilibili_c/0576",
"caption": "雨天出行",
"annotations": [
{
"qid": 96,
"start_time": 463.27,
"end_time": 466.52,
"task": "Simulated Query",
"question": "Is there an entrance nearby?",
"answer": "The entrance is ahead on the right, with a step up before the entrance."
},
{
"qid": 97,
"start_time": 478.96,
"end_time": 484.9,
"task": "Simulated Query",
"question": "Can I go straight ahead?",
"answer": "No road ahead, please keep to the right."
}
]
},
"videos/reminder_vqa/4_bilibili_c/0579.mp4": {
"video_uid": "4_bilibili_c/0579",
"caption": "【诺子X慧恒】两个盲人去咖啡探店出行路上会遇到些什么?",
"annotations": [
{
"qid": 98,
"start_time": 150.33,
"end_time": 151.55,
"task": "Blind Person Query",
"question": "Is it safe to cross the street?",
"answer": "The light is green, you can go now."
}
]
},
"videos/reminder_vqa/4_bilibili_c/0580.mp4": {
"video_uid": "4_bilibili_c/0580",
"caption": "陌生的路口,陌生的地方,感谢志愿者和商场外部工作人员的帮助,对他们说声感谢盲人正能量志愿者保安感谢你们",
"annotations": [
{
"qid": 99,
"start_time": 338.09,
"end_time": 341.77,
"task": "Blind Person Query",
"question": "Which direction is the store?",
"answer": "Ahead to your right"
}
]
},
"videos/reminder_vqa/4_bilibili_c/0584.mp4": {
"video_uid": "4_bilibili_c/0584",
"caption": "灿观天坛|路上的多感官体验与有关刻板印象的迷思",
"annotations": [
{
"qid": 100,
"start_time": 660.53,
"end_time": 663.02,
"task": "Blind Person Query",
"question": "Can you see the sign on the screen now?",
"answer": "Unable to see the sign."
}
]
},
"videos/reminder_vqa/4_bilibili_c/0589.mp4": {
"video_uid": "4_bilibili_c/0589",
"caption": "坐公交去逛街咯,第一次尝试一个人去步行街那里看看能不能找到,翻车就翻车盲人正能量公交车逛街热闹的一条街",
"annotations": [
{
"qid": 101,
"start_time": 100.68,
"end_time": 103.63,
"task": "Blind Person Query",
"question": "Is it safe to cross here?",
"answer": "No, there's a fence ahead. Please walk to the left."
}
]
},
"videos/reminder_vqa/4_bilibili_c/0603.mp4": {
"video_uid": "4_bilibili_c/0603",
"caption": "盲人在雨中迷失了方向走到了马路中间",
"annotations": [
{
"qid": 102,
"start_time": 79.51,
"end_time": 80.11,
"task": "Simulated Query",
"question": "Is there an obstacle ahead?",
"answer": "Caution: Stone pillars ahead on both sides."
},
{
"qid": 103,
"start_time": 183.38,
"end_time": 184.01,
"task": "Simulated Query",
"question": "Is it safe to cross the street now?",
"answer": "It's a green light, you can cross the street now."
}
]
},
"videos/reminder_vqa/4_bilibili_c/0623.mp4": {
"video_uid": "4_bilibili_c/0623",
"caption": "我和导盲犬的日常之,导盲犬带着我在上海武康路Citywalk",
"annotations": [
{
"qid": 104,
"start_time": 573.48,
"end_time": 574.58,
"task": "Simulated Query",
"question": "Is there a subway station nearby?",
"answer": "No subway station nearby."
},
{
"qid": 105,
"start_time": 601.74,
"end_time": 603.23,
"task": "Simulated Query",
"question": "Is there a tactile path nearby?",
"answer": "The tactile paving is located ahead to your right."
},
{
"qid": 106,
"start_time": 755.61,
"end_time": 763.04,
"task": "Simulated Query",
"question": "Can I go straight ahead?",
"answer": "There are no traffic lights at the upcoming intersection. Please proceed with caution."
}
]
},
"videos/reminder_vqa/4_bilibili_c/0624.mp4": {
"video_uid": "4_bilibili_c/0624",
"caption": "虽然看不到,也阻挡不了我出行的脚步盲人出行OsmoAction5Pro",
"annotations": [
{
"qid": 107,
"start_time": 24.62,
"end_time": 25.55,
"task": "Simulated Query",
"question": "What store is ahead on the right?",
"answer": "Restaurant ahead on the right."
},
{
"qid": 108,
"start_time": 141.02,
"end_time": 141.22,
"task": "Simulated Query",
"question": "Is there a bus stop nearby?",
"answer": "No bus stops nearby."
}
]
},
"videos/reminder_vqa/4_bilibili_c/0625.mp4": {
"video_uid": "4_bilibili_c/0625",
"caption": "盲人自己摸索着去地铁站,虽然路上各种障碍但结局还是完美的",
"annotations": [
{
"qid": 109,
"start_time": 643.17,
"end_time": 645.21,
"task": "Simulated Query",
"question": "Is there a tactile paving nearby?",
"answer": "The tactile path is located ahead to your right."
},
{
"qid": 110,
"start_time": 866.36,
"end_time": 867.59,
"task": "Blind Person Query",
"question": "Is there enough time to cross the intersection?",
"answer": "Enough time has passed since the intersection."
},
{
"qid": 111,
"start_time": 901.8,
"end_time": 903.76,
"task": "Blind Person Query",
"question": "Where is the subway station?",
"answer": "No subway station in sight at the moment. The subway station is directly ahead of you, 915.60 meters away."
}
]
},
"videos/reminder_vqa/4_bilibili_c/0626.mp4": {
"video_uid": "4_bilibili_c/0626",
"caption": "我和导盲犬的日常之narsi带我去西湖逛一逛",
"annotations": [
{
"qid": 112,
"start_time": 11.23,
"end_time": 12.28,
"task": "Simulated Query",
"question": "Is there a tactile paving nearby?",
"answer": "No tactile paving nearby."
},
{
"qid": 113,
"start_time": 46.88,
"end_time": 48.22,
"task": "Simulated Query",
"question": "Is there a trash can nearby?",
"answer": "The trash can is ahead to your left."
}
]
},
"videos/reminder_vqa/4_bilibili_c/0635.mp4": {
"video_uid": "4_bilibili_c/0635",
"caption": "盲人自己在家煮火锅?怎么做到的?今天和朋友吃火锅,出门买食材啦,我们这边的路口车不是很多,但是没想到该担心的不是找不到卖食材的店而是在小区迷路了",
"annotations": [
{
"qid": 114,
"start_time": 321.51,
"end_time": 322.64,
"task": "Simulated Query",
"question": "Is there a car ahead?",
"answer": "There is traffic ahead. Please wait for vehicles to pass before proceeding."
},
{
"qid": 115,
"start_time": 338.74,
"end_time": 339.97,
"task": "Simulated Query",
"question": "Are there parked cars by the roadside? Will I bump into them?",
"answer": "There is a parked car ahead. Continuing straight may lead to a collision. Please be cautious."
}
]
},
"videos/reminder_vqa/4_bilibili_c/0646.mp4": {
"video_uid": "4_bilibili_c/0646",
"caption": "解答粉丝好奇:盲人咋洗衣服",
"annotations": [
{
"qid": 116,
"start_time": 12.71,
"end_time": 19.38,
"task": "Blind Person Query",
"question": "Isn't doing laundry quite easy?",
"answer": "Just take off the clothes and throw them in the washing machine."
},
{
"qid": 117,
"start_time": 69.8,
"end_time": 71.62,
"task": "Simulated Query",
"question": "Is there a trash can nearby?",
"answer": "Trash can ahead on the right."
}
]
},
"videos/reminder_vqa/4_bilibili_c/0650.mp4": {
"video_uid": "4_bilibili_c/0650",
"caption": "记录两个盲人小姐姐出去倒垃圾谁能告诉我,这里到底有几个垃圾桶啊!",
"annotations": [
{
"qid": 118,
"start_time": 5.87,
"end_time": 7.28,
"task": "Blind Person Query",
"question": "Is the trash can over there?",
"answer": "The trash can is directly ahead."
},
{
"qid": 119,
"start_time": 29.38,
"end_time": 30.95,
"task": "Simulated Query",
"question": "Are there any vehicles passing on the road ahead?",
"answer": "Not available at the moment."
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0655.mp4": {
"video_uid": "5_douyin_1_c/0655",
"caption": "2024-12-05 05.21.33_今天不用盲杖和我姐妹打卡春熙路步行街盲人_video",
"annotations": [
{
"qid": 120,
"start_time": 32.83,
"end_time": 35.07,
"task": "Blind Person Query",
"question": "Is there a threshold?",
"answer": "Yes, please be careful."
},
{
"qid": 121,
"start_time": 74.87,
"end_time": 75.47,
"task": "Blind Person Query",
"question": "Is this a tree?",
"answer": "Yes, there are also string lights wrapped around the tree."
},
{
"qid": 122,
"start_time": 118.39,
"end_time": 118.39,
"task": "Blind Person Query",
"question": "Where am I now?",
"answer": "There are some stalls ahead of you, likely on a pedestrian street. You can ask passersby for directions."
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0659.mp4": {
"video_uid": "5_douyin_1_c/0659",
"caption": "2024-10-16 10.38.26_残疾人盲道无障碍天津马拉松盲人备战天津马_video",
"annotations": [
{
"qid": 123,
"start_time": 5.77,
"end_time": 6.1,
"task": "Simulated Query",
"question": "Is there a car in front of me?",
"answer": "No vehicle ahead."
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0676.mp4": {
"video_uid": "5_douyin_1_c/0676",
"caption": "2024-06-21 10.52.48_不知道大家心目中的上海和我的有什么不一样_video",
"annotations": [
{
"qid": 124,
"start_time": 43.83,
"end_time": 44.11,
"task": "Simulated Query",
"question": "Which bus route is arriving?",
"answer": "The incoming bus is route 43."
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0679.mp4": {
"video_uid": "5_douyin_1_c/0679",
"caption": "2024-11-03 04.31.32_今天和妹妹一起逛街非常的开心每一家店都会_video",
"annotations": [
{
"qid": 125,
"start_time": 83.58,
"end_time": 83.85,
"task": "Simulated Query",
"question": "Is there an escalator nearby?",
"answer": "There are escalators directly ahead on your right, all functioning normally."
},
{
"qid": 126,
"start_time": 183.32,
"end_time": 184.14,
"task": "Blind Person Query",
"question": "What is HELY?",
"answer": "Clothing store"
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0691.mp4": {
"video_uid": "5_douyin_1_c/0691",
"caption": "2024-09-14 00.29.50_盲人第一视角出行出来和萌十三约饭来看看会_video",
"annotations": [
{
"qid": 127,
"start_time": 26.57,
"end_time": 26.57,
"task": "Blind Person Query",
"question": "What's wrong with my navigation? Why isn't it speaking anymore?",
"answer": "Sorry, unable to determine at the moment. Please consider asking a passerby."
},
{
"qid": 128,
"start_time": 53.22,
"end_time": 53.22,
"task": "Blind Person Query",
"question": "Should we turn here?",
"answer": "Community entrance ahead on the right."
},
{
"qid": 129,
"start_time": 147.33,
"end_time": 148.34,
"task": "Blind Person Query",
"question": "Can I go through here?",
"answer": "No, there's a bicycle ahead."
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0694.mp4": {
"video_uid": "5_douyin_1_c/0694",
"caption": "2024-02-23 00.30.38_今日盲道上的路况分享真的很不错哦盲道现场_video",
"annotations": [
{
"qid": 130,
"start_time": 32.31,
"end_time": 33.21,
"task": "Blind Person Query",
"question": "What's this?",
"answer": "This is an electric scooter parked on the tactile paving."
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0697.mp4": {
"video_uid": "5_douyin_1_c/0697",
"caption": "2024-10-28 03.14.12_盲人出行不容易结尾有反转无障碍第一视角盲_video",
"annotations": [
{
"qid": 131,
"start_time": 389.49,
"end_time": 390.1,
"task": "Simulated Query",
"question": "Is there a crosswalk nearby?",
"answer": "No crosswalk nearby."
},
{
"qid": 132,
"start_time": 528.3,
"end_time": 529.22,
"task": "Simulated Query",
"question": "Is there anyone nearby I can ask for help?",
"answer": "There are no pedestrians nearby to ask."
},
{
"qid": 133,
"start_time": 604.11,
"end_time": 605.11,
"task": "Simulated Query",
"question": "Is there an obstacle ahead?",
"answer": "There are bollards on both sides, please be careful."
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0698.mp4": {
"video_uid": "5_douyin_1_c/0698",
"caption": "2024-12-14 04.46.08_盲眼之下公园盛景的别样感知第一视角的邂逅_video",
"annotations": [
{
"qid": 134,
"start_time": 8.27,
"end_time": 9.73,
"task": "Blind Person Query",
"question": "Is it also a big tree?",
"answer": "Yes, very large."
},
{
"qid": 135,
"start_time": 143.68,
"end_time": 144.38,
"task": "Blind Person Query",
"question": "Is he a tree or something?",
"answer": "It's a tree."
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0702.mp4": {
"video_uid": "5_douyin_1_c/0702",
"caption": "2024-06-29 10.25.06_盲人第一视角拍摄记录校园生活之雨天去食堂_video",
"annotations": [
{
"qid": 136,
"start_time": 36.32,
"end_time": 36.75,
"task": "Simulated Query",
"question": "Where is the entrance to the cafeteria?",
"answer": "The entrance to the cafeteria is ahead."
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0710.mp4": {
"video_uid": "5_douyin_1_c/0710",
"caption": "2024-12-30 03.30.00_是什么让文子披荆斩棘才找到饭店呢盲人记录_video",
"annotations": [
{
"qid": 137,
"start_time": 35.72,
"end_time": 36.22,
"task": "Simulated Query",
"question": "Is it safe to cross the street now?",
"answer": "Do not cross the road now; a car is passing by."
},
{
"qid": 138,
"start_time": 116.41,
"end_time": 116.66,
"task": "Simulated Query",
"question": "Is there a restaurant ahead?",
"answer": "Yes."
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0720.mp4": {
"video_uid": "5_douyin_1_c/0720",
"caption": "2024-04-13 12.28.14_盲人出行教练视障出行第一视角探索新路线时_video",
"annotations": [
{
"qid": 139,
"start_time": 28.12,
"end_time": 29.14,
"task": "Simulated Query",
"question": "Is there a tactile paving nearby?",
"answer": "The tactile paving is on your right side."
},
{
"qid": 140,
"start_time": 50.6,
"end_time": 51.22,
"task": "Simulated Query",
"question": "Is there an obstacle ahead?",
"answer": "There are parked cars ahead, please be cautious."
},
{
"qid": 141,
"start_time": 222.21,
"end_time": 223.96,
"task": "Simulated Query",
"question": "Is it safe to cross the street now?",
"answer": "Please wait a moment."
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0724.mp4": {
"video_uid": "5_douyin_1_c/0724",
"caption": "2024-11-24 04.23.29_我会一直沉浸在街坊邻居的暖心氛围里有些大_video",
"annotations": [
{
"qid": 142,
"start_time": 150.89,
"end_time": 151,
"task": "Simulated Query",
"question": "What store is ahead on the right?",
"answer": "Barbershop ahead on the right."
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0726.mp4": {
"video_uid": "5_douyin_1_c/0726",
"caption": "2024-02-01 09.48.11_视障出行第一视角游览昆明植物园2试用问路_video",
"annotations": [
{
"qid": 143,
"start_time": 31.27,
"end_time": 32.31,
"task": "Simulated Query",
"question": "Is there an obstacle ahead?",
"answer": "Wooden crates ahead, please keep to the left."
},
{
"qid": 144,
"start_time": 175.9,
"end_time": 176.72,
"task": "Simulated Query",
"question": "Is there a trash can nearby?",
"answer": "Trash bin ahead on the left."
},
{
"qid": 145,
"start_time": 224.16,
"end_time": 225.4,
"task": "Simulated Query",
"question": "Are there pedestrians ahead?",
"answer": "Pedestrian ahead, please be cautious."
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0730.mp4": {
"video_uid": "5_douyin_1_c/0730",
"caption": "2024-11-29 01.56.49_很荣幸来到残联参加这次助残日的活动跟盲人_video",
"annotations": [
{
"qid": 146,
"start_time": 41.57,
"end_time": 42.26,
"task": "Simulated Query",
"question": "Is there a tactile paving nearby?",
"answer": "No tactile paving nearby."
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0737.mp4": {
"video_uid": "5_douyin_1_c/0737",
"caption": "2024-11-16 08.41.11_后天盲人练习走盲道医院太闷了出来走走感谢_video",
"annotations": [
{
"qid": 147,
"start_time": 0.11,
"end_time": 3.03,
"task": "Simulated Query",
"question": "Can you find the tactile paving?",
"answer": "The tactile paving is ahead to your right."
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0739.mp4": {
"video_uid": "5_douyin_1_c/0739",
"caption": "2025-01-09 10.00.00_城市里养狗还是呼吁大家牵好狗绳文明养狗呀_video",
"annotations": [
{
"qid": 148,
"start_time": 19.9,
"end_time": 20.05,
"task": "Simulated Query",
"question": "Is there a bus stop nearby?",
"answer": "The bus stop is just ahead."
},
{
"qid": 149,
"start_time": 35.2,
"end_time": 35.2,
"task": "Blind Person Query",
"question": "Whose puppy is this?",
"answer": "Sorry, unable to determine at the moment. Please consider asking a passerby."
},
{
"qid": 150,
"start_time": 55.31,
"end_time": 55.46,
"task": "Simulated Query",
"question": "Is there a tactile path nearby?",
"answer": "The tactile paving is on your right."
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0741.mp4": {
"video_uid": "5_douyin_1_c/0741",
"caption": "2024-08-23 10.01.34_盲人宝哥第一视角拍摄独自去逛步行街和大家_video_000",
"annotations": [
{
"qid": 151,
"start_time": 277.38,
"end_time": 278.22,
"task": "Simulated Query",
"question": "Is it safe to cross the street now?",
"answer": "There is a vehicle passing ahead now."
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0743.mp4": {
"video_uid": "5_douyin_1_c/0743",
"caption": "2024-01-01 08.34.01_视障出行日常第一视角游览昆明植物园日常级_video",
"annotations": [
{
"qid": 152,
"start_time": 302.24,
"end_time": 303.43,
"task": "Simulated Query",
"question": "Is there an obstacle on the road ahead?",
"answer": "The road ahead is smooth with no obstacles."
},
{
"qid": 153,
"start_time": 411.17,
"end_time": 413.41,
"task": "Simulated Query",
"question": "Is there an obstacle ahead?",
"answer": "There is a flower pot on the right. Please be careful."
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0748.mp4": {
"video_uid": "5_douyin_1_c/0748",
"caption": "2024-02-05 11.49.55_盲人第一视角独立出行这条盲道一言难尽盲道_video",
"annotations": [
{
"qid": 154,
"start_time": 1.62,
"end_time": 1.62,
"task": "Blind Person Query",
"question": "Is there a tactile path nearby?",
"answer": "Sorry, I can't see it right now. Please try scanning the surroundings with the camera."
},
{
"qid": 155,
"start_time": 23.19,
"end_time": 24.07,
"task": "Blind Person Query",
"question": "What is this?",
"answer": "It's a parked car."
},
{
"qid": 156,
"start_time": 135.46,
"end_time": 136.9,
"task": "Simulated Query",
"question": "What's the road condition ahead?",
"answer": "Caution: Snow on the road ahead."
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0749.mp4": {
"video_uid": "5_douyin_1_c/0749",
"caption": "2024-12-09 05.40.50_平凡的一天遇到了两个不平凡的人回家剪视屏_video",
"annotations": [
{
"qid": 157,
"start_time": 48.12,
"end_time": 48.54,
"task": "Blind Person Query",
"question": "Where is the tactile paving?",
"answer": "The tactile paving is on your right."
},
{
"qid": 158,
"start_time": 143.45,
"end_time": 144.11,
"task": "Blind Person Query",
"question": "Are you next to the traffic light?",
"answer": "Traffic light ahead."
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0753.mp4": {
"video_uid": "5_douyin_1_c/0753",
"caption": "2024-09-30 09.00.54_下班啦和姐姐约个串走走走独闯寻姐之路感谢_video",
"annotations": [
{
"qid": 159,
"start_time": 49.62,
"end_time": 50.44,
"task": "Blind Person Query",
"question": "Is anyone there?",
"answer": "Pedestrian ahead on the left."
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0756.mp4": {
"video_uid": "5_douyin_1_c/0756",
"caption": "2024-12-08 02.05.03_这是昨天视屏的后续我带同事去洗完鞋子回家_video",
"annotations": [
{
"qid": 160,
"start_time": 2.23,
"end_time": 3.01,
"task": "Simulated Query",
"question": "What is this?",
"answer": "Bicycle ahead."
},
{
"qid": 161,
"start_time": 34.52,
"end_time": 35.01,
"task": "Blind Person Query",
"question": "Is the light green?",
"answer": "The traffic light has turned green."
},
{
"qid": 162,
"start_time": 50.5,
"end_time": 52.99,
"task": "Simulated Query",
"question": "What is this?",
"answer": "Bicycle ahead on the right."
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0763.mp4": {
"video_uid": "5_douyin_1_c/0763",
"caption": "2024-05-24 10.44.34_这次广州到北京跨越2100多公里和导盲犬_video_000",
"annotations": [
{
"qid": 163,
"start_time": 6.09,
"end_time": 8.86,
"task": "Blind Person Query",
"question": "Is this the entrance to Wudaoying Hutong?",
"answer": "Yes, you are facing"
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0767.mp4": {
"video_uid": "5_douyin_1_c/0767",
"caption": "2025-01-08 02.15.45_本来以为今天的盲道畅通无阻结果盲人独立出_video",
"annotations": [
{
"qid": 164,
"start_time": 13.42,
"end_time": 16.81,
"task": "Blind Person Query",
"question": "Did you hit an electric scooter?",
"answer": "There are rows of electric scooters on the left."
},
{
"qid": 165,
"start_time": 64.51,
"end_time": 65.01,
"task": "Simulated Query",
"question": "Is this where I cross the street?",
"answer": "Crossing the street is not allowed here."
},
{
"qid": 166,
"start_time": 98.16,
"end_time": 99.13,
"task": "Blind Person Query",
"question": "Where is the crosswalk?",
"answer": "No crosswalk nearby."
},
{
"qid": 167,
"start_time": 173.29,
"end_time": 174.02,
"task": "Blind Person Query",
"question": "Is there a crosswalk here?",
"answer": "Crosswalk ahead on the right."
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0780.mp4": {
"video_uid": "5_douyin_1_c/0780",
"caption": "2024-11-23 03.19.47_去买东西的路上遇到了黄博士的粉丝带着我们_video",
"annotations": [
{
"qid": 168,
"start_time": 13.19,
"end_time": 13.44,
"task": "Blind Person Query",
"question": "What is this?",
"answer": "Obstacle ahead."
},
{
"qid": 169,
"start_time": 135.44,
"end_time": 136.51,
"task": "Blind Person Query",
"question": "Have you reached the traffic light intersection?",
"answer": "You have reached the traffic light intersection."
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0781.mp4": {
"video_uid": "5_douyin_1_c/0781",
"caption": "2024-02-08 10.10.02_今天和朋友来步行街逛逛年味十足不过盲道走_video",
"annotations": [
{
"qid": 170,
"start_time": 57.44,
"end_time": 58.11,
"task": "Simulated Query",
"question": "Where is the tactile paving?",
"answer": "The tactile paving is on your left."
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0782.mp4": {
"video_uid": "5_douyin_1_c/0782",
"caption": "2024-09-06 09.10.36_盲人第一视角挑战过门哈哈其实是为了赢一顿_video",
"annotations": [
{
"qid": 171,
"start_time": 48.78,
"end_time": 50.33,
"task": "Simulated Query",
"question": "Is there an obstacle ahead?",
"answer": "Caution: Electric scooters parked ahead."
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0789.mp4": {
"video_uid": "5_douyin_1_c/0789",
"caption": "2024-07-11 05.23.39_盲人小姐姐第一次走上家门口的这条盲道看看_video",
"annotations": [
{
"qid": 172,
"start_time": 22.82,
"end_time": 24.12,
"task": "Simulated Query",
"question": "Is there a trash can nearby?",
"answer": "Trash can ahead on the right."
},
{
"qid": 173,
"start_time": 132.81,
"end_time": 134.39,
"task": "Simulated Query",
"question": "Is there an obstacle ahead?",
"answer": "Caution: Electric scooter parked ahead."
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0806.mp4": {
"video_uid": "5_douyin_1_c/0806",
"caption": "2024-08-16 06.46.48_记录视障女孩薇薇的成长这是薇薇第一次尝试_video",
"annotations": [
{
"qid": 174,
"start_time": 93.72,
"end_time": 94.9,
"task": "Blind Person Query",
"question": "Is there a continuous set of steps on your right side?",
"answer": "There are consecutive steps on the right side."
},
{
"qid": 175,
"start_time": 117.66,
"end_time": 117.66,
"task": "Blind Person Query",
"question": "Which direction is the road?",
"answer": "The road is behind you to the left."
},
{
"qid": 176,
"start_time": 344.39,
"end_time": 345.23,
"task": "Simulated Query",
"question": "Is this the staircase?",
"answer": "Steps ahead."
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0817.mp4": {
"video_uid": "5_douyin_1_c/0817",
"caption": "2024-03-23 05.08.35_今日盲道分享盲道现场实拍无障碍第一视角_video",
"annotations": [
{
"qid": 177,
"start_time": 53.61,
"end_time": 55.64,
"task": "Blind Person Query",
"question": "Am I on the tactile paving now?",
"answer": "You are now on the tactile paving."
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0819.mp4": {
"video_uid": "5_douyin_1_c/0819",
"caption": "2024-02-09 06.22.07_大年三十散步视障出行第一视角一级视力障碍_video",
"annotations": [
{
"qid": 178,
"start_time": 332.92,
"end_time": 333.21,
"task": "Simulated Query",
"question": "Is there a bench nearby?",
"answer": "No benches nearby."
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0820.mp4": {
"video_uid": "5_douyin_1_c/0820",
"caption": "2024-09-04 12.23.43_盲人在陌生的地方迷路会怎样呢短短800米_video",
"annotations": [
{
"qid": 179,
"start_time": 17.41,
"end_time": 17.55,
"task": "Simulated Query",
"question": "What store is ahead?",
"answer": "Ahead is a convenience store."
},
{
"qid": 180,
"start_time": 213.46,
"end_time": 214.22,
"task": "Simulated Query",
"question": "Is there a bus stop nearby?",
"answer": "Bus stop ahead on the right."
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0823.mp4": {
"video_uid": "5_douyin_1_c/0823",
"caption": "2024-03-08 09.17.34_这条盲道太让我意外了过马路安全多了盲道无_video",
"annotations": [
{
"qid": 181,
"start_time": 27.28,
"end_time": 30.83,
"task": "Simulated Query",
"question": "Is it safe to cross the street now?",
"answer": "Sure, please be careful."
},
{
"qid": 182,
"start_time": 57.54,
"end_time": 59.6,
"task": "Simulated Query",
"question": "Is there a tactile paving nearby?",
"answer": "Currently not visible."
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0826.mp4": {
"video_uid": "5_douyin_1_c/0826",
"caption": "2024-05-11 05.19.04_盲人第一视角记录视障人士出行会发生什么跟_video",
"annotations": [
{
"qid": 183,
"start_time": 45.03,
"end_time": 45.33,
"task": "Simulated Query",
"question": "Where is the tactile path?",
"answer": "The tactile paving is ahead on your right."
}
]
},
"videos/reminder_vqa/5_douyin_1_c/0830.mp4": {
"video_uid": "5_douyin_1_c/0830",
"caption": "2024-07-01 03.25.41_没有导盲犬的帮助盲人也可以独立出行上下班_video",
"annotations": [
{
"qid": 184,
"start_time": 92.21,
"end_time": 92.99,
"task": "Simulated Query",
"question": "Is there an obstacle ahead?",
"answer": "Caution: There are metal posts on both sides ahead."
},
{
"qid": 185,
"start_time": 153.72,
"end_time": 155.37,
"task": "Simulated Query",
"question": "Is it safe to cross the street now?",
"answer": "The light is red, please wait."
}
]
},
"videos/reminder_vqa/6_youtube_c/1ds909h4oEo.mp4": {
"video_uid": "6_youtube_c/1132",
"caption": "1ds909h4oEo",
"annotations": [
{
"qid": 186,
"start_time": 263.14,
"end_time": 265.12,
"task": "Simulated Query",
"question": "How is the surrounding traffic?",
"answer": "The road ahead is clear, with trees on both sides."
},
{
"qid": 187,
"start_time": 450.75,
"end_time": 451.22,
"task": "Simulated Query",
"question": "Are there many trees around?",
"answer": "There are no obstacles like trees around."
},
{
"qid": 188,
"start_time": 603.35,
"end_time": 604.43,
"task": "Simulated Query",
"question": "Are there any obstacles on the road ahead?",
"answer": "There are many protruding branches ahead, please proceed with caution."
},
{
"qid": 189,
"start_time": 653.63,
"end_time": 654.44,
"task": "Simulated Query",
"question": "Is there a trash can nearby?",
"answer": "None nearby at the moment."
},
{
"qid": 190,
"start_time": 682.58,
"end_time": 683.0,
"task": "Simulated Query",
"question": "How's the view across the street?",
"answer": "There are trees full of blossoms and lush green lawns; it's incredibly beautiful."
}
]
},
"videos/reminder_vqa/6_youtube_c/33DIOqXgoSI.mp4": {
"video_uid": "6_youtube_c/0963",
"caption": "33DIOqXgoSI",
"annotations": [
{
"qid": 191,
"start_time": 110.36,
"end_time": 111.21,
"task": "Simulated Query",
"question": "Is it safe to cross the street now?",
"answer": "The road is clear of vehicles; you may proceed."
},
{
"qid": 192,
"start_time": 190.98,
"end_time": 192.29,
"task": "Simulated Query",
"question": "Is my camera on?",
"answer": "Your camera is on."
},
{
"qid": 193,
"start_time": 217.6,
"end_time": 218.28,
"task": "Simulated Query",
"question": "Are there any vehicles on the road?",
"answer": "The current traffic light is red, and there are no vehicles. It's recommended to wait until it turns green before crossing."
},
{
"qid": 194,
"start_time": 375.44,
"end_time": 378.42,
"task": "Simulated Query",
"question": "Are there any cars on the road?",
"answer": "There are a few vehicles passing ahead. Please be cautious."
}
]
},
"videos/reminder_vqa/6_youtube_c/3cvmul4ZTMk.mp4": {
"video_uid": "6_youtube_c/1167",
"caption": "3cvmul4ZTMk",
"annotations": [
{
"qid": 195,
"start_time": 34.67,
"end_time": 36.9,
"task": "Simulated Query",
"question": "Are we approaching the end of the escalator?",
"answer": "Approaching the end of the escalator, please watch your step."
},
{
"qid": 196,
"start_time": 50.24,
"end_time": 51.55,
"task": "Simulated Query",
"question": "Is there a restroom nearby?",
"answer": "Ahead to your right."
},
{
"qid": 197,
"start_time": 296.27,
"end_time": 298.96,
"task": "Blind Person Query",
"question": "Where is the eyeglass store?",
"answer": "There are no eyewear stores nearby right now. You can continue moving forward to find one."
},
{
"qid": 198,
"start_time": 494.45,
"end_time": 495.0,
"task": "Simulated Query",
"question": "Is the store entrance ahead?",
"answer": "Yes, the door is open and accessible."
},
{
"qid": 199,
"start_time": 513.53,
"end_time": 514.88,
"task": "Simulated Query",
"question": "Is there a guide ahead?",
"answer": "There is a guide directly in front of you."
}
]
},
"videos/reminder_vqa/6_youtube_c/4HBaQN-8-ws.mp4": {
"video_uid": "6_youtube_c/1004",
"caption": "4HBaQN-8-ws",
"annotations": [
{
"qid": 200,
"start_time": 190.45,
"end_time": 191.35,
"task": "Simulated Query",
"question": "What's in front of me?",
"answer": "There is a railing ahead with no path. Please turn right to continue walking."
},
{
"qid": 201,
"start_time": 222.2,
"end_time": 222.5,
"task": "Simulated Query",
"question": "Is my phone camera on?",
"answer": "Your phone's camera is detected to be on and ready to take photos."
},
{
"qid": 202,
"start_time": 256.7,
"end_time": 258.19,
"task": "Simulated Query",
"question": "Am I walking in the right direction?",
"answer": "Ahead of you is a grassy area. Please walk to the right."
}
]
},
"videos/reminder_vqa/6_youtube_c/4QA-jYc1GWk.mp4": {
"video_uid": "6_youtube_c/1072",
"caption": "4QA-jYc1GWk",
"annotations": [
{
"qid": 203,
"start_time": 146.28,
"end_time": 147.21,
"task": "Simulated Query",
"question": "Where is the traffic light button?",
"answer": "On the right-hand side."
}
]
},
"videos/reminder_vqa/6_youtube_c/5Sz0x7-9iDg.mp4": {
"video_uid": "6_youtube_c/0948",
"caption": "5Sz0x7-9iDg",
"annotations": [
{
"qid": 204,
"start_time": 789.25,
"end_time": 790.1,
"task": "Simulated Query",
"question": "Is it safe to cross the street now?",
"answer": "It's safe to cross the street now."
}
]
},
"videos/reminder_vqa/6_youtube_c/5gtUXtawqHk.mp4": {
"video_uid": "6_youtube_c/1127",
"caption": "5gtUXtawqHk",
"annotations": [
{
"qid": 205,
"start_time": 21.22,
"end_time": 22.07,
"task": "Blind Person Query",
"question": "What's wrong with my cane? Is it bent?",
"answer": "Cane is functioning properly, you may continue walking."
},
{
"qid": 206,
"start_time": 39.39,
"end_time": 40.23,
"task": "Simulated Query",
"question": "Is there a subway station nearby?",
"answer": "Not yet, please keep walking forward."
},
{
"qid": 207,
"start_time": 41.89,
"end_time": 42.92,
"task": "Blind Person Query",
"question": "Should I turn left here?",
"answer": "You are currently at an intersection. You can turn left to proceed."
}
]
},
"videos/reminder_vqa/6_youtube_c/5woRn7phPSc.mp4": {
"video_uid": "6_youtube_c/0924",
"caption": "5woRn7phPSc",
"annotations": [
{
"qid": 208,
"start_time": 634.88,
"end_time": 635.2,
"task": "Simulated Query",
"question": "Where is the tactile paving now?",
"answer": "The tactile paving is on your left."
},
{
"qid": 209,
"start_time": 652.0,
"end_time": 652.1,
"task": "Blind Person Query",
"question": "Where is my tactile paving?",
"answer": "On your right."
}
]
},
"videos/reminder_vqa/6_youtube_c/6f7fXaLcvyQ.mp4": {
"video_uid": "6_youtube_c/1124",
"caption": "6f7fXaLcvyQ",
"annotations": [
{
"qid": 210,
"start_time": 324.66,
"end_time": 325.96,
"task": "Simulated Query",
"question": "Is the road ahead clear?",
"answer": "Ahead of you is a grassy area. Please turn left or right to continue walking."
},
{
"qid": 211,
"start_time": 371.43,
"end_time": 374.11,
"task": "Simulated Query",
"question": "Is there a bench nearby?",
"answer": "There is a bench 100 meters ahead of you."
},
{
"qid": 212,
"start_time": 764.71,
"end_time": 765.21,
"task": "Simulated Query",
"question": "Is there a tactile path nearby?",
"answer": "No tactile paving nearby."
},
{
"qid": 213,
"start_time": 1005.6,
"end_time": 1007.46,
"task": "Simulated Query",
"question": "Can I go straight now?",
"answer": "Sure, there are steps ahead. Please watch your step."
},
{
"qid": 214,
"start_time": 1102.42,
"end_time": 1103.97,
"task": "Simulated Query",
"question": "Where should I go now?",
"answer": "To your right, you can go down a small slope, or to your left, there's a path you can walk straight ahead."
},
{
"qid": 215,
"start_time": 1159.95,
"end_time": 1160.87,
"task": "Simulated Query",
"question": "Where am I?",
"answer": "You are now in the grass."
}
]
},
"videos/reminder_vqa/6_youtube_c/6nrtuXVdF7s.mp4": {
"video_uid": "6_youtube_c/1057",
"caption": "6nrtuXVdF7s",
"annotations": [
{
"qid": 216,
"start_time": 71.41,
"end_time": 72.33,
"task": "Simulated Query",
"question": "Is this a trash can?",
"answer": "Ahead is a green trash bin."
},
{
"qid": 217,
"start_time": 127.49,
"end_time": 128.06,
"task": "Simulated Query",
"question": "Why can't I go up here?",
"answer": "Steps ahead."
}
]
},
"videos/reminder_vqa/6_youtube_c/7DAKfDbQutM.mp4": {
"video_uid": "6_youtube_c/0961",
"caption": "7DAKfDbQutM",
"annotations": [
{
"qid": 218,
"start_time": 411.56,
"end_time": 412.21,
"task": "Simulated Query",
"question": "What store is on the left?",
"answer": "On the left is a clothing store."
}
]
},
"videos/reminder_vqa/6_youtube_c/7uvvgcRpqzo.mp4": {
"video_uid": "6_youtube_c/1105",
"caption": "7uvvgcRpqzo",
"annotations": [
{
"qid": 219,
"start_time": 123.98,
"end_time": 124.55,
"task": "Simulated Query",
"question": "Where is the entrance to the cafeteria?",
"answer": "The entrance to the cafeteria is ahead."
}
]
},
"videos/reminder_vqa/6_youtube_c/7wSy5RIFys4.mp4": {
"video_uid": "6_youtube_c/1182",
"caption": "7wSy5RIFys4",
"annotations": [
{
"qid": 220,
"start_time": 50.68,
"end_time": 50.75,
"task": "Blind Person Query",
"question": "Is this the heritage district? Can I take photos here?",
"answer": "This is the heritage district, feel free to take photos."
},
{
"qid": 221,
"start_time": 142.3,
"end_time": 143.05,
"task": "Simulated Query",
"question": "What did I just hit?",
"answer": "Watch out for the metal manhole cover you just passed."
},
{
"qid": 222,
"start_time": 218.88,
"end_time": 219.7,
"task": "Blind Person Query",
"question": "Why is there only one person in the photo?",
"answer": "The person across from you is slightly to your left. Please move a bit to your right."
}
]
},
"videos/reminder_vqa/6_youtube_c/ASONyQx6i44.mp4": {
"video_uid": "6_youtube_c/1146",
"caption": "ASONyQx6i44",
"annotations": [
{
"qid": 223,
"start_time": 251.53,
"end_time": 252.21,
"task": "Simulated Query",
"question": "Are there any obstacles in the path?",
"answer": "No obstacles in your path."
},
{
"qid": 224,
"start_time": 287.72,
"end_time": 288.21,
"task": "Simulated Query",
"question": "Is there a bus stop nearby?",
"answer": "No bus stops nearby."
}
]
},
"videos/reminder_vqa/6_youtube_c/BylsFJkAwFY.mp4": {
"video_uid": "6_youtube_c/1024",
"caption": "BylsFJkAwFY",
"annotations": [
{
"qid": 225,
"start_time": 346.39,
"end_time": 347.21,
"task": "Simulated Query",
"question": "Is there a bus stop nearby?",
"answer": "No bus stops nearby."
},
{
"qid": 226,
"start_time": 652.9,
"end_time": 653.1,
"task": "Simulated Query",
"question": "Is there a bus stop on the left?",
"answer": "No bus stop on the left."
},
{
"qid": 227,
"start_time": 883.38,
"end_time": 883.38,
"task": "Simulated Query",
"question": "Is there someone nearby I can ask?",
"answer": "There are no pedestrians nearby to ask."
}
]
},
"videos/reminder_vqa/6_youtube_c/EwaoySdifJo.mp4": {
"video_uid": "6_youtube_c/1174",
"caption": "EwaoySdifJo",
"annotations": [
{
"qid": 228,
"start_time": 244.66,
"end_time": 245.1,
"task": "Simulated Query",
"question": "Is it safe to cross the street now?",
"answer": "Do not cross the street now; the light is red."
}
]
},
"videos/reminder_vqa/6_youtube_c/GcfrTBUqmHI.mp4": {
"video_uid": "6_youtube_c/0957",
"caption": "GcfrTBUqmHI",
"annotations": [
{
"qid": 229,
"start_time": 16.02,
"end_time": 17.01,
"task": "Simulated Query",
"question": "What was just on the road?",
"answer": "It's a muddy area with snow. There is still snow nearby, please be cautious."
},
{
"qid": 230,
"start_time": 144.15,
"end_time": 145.6,
"task": "Simulated Query",
"question": "Is it safe to cross the street now?",
"answer": "The road is currently clear of vehicles, you may proceed."
},
{
"qid": 231,
"start_time": 276.87,
"end_time": 277.8,
"task": "Simulated Query",
"question": "Is there an accessible pedestrian signal in front of me?",
"answer": "Yes."
},
{
"qid": 232,
"start_time": 964.13,
"end_time": 965.11,
"task": "Simulated Query",
"question": "Is there a crosswalk ahead?",
"answer": "No crosswalk ahead."
},
{
"qid": 233,
"start_time": 1065.49,
"end_time": 1066.01,
"task": "Simulated Query",
"question": "Is the light ahead green?",
"answer": "There is no green light ahead; it is still red."
},
{
"qid": 234,
"start_time": 1273.22,
"end_time": 1274.11,
"task": "Simulated Query",
"question": "Are there any obstacles ahead while walking?",
"answer": "No obstacles ahead."
},
{
"qid": 235,
"start_time": 1406.87,
"end_time": 1407.21,
"task": "Simulated Query",
"question": "Where is the bus stop?",
"answer": "Bus stop ahead"
}
]
},
"videos/reminder_vqa/6_youtube_c/HEnoNdBQYMM.mp4": {
"video_uid": "6_youtube_c/1078",
"caption": "HEnoNdBQYMM",
"annotations": [
{
"qid": 236,
"start_time": 47.78,
"end_time": 48.05,
"task": "Blind Person Query",
"question": "Where is the first floor?",
"answer": "The first floor is above your fingertips."
},
{
"qid": 237,
"start_time": 112.11,
"end_time": 113.46,
"task": "Blind Person Query",
"question": "Let me check, no cars, right?",
"answer": "No vehicles around."
},
{
"qid": 238,
"start_time": 169.92,
"end_time": 170.88,
"task": "Blind Person Query",
"question": "Almost there, right?",
"answer": "15 meters ahead is the end."
},
{
"qid": 239,
"start_time": 211.5,
"end_time": 211.5,
"task": "Blind Person Query",
"question": "Has the sun set?",
"answer": "No, it's still daytime."
},
{
"qid": 240,
"start_time": 718.6800000000001,
"end_time": 719.11,
"task": "Simulated Query",
"question": "Is there a tactile paving nearby?",
"answer": "No tactile paving nearby."
}
]
},
"videos/reminder_vqa/6_youtube_c/InoFPPHdNNw.mp4": {
"video_uid": "6_youtube_c/0966",
"caption": "InoFPPHdNNw",
"annotations": [
{
"qid": 241,
"start_time": 38.31,
"end_time": 39.61,
"task": "Blind Person Query",
"question": "Can I pass through ahead?",
"answer": "The road ahead is too narrow."
}
]
},
"videos/reminder_vqa/6_youtube_c/PTu8hZyzR5A.mp4": {
"video_uid": "6_youtube_c/1184",
"caption": "PTu8hZyzR5A",
"annotations": [
{
"qid": 242,
"start_time": 139.46,
"end_time": 143.59,
"task": "Simulated Query",
"question": "Are there steps ahead?",
"answer": "Brick pit ahead, please detour."
}
]
},
"videos/reminder_vqa/6_youtube_c/QKECqWCmSz0.mp4": {
"video_uid": "6_youtube_c/0865",
"caption": "QKECqWCmSz0",
"annotations": [
{
"qid": 243,
"start_time": 328.66,
"end_time": 329.0,
"task": "Simulated Query",
"question": "Is the road ahead a regular road, or does it have branches?",
"answer": "There is only a straight road ahead. You can walk straight along it."
},
{
"qid": 244,
"start_time": 403.06,
"end_time": 404.0,
"task": "Simulated Query",
"question": "Is my guide dog nearby?",
"answer": "The guide dog is now in front of you, 2 meters away."
},
{
"qid": 245,
"start_time": 480.4,
"end_time": 481.32,
"task": "Simulated Query",
"question": "Why did the guide dog stop walking?",
"answer": "There's a fallen tree nearby, and it stops to sniff."
},
{
"qid": 246,
"start_time": 623.44,
"end_time": 624.18,
"task": "Simulated Query",
"question": "Am I off the road now?",
"answer": "You are now at the right edge of the road, with a ditch on your right."
},
{
"qid": 247,
"start_time": 848.27,
"end_time": 850.11,
"task": "Simulated Query",
"question": "Are there any intersections nearby?",
"answer": "The fork is on your left."
}
]
},
"videos/reminder_vqa/6_youtube_c/R2F4NMUHUOg.mp4": {
"video_uid": "6_youtube_c/0863",
"caption": "R2F4NMUHUOg",
"annotations": [
{
"qid": 248,
"start_time": 1069.83,
"end_time": 1071.31,
"task": "Simulated Query",
"question": "Are you at the intersection?",
"answer": "Approaching an intersection, please proceed with caution."
}
]
},
"videos/reminder_vqa/6_youtube_c/RI0ji50CCFE.mp4": {
"video_uid": "6_youtube_c/1016",
"caption": "RI0ji50CCFE",
"annotations": [
{
"qid": 249,
"start_time": 351.36,
"end_time": 351.5,
"task": "Simulated Query",
"question": "Is there a trash can nearby?",
"answer": "There is a trash can ahead on your right."
},
{
"qid": 250,
"start_time": 441.09,
"end_time": 442.11,
"task": "Simulated Query",
"question": "Are there traffic lights at the current intersection?",
"answer": "There is a traffic light across the street, currently green. Please proceed with caution."
}
]
},
"videos/reminder_vqa/6_youtube_c/RNhAHZ052sM.mp4": {
"video_uid": "6_youtube_c/1162",
"caption": "RNhAHZ052sM",
"annotations": [
{
"qid": 251,
"start_time": 116.4,
"end_time": 121.95,
"task": "Simulated Query",
"question": "Is there no road ahead?",
"answer": "Ahead is a grassy area, and to the right is a fork in the path."
}
]
},
"videos/reminder_vqa/6_youtube_c/Raxt_sl43uE.mp4": {
"video_uid": "6_youtube_c/1144",
"caption": "Raxt_sl43uE",
"annotations": [
{
"qid": 252,
"start_time": 7.45,
"end_time": 9.01,
"task": "Simulated Query",
"question": "Is it safe to cross the street now?",
"answer": "The road is clear now; you may cross."
}
]
},
"videos/reminder_vqa/6_youtube_c/RzdylOqNWuo.mp4": {
"video_uid": "6_youtube_c/1069",
"caption": "RzdylOqNWuo",
"annotations": [
{
"qid": 253,
"start_time": 33.17,
"end_time": 34.22,
"task": "Simulated Query",
"question": "Are there any obstacles ahead while walking?",
"answer": "No obstacles ahead while walking."
}
]
},
"videos/reminder_vqa/6_youtube_c/S9gNyNjgGd0.mp4": {
"video_uid": "6_youtube_c/1125",
"caption": "S9gNyNjgGd0",
"annotations": [
{
"qid": 254,
"start_time": 373.93,
"end_time": 375.81,
"task": "Simulated Query",
"question": "What's around?",
"answer": "On the left, there are roadblocks and parked vehicles; on the right, there are rows of shops."
},
{
"qid": 255,
"start_time": 530.41,
"end_time": 531.44,
"task": "Simulated Query",
"question": "Is this a staircase?",
"answer": "Stairs ahead."
}
]
},
"videos/reminder_vqa/6_youtube_c/SIVuWkB7cf8.mp4": {
"video_uid": "6_youtube_c/1019",
"caption": "SIVuWkB7cf8",
"annotations": [
{
"qid": 256,
"start_time": 43.2,
"end_time": 43.58,
"task": "Simulated Query",
"question": "Is this a utility pole?",
"answer": "There is a utility pole ahead."
},
{
"qid": 257,
"start_time": 92.56,
"end_time": 94.27,
"task": "Simulated Query",
"question": "Is it safe to cross the street now?",
"answer": "No vehicles can pass around."
},
{
"qid": 258,
"start_time": 311.71,
"end_time": 312.35,
"task": "Simulated Query",
"question": "Are there any vehicles passing by now?",
"answer": "No vehicles around the road."
},
{
"qid": 259,
"start_time": 357.52,
"end_time": 358.77,
"task": "Simulated Query",
"question": "Is the light green now?",
"answer": "Red light ahead, do not proceed."
},
{
"qid": 260,
"start_time": 478.71,
"end_time": 480.22,
"task": "Simulated Query",
"question": "What's the surrounding traffic like?",
"answer": "There are many pedestrians ahead, with snow on both sides."
},
{
"qid": 261,
"start_time": 622.25,
"end_time": 623.78,
"task": "Simulated Query",
"question": "Is the staff member approaching me?",
"answer": "A staff member is approaching you to hand you a card."
},
{
"qid": 262,
"start_time": 876.15,
"end_time": 879.7,
"task": "Simulated Query",
"question": "Has the doctor finished the injection?",
"answer": "Yes, it's done."
}
]
},
"videos/reminder_vqa/6_youtube_c/UIzK662zc6g.mp4": {
"video_uid": "6_youtube_c/1040",
"caption": "UIzK662zc6g",
"annotations": [
{
"qid": 263,
"start_time": 726.8199999999999,
"end_time": 727.11,
"task": "Simulated Query",
"question": "Are there any obstacles nearby?",
"answer": "Caution: Tree trunk ahead on the right underground."
}
]
},
"videos/reminder_vqa/6_youtube_c/V7ozDYwxKHY.mp4": {
"video_uid": "6_youtube_c/1089",
"caption": "V7ozDYwxKHY",
"annotations": [
{
"qid": 264,
"start_time": 375.65,
"end_time": 376.22,
"task": "Simulated Query",
"question": "Is there a tactile paving nearby?",
"answer": "There is no tactile paving nearby."
}
]
},
"videos/reminder_vqa/6_youtube_c/Wqe9vJPCk1c.mp4": {
"video_uid": "6_youtube_c/1145",
"caption": "Wqe9vJPCk1c",
"annotations": [
{
"qid": 265,
"start_time": 21.24,
"end_time": 22.42,
"task": "Blind Person Query",
"question": "Is there an elevator here?",
"answer": "Ahead is an escalator. Please veer right to access it."
},
{
"qid": 266,
"start_time": 34.14,
"end_time": 35.62,
"task": "Blind Person Query",
"question": "Where is the elevator going up?",
"answer": "The elevator going up is on the left."
},
{
"qid": 267,
"start_time": 51.66,
"end_time": 52.49,
"task": "Blind Person Query",
"question": "Is it this way?",
"answer": "Clothing store ahead."
}
]
},
"videos/reminder_vqa/6_youtube_c/XxHUI0DK5Sw.mp4": {
"video_uid": "6_youtube_c/0856",
"caption": "XxHUI0DK5Sw",
"annotations": [
{
"qid": 268,
"start_time": 634.99,
"end_time": 635.59,
"task": "Simulated Query",
"question": "Is this a trash can?",
"answer": "Ahead is a green trash bin."
}
]
},
"videos/reminder_vqa/6_youtube_c/Zm0jpI95814.mp4": {
"video_uid": "6_youtube_c/0977",
"caption": "Zm0jpI95814",
"annotations": [
{
"qid": 269,
"start_time": 72.07,
"end_time": 73.11,
"task": "Simulated Query",
"question": "Is it safe to cross the street now?",
"answer": "Red light ahead, and no crosswalk."
}
]
},
"videos/reminder_vqa/6_youtube_c/bQv1rjiD4Rs.mp4": {
"video_uid": "6_youtube_c/1021",
"caption": "bQv1rjiD4Rs",
"annotations": [
{
"qid": 270,
"start_time": 333.1,
"end_time": 333.93,
"task": "Simulated Query",
"question": "Is there an intersection ahead of me?",
"answer": "Yes, there are no traffic lights at the current intersection. Please proceed slowly."
},
{
"qid": 271,
"start_time": 547.74,
"end_time": 548.0,
"task": "Simulated Query",
"question": "Are there any benches nearby?",
"answer": "None nearby."
}
]
},
"videos/reminder_vqa/6_youtube_c/dNdvgXISUtc.mp4": {
"video_uid": "6_youtube_c/0906",
"caption": "dNdvgXISUtc",
"annotations": [
{
"qid": 272,
"start_time": 321.64,
"end_time": 321.88,
"task": "Simulated Query",
"question": "Is it safe to cross the street now?",
"answer": "The light is green, you may proceed."
}
]
},
"videos/reminder_vqa/6_youtube_c/e6FW1dFoQV8.mp4": {
"video_uid": "6_youtube_c/1076",
"caption": "e6FW1dFoQV8",
"annotations": [
{
"qid": 273,
"start_time": 222.36,
"end_time": 223.11,
"task": "Simulated Query",
"question": "Is there a crosswalk ahead?",
"answer": "No crosswalk ahead."
}
]
},
"videos/reminder_vqa/6_youtube_c/eEqQ1k3UDvw.mp4": {
"video_uid": "6_youtube_c/0996",
"caption": "eEqQ1k3UDvw",
"annotations": [
{
"qid": 274,
"start_time": 20.1,
"end_time": 21,
"task": "Simulated Query",
"question": "Is there a downhill ahead?",
"answer": "Yes, there is a downhill ahead."
}
]
},
"videos/reminder_vqa/6_youtube_c/guHt6TmmJdc.mp4": {
"video_uid": "6_youtube_c/0999",
"caption": "guHt6TmmJdc",
"annotations": [
{
"qid": 275,
"start_time": 349.68,
"end_time": 351.56,
"task": "Simulated Query",
"question": "Is there a trash can nearby?",
"answer": "Trash bin ahead."
},
{
"qid": 276,
"start_time": 416.09,
"end_time": 417.01,
"task": "Simulated Query",
"question": "Is it safe to cross the street now?",
"answer": "The traffic light across the street is red. Please wait."
},
{
"qid": 277,
"start_time": 541.33,
"end_time": 543.97,
"task": "Simulated Query",
"question": "What's in front of me?",
"answer": "There is a wall ahead of you, please move around it."
}
]
},
"videos/reminder_vqa/6_youtube_c/gxW_ixSdvbA.mp4": {
"video_uid": "6_youtube_c/1138",
"caption": "gxW_ixSdvbA",
"annotations": [
{
"qid": 278,
"start_time": 270.91,
"end_time": 271.11,
"task": "Simulated Query",
"question": "Are there any obstacles nearby?",
"answer": "There are no obstacles nearby."
}
]
},
"videos/reminder_vqa/6_youtube_c/h0oyAhRAf-Q.mp4": {
"video_uid": "6_youtube_c/1172",
"caption": "h0oyAhRAf-Q",
"annotations": [
{
"qid": 279,
"start_time": 113.91,
"end_time": 117.96,
"task": "Simulated Query",
"question": "What's the road condition ahead?",
"answer": "There is a red light ahead, and many vehicles are passing by."
},
{
"qid": 280,
"start_time": 562.02,
"end_time": 563.1,
"task": "Simulated Query",
"question": "Where is the subway door?",
"answer": "The subway door is ahead on your left."
}
]
},
"videos/reminder_vqa/6_youtube_c/hsroJTR5yu0.mp4": {
"video_uid": "6_youtube_c/1010",
"caption": "hsroJTR5yu0",
"annotations": [
{
"qid": 281,
"start_time": 60.8,
"end_time": 61.22,
"task": "Simulated Query",
"question": "Are there any obstacles nearby?",
"answer": "There are no obstacles nearby."
},
{
"qid": 282,
"start_time": 141.66,
"end_time": 142.16,
"task": "Simulated Query",
"question": "What store is on the left?",
"answer": "Clothing store on the left."
}
]
},
"videos/reminder_vqa/6_youtube_c/i-gh1ndIkok.mp4": {
"video_uid": "6_youtube_c/0873",
"caption": "i-gh1ndIkok",
"annotations": [
{
"qid": 283,
"start_time": 48.98,
"end_time": 49.36,
"task": "Blind Person Query",
"question": "Is this an intersection?",
"answer": "Fork ahead on the left."
},
{
"qid": 284,
"start_time": 73.99,
"end_time": 74.56,
"task": "Blind Person Query",
"question": "Is it safe to cross the street here?",
"answer": "Do not cross the road without a crosswalk."
}
]
},
"videos/reminder_vqa/6_youtube_c/lUstC6pClf8.mp4": {
"video_uid": "6_youtube_c/1156",
"caption": "lUstC6pClf8",
"annotations": [
{
"qid": 285,
"start_time": 413.73,
"end_time": 414.11,
"task": "Simulated Query",
"question": "Is there an intersection nearby?",
"answer": "No nearby intersections."
}
]
},
"videos/reminder_vqa/6_youtube_c/mjJQnhnXCaE.mp4": {
"video_uid": "6_youtube_c/1107",
"caption": "mjJQnhnXCaE",
"annotations": [
{
"qid": 286,
"start_time": 85.51,
"end_time": 86.77,
"task": "Simulated Query",
"question": "Am I off the road now?",
"answer": "You are now at the right edge of the road."
},
{
"qid": 287,
"start_time": 260.63,
"end_time": 261.66,
"task": "Simulated Query",
"question": "Are there any vehicles passing by now?",
"answer": "No vehicles around the road."
},
{
"qid": 288,
"start_time": 542.4,
"end_time": 544.3,
"task": "Simulated Query",
"question": "Is the light red or green now?",
"answer": "Red light ahead."
}
]
},
"videos/reminder_vqa/6_youtube_c/q6IkSoTz8k0.mp4": {
"video_uid": "6_youtube_c/1012",
"caption": "q6IkSoTz8k0",
"annotations": [
{
"qid": 289,
"start_time": 110.96,
"end_time": 111.72,
"task": "Simulated Query",
"question": "Did a vehicle just pass by?",
"answer": "Yes, and it's fast. Please be cautious."
},
{
"qid": 290,
"start_time": 151.76,
"end_time": 152.0,
"task": "Simulated Query",
"question": "Is this a traffic light indicator?",
"answer": "Yes, it's right in front of you."
},
{
"qid": 291,
"start_time": 194.43,
"end_time": 195.48,
"task": "Simulated Query",
"question": "Am I walking in the right direction?",
"answer": "There is a flower bed directly ahead. Please turn to either side to continue walking."
}
]
},
"videos/reminder_vqa/6_youtube_c/qfNe2_al4uY.mp4": {
"video_uid": "6_youtube_c/0864",
"caption": "qfNe2_al4uY",
"annotations": [
{
"qid": 292,
"start_time": 319.41,
"end_time": 321.03,
"task": "Simulated Query",
"question": "What's the surrounding traffic like?",
"answer": "There is a lot of snow on both sides."
},
{
"qid": 293,
"start_time": 438.46,
"end_time": 440.55,
"task": "Simulated Query",
"question": "Is the light green now?",
"answer": "Red light ahead, do not proceed."
},
{
"qid": 294,
"start_time": 555.3,
"end_time": 557.21,
"task": "Simulated Query",
"question": "Has the bus arrived?",
"answer": "The bus is stopping by the roadside."
}
]
},
"videos/reminder_vqa/6_youtube_c/rteEROHHsyU.mp4": {
"video_uid": "6_youtube_c/1133",
"caption": "rteEROHHsyU",
"annotations": [
{
"qid": 295,
"start_time": 632.49,
"end_time": 633.73,
"task": "Simulated Query",
"question": "What are the current road conditions?",
"answer": "You are now on a dirt road, with branches on your right. Please be careful."
},
{
"qid": 296,
"start_time": 676.02,
"end_time": 677.35,
"task": "Simulated Query",
"question": "What's ahead now?",
"answer": "Ahead is a reed pit, please watch your step."
},
{
"qid": 297,
"start_time": 835.01,
"end_time": 836.77,
"task": "Simulated Query",
"question": "Is there a road junction ahead?",
"answer": "Yes, you can go straight or head towards your right front."
}
]
},
"videos/reminder_vqa/6_youtube_c/sYSmVJooaR0.mp4": {
"video_uid": "6_youtube_c/1120",
"caption": "sYSmVJooaR0",
"annotations": [
{
"qid": 298,
"start_time": 621.94,
"end_time": 625.15,
"task": "Simulated Query",
"question": "Is my current location correct?",
"answer": "There is a wall in front of you. Please turn right and walk."
},
{
"qid": 299,
"start_time": 632.7,
"end_time": 634.4,
"task": "Simulated Query",
"question": "Is there a traffic light at this intersection?",
"answer": "Not detected, please proceed slowly."
}
]
},
"videos/reminder_vqa/6_youtube_c/sk_9TzsIIxU.mp4": {
"video_uid": "6_youtube_c/0842",
"caption": "sk_9TzsIIxU",
"annotations": [
{
"qid": 300,
"start_time": 84.65,
"end_time": 85.0,
"task": "Simulated Query",
"question": "What's the current traffic situation?",
"answer": "The road is clear and wide, with no obstacles. You can proceed directly."
},
{
"qid": 301,
"start_time": 213.77,
"end_time": 214.1,
"task": "Simulated Query",
"question": "What did I just touch?",
"answer": "It's a wooden bench."
},
{
"qid": 302,
"start_time": 258.52,
"end_time": 259.0,
"task": "Simulated Query",
"question": "Where is the sidewalk?",
"answer": "You are currently on the lawn, the sidewalk is ahead of you."
}
]
},
"videos/reminder_vqa/6_youtube_c/syEfjg3AUKc.mp4": {
"video_uid": "6_youtube_c/1027",
"caption": "syEfjg3AUKc",
"annotations": [
{
"qid": 303,
"start_time": 307.28,
"end_time": 307.55,
"task": "Simulated Query",
"question": "Is there a crosswalk ahead?",
"answer": "No crosswalk ahead."
},
{
"qid": 304,
"start_time": 525.42,
"end_time": 526.1,
"task": "Simulated Query",
"question": "Is there a tactile paving nearby?",
"answer": "No tactile paving nearby."
}
]
},
"videos/reminder_vqa/6_youtube_c/tE3mQS0Xa84.mp4": {
"video_uid": "6_youtube_c/1152",
"caption": "tE3mQS0Xa84",
"annotations": [
{
"qid": 305,
"start_time": 792.65,
"end_time": 793.22,
"task": "Simulated Query",
"question": "Are there any obstacles in the walking path?",
"answer": "Sign on the left."
},
{
"qid": 306,
"start_time": 844.9,
"end_time": 845.11,
"task": "Simulated Query",
"question": "What store is on the left?",
"answer": "The shop on the left sells fruits and vegetables."
}
]
},
"videos/reminder_vqa/6_youtube_c/txzmf21e9M4.mp4": {
"video_uid": "6_youtube_c/1178",
"caption": "txzmf21e9M4",
"annotations": [
{
"qid": 307,
"start_time": 630.08,
"end_time": 630.51,
"task": "Simulated Query",
"question": "Is it safe to cross the street now?",
"answer": "Green light ahead, you may proceed."
}
]
},
"videos/reminder_vqa/6_youtube_c/uO8wJQ9EARY.mp4": {
"video_uid": "6_youtube_c/0885",
"caption": "uO8wJQ9EARY",
"annotations": [
{
"qid": 308,
"start_time": 1065.45,
"end_time": 1066.66,
"task": "Blind Person Query",
"question": "Is there a fork ahead?",
"answer": "Fork ahead on the right."
}
]
},
"videos/reminder_vqa/6_youtube_c/yk2phhAzU6A.mp4": {
"video_uid": "6_youtube_c/1015",
"caption": "yk2phhAzU6A",
"annotations": [
{
"qid": 309,
"start_time": 459.3,
"end_time": 460.1,
"task": "Simulated Query",
"question": "Is it safe to cross the street now?",
"answer": "You can cross the street now."
},
{
"qid": 310,
"start_time": 508.03,
"end_time": 508.95,
"task": "Simulated Query",
"question": "Is there a bus stop on the left?",
"answer": "No bus stop on the left side."
}
]
},
"videos/reminder_vqa/6_youtube_c/zmZOh_1mdtU.mp4": {
"video_uid": "6_youtube_c/0837",
"caption": "zmZOh_1mdtU",
"annotations": [
{
"qid": 311,
"start_time": 111.42,
"end_time": 112,
"task": "Simulated Query",
"question": "Is there a car at the current intersection?",
"answer": "No cars are currently passing through."
},
{
"qid": 312,
"start_time": 122.2,
"end_time": 123,
"task": "Simulated Query",
"question": "Is there a public restroom nearby?",
"answer": "Currently unavailable, please continue forward to keep searching."
}
]
},
"videos/reminder_vqa/6_youtube_c/ztOUbO2hVh8.mp4": {
"video_uid": "6_youtube_c/0888",
"caption": "ztOUbO2hVh8",
"annotations": [
{
"qid": 313,
"start_time": 309.73,
"end_time": 310.0,
"task": "Simulated Query",
"question": "What did I bump into?",
"answer": "Warning signs and barriers ahead, please move to the left."
},
{
"qid": 314,
"start_time": 347.09,
"end_time": 348.12,
"task": "Simulated Query",
"question": "Is there a trash can nearby?",
"answer": "The trash bin is ahead of you."
},
{
"qid": 315,
"start_time": 509.42,
"end_time": 510.0,
"task": "Simulated Query",
"question": "What's behind me?",
"answer": "It's a pile of wood."
}
]
},
"videos/reminder_vqa/7_youtube_shorts_c/14J7k02ACKU.mp4": {
"video_uid": "7_youtube_shorts_c/1218",
"caption": "14J7k02ACKU",
"annotations": [
{
"qid": 316,
"start_time": 24.07,
"end_time": 25.01,
"task": "Simulated Query",
"question": "Is there a downhill slope ahead?",
"answer": "Yes, the slope is gentle, please proceed slowly."
},
{
"qid": 317,
"start_time": 44.56,
"end_time": 45.49,
"task": "Simulated Query",
"question": "Is there a bench nearby?",
"answer": "There are no benches nearby; please continue forward to find one."
},
{
"qid": 318,
"start_time": 50.34,
"end_time": 51.27,
"task": "Simulated Query",
"question": "Is there a road branch ahead?",
"answer": "There is a fork in the road 10 meters ahead."
}
]
},
"videos/reminder_vqa/7_youtube_shorts_c/6bTcguUkKKc.mp4": {
"video_uid": "7_youtube_shorts_c/1193",
"caption": "6bTcguUkKKc",
"annotations": [
{
"qid": 319,
"start_time": 27.55,
"end_time": 29.04,
"task": "Simulated Query",
"question": "Is it safe to cross the street now?",
"answer": "The road is clear of vehicles and pedestrians; you may cross."
},
{
"qid": 320,
"start_time": 37.1,
"end_time": 37.74,
"task": "Simulated Query",
"question": "Is there a trash can nearby?",
"answer": "There is a trash can ahead on your right."
},
{
"qid": 321,
"start_time": 40.8,
"end_time": 40.86,
"task": "Simulated Query",
"question": "Am I near the elevator?",
"answer": "The elevator is now on your right."
}
]
},
"videos/reminder_vqa/7_youtube_shorts_c/6kiGEsg4fwo.mp4": {
"video_uid": "7_youtube_shorts_c/1234",
"caption": "6kiGEsg4fwo",
"annotations": [
{
"qid": 322,
"start_time": 4.44,
"end_time": 7.98,
"task": "Simulated Query",
"question": "What's the road condition ahead?",
"answer": "Ahead are ascending steps and a parking lot."
}
]
},
"videos/reminder_vqa/7_youtube_shorts_c/GkQ_kATde6o.mp4": {
"video_uid": "7_youtube_shorts_c/1213",
"caption": "GkQ_kATde6o",
"annotations": [
{
"qid": 323,
"start_time": 3.49,
"end_time": 4.77,
"task": "Simulated Query",
"question": "Is there a car at the upcoming intersection?",
"answer": "No cars at the intersection, you can proceed directly."
},
{
"qid": 324,
"start_time": 14.39,
"end_time": 15.03,
"task": "Simulated Query",
"question": "What am I touching?",
"answer": "It's protruding willow branches, but they won't hinder your progress."
},
{
"qid": 325,
"start_time": 29.69,
"end_time": 30.46,
"task": "Simulated Query",
"question": "What's the current traffic situation?",
"answer": "Ahead is a sidewalk path with a small crack. Please lift your feet and proceed slowly."
}
]
},
"videos/reminder_vqa/7_youtube_shorts_c/Py8b88YmCJ4.mp4": {
"video_uid": "7_youtube_shorts_c/1200",
"caption": "Py8b88YmCJ4",
"annotations": [
{
"qid": 326,
"start_time": 7.09,
"end_time": 7.5,
"task": "Simulated Query",
"question": "Am I veering off the crosswalk?",
"answer": "You are currently off course; the crosswalk is ahead to your left."
},
{
"qid": 327,
"start_time": 11.65,
"end_time": 12.0,
"task": "Simulated Query",
"question": "Am I close to the other side of the street?",
"answer": "You've reached the other side of the street. There are steps ahead, please be careful."
},
{
"qid": 328,
"start_time": 18.21,
"end_time": 18.9,
"task": "Simulated Query",
"question": "Is there a public restroom nearby?",
"answer": "No, please continue forward to search."
}
]
},
"videos/reminder_vqa/7_youtube_shorts_c/UxZmkE3_qXg.mp4": {
"video_uid": "7_youtube_shorts_c/1241",
"caption": "UxZmkE3_qXg",
"annotations": [
{
"qid": 329,
"start_time": 15.46,
"end_time": 16.8,
"task": "Simulated Query",
"question": "Is there no road ahead?",
"answer": "Road ahead is blocked. Continue straight to return to the road."
}
]
},
"videos/reminder_vqa/7_youtube_shorts_c/n2rQ9OUQTtg.mp4": {
"video_uid": "7_youtube_shorts_c/1191",
"caption": "n2rQ9OUQTtg",
"annotations": [
{
"qid": 330,
"start_time": 6.12,
"end_time": 6.5,
"task": "Simulated Query",
"question": "What's on my left?",
"answer": "It's a barrier; please be cautious."
},
{
"qid": 331,
"start_time": 10.26,
"end_time": 10.56,
"task": "Simulated Query",
"question": "Is there a trash can nearby?",
"answer": "No, please continue forward to search."
}
]
},
"videos/reminder_vqa/7_youtube_shorts_c/p-eS2Z2jfkE.mp4": {
"video_uid": "7_youtube_shorts_c/1227",
"caption": "p-eS2Z2jfkE",
"annotations": [
{
"qid": 332,
"start_time": 3.89,
"end_time": 5.33,
"task": "Simulated Query",
"question": "Is there a trash can nearby?",
"answer": "No trash bin nearby. Please continue forward to find one."
},
{
"qid": 333,
"start_time": 29.42,
"end_time": 30.28,
"task": "Simulated Query",
"question": "Is there staff ahead?",
"answer": "There are no staff members around in the current environment."
}
]
},
"videos/reminder_vqa/7_youtube_shorts_c/vKBI1BoYv-4.mp4": {
"video_uid": "7_youtube_shorts_c/1203",
"caption": "vKBI1BoYv-4",
"annotations": [
{
"qid": 334,
"start_time": 5.21,
"end_time": 6.2,
"task": "Simulated Query",
"question": "Where is the audible traffic signal?",
"answer": "Ahead of you, please continue straight."
},
{
"qid": 335,
"start_time": 49.68,
"end_time": 50.78,
"task": "Simulated Query",
"question": "Is there a trash can nearby?",
"answer": "None available currently; we suggest you continue forward."
}
]
},
"videos/reminder_vqa/7_youtube_shorts_c/xIxGDLF88eM.mp4": {
"video_uid": "7_youtube_shorts_c/1188",
"caption": "xIxGDLF88eM",
"annotations": [
{
"qid": 336,
"start_time": 13.07,
"end_time": 14.22,
"task": "Simulated Query",
"question": "Is there a fork in the road ahead?",
"answer": "Yes, there are both on the left front and right front."
}
]
},
"videos/reminder_vqa/7_youtube_shorts_c/xlBEuggdVaI.mp4": {
"video_uid": "7_youtube_shorts_c/1192",
"caption": "xlBEuggdVaI",
"annotations": [
{
"qid": 337,
"start_time": 6.63,
"end_time": 7.71,
"task": "Simulated Query",
"question": "Is there a road junction ahead?",
"answer": "Yes, stairs go up ahead on the left, and stairs go down ahead on the right."
},
{
"qid": 338,
"start_time": 20.15,
"end_time": 20.2,
"task": "Simulated Query",
"question": "Are there any benches nearby where I can rest?",
"answer": "Not available now, you can move forward to search again."
}
]
},
"videos/reminder_vqa/7_youtube_shorts_c/xp1tjKCngvY.mp4": {
"video_uid": "7_youtube_shorts_c/1189",
"caption": "xp1tjKCngvY",
"annotations": [
{
"qid": 339,
"start_time": 4.23,
"end_time": 5.64,
"task": "Simulated Query",
"question": "What's the road condition ahead?",
"answer": "The road ahead is currently smooth and passable."
},
{
"qid": 340,
"start_time": 9.57,
"end_time": 10.21,
"task": "Simulated Query",
"question": "Are there steps ahead?",
"answer": "There is a single step ahead. Please lift your foot and proceed slowly."
}
]
}
}
|