File size: 201,927 Bytes
4640624 | 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 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 | [
{
"Video_file_name": "videos/C-DdsrBNI4s.mp4",
"Saliency_file_name": "saliency/C-DdsrBNI4s.mp4",
"Fixations": "fixations/C-DdsrBNI4s.json",
"YouTubeName": "Virtual Plant Cell: Phosphate Focus. VPC 360\u00b0 by Plant Energy Biology.",
"YouTubeChannel": "Plant Energy Biology",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/MD2j9vNcFWo.mp4",
"Saliency_file_name": "saliency/MD2j9vNcFWo.mp4",
"Fixations": "fixations/MD2j9vNcFWo.json",
"YouTubeName": "Wendy and fight - Ranzenbach (Austria)",
"YouTubeChannel": "360 Video - Apartments Tour",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/DlV2dDTo_j0.mp4",
"Saliency_file_name": "saliency/DlV2dDTo_j0.mp4",
"Fixations": "fixations/DlV2dDTo_j0.json",
"YouTubeName": "Recorrido 360\u00ba en Realidad Virtual",
"YouTubeChannel": "Poli",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/Kcn7vUBWx5c.mp4",
"Saliency_file_name": "saliency/Kcn7vUBWx5c.mp4",
"Fixations": "fixations/Kcn7vUBWx5c.json",
"YouTubeName": "360 Video of LCS-15 Christening and Launch",
"YouTubeChannel": "U.S. Navy",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/1rcVOHJeRPc.mp4",
"Saliency_file_name": "saliency/1rcVOHJeRPc.mp4",
"Fixations": "fixations/1rcVOHJeRPc.json",
"YouTubeName": "Big Thunder Mountain Railroad - Magic Kingdom - 360 - 5.2k",
"YouTubeChannel": "CraigCoaster1010",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/jzIjiAdiZKM.mp4",
"Saliency_file_name": "saliency/jzIjiAdiZKM.mp4",
"Fixations": "fixations/jzIjiAdiZKM.json",
"YouTubeName": "Kraken - Sea World Orlando - 360 - 5.2k",
"YouTubeChannel": "CraigCoaster1010",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/iXJxSnIRY8k.mp4",
"Saliency_file_name": "saliency/iXJxSnIRY8k.mp4",
"Fixations": "fixations/iXJxSnIRY8k.json",
"YouTubeName": "1969 Camaro VS 1962 Chevrolet 2 Wagon Burnout 8k 360",
"YouTubeChannel": "Snake River Dragway",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/izJGzipyZ0k.mp4",
"Saliency_file_name": "saliency/izJGzipyZ0k.mp4",
"Fixations": "fixations/izJGzipyZ0k.json",
"YouTubeName": "1971 Pontiac GTO and a 1973 Dodge Challenger burn out 8k 360",
"YouTubeChannel": "Snake River Dragway",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/qs499DLcB5Q.mp4",
"Saliency_file_name": "saliency/qs499DLcB5Q.mp4",
"Fixations": "fixations/qs499DLcB5Q.json",
"YouTubeName": "1966 Ford Fairlane - 2018 Dodge Challenger 8k 360",
"YouTubeChannel": "Snake River Dragway",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/bGc9VMtKXes.mp4",
"Saliency_file_name": "saliency/bGc9VMtKXes.mp4",
"Fixations": "fixations/bGc9VMtKXes.json",
"YouTubeName": "Burnout 8k 360",
"YouTubeChannel": "Snake River Dragway",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/PB8u_BAnCAE.mp4",
"Saliency_file_name": "saliency/PB8u_BAnCAE.mp4",
"Fixations": "fixations/PB8u_BAnCAE.json",
"YouTubeName": "\u179a\u17bc\u1794\u1790\u178f\u17e3\u17e6\u17e0\u1798\u17bb\u1793\u200b\u179a\u17c0\u1794\u1780\u17b6\u179a\u200b\u179a\u1794\u179f\u17cb\u200b\u179f\u17bb\u1795\u17b6\u178f \u1793\u17b7\u1784 \u179f\u17bb\u17a1\u17b6\u179a\u17c9\u17bc \u1793\u17c5\u200b\u179a\u17c4\u1784\u179b\u17d2\u1781\u17c4\u1793\u200b\u179f\u1798\u17b6\u1782\u1798\u179f\u17b7\u179b\u17d2\u1794\u17c8\u200b\u179f\u17bb\u179c\u178e\u17d2\u178e\u1797\u17bc\u1798\u17b7",
"YouTubeChannel": "Get Inside 360",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/aoVHcD95qKI.mp4",
"Saliency_file_name": "saliency/aoVHcD95qKI.mp4",
"Fixations": "fixations/aoVHcD95qKI.json",
"YouTubeName": "Sophat CHY and Solaroo HAM 360 Pre-wedding Video Tour",
"YouTubeChannel": "Get Inside 360",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/DsYIOcl6jRs.mp4",
"Saliency_file_name": "saliency/DsYIOcl6jRs.mp4",
"Fixations": "fixations/DsYIOcl6jRs.json",
"YouTubeName": "360 Video - Medellin Metro Ride - Colombia",
"YouTubeChannel": "Richard's World Traveler",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/jLUZRx-FSY4.mp4",
"Saliency_file_name": "saliency/jLUZRx-FSY4.mp4",
"Fixations": "fixations/jLUZRx-FSY4.json",
"YouTubeName": "Heide Park 07.08.16",
"YouTubeChannel": "Waldemar Elsukov",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/_0uLkgTd-HA.mp4",
"Saliency_file_name": "saliency/_0uLkgTd-HA.mp4",
"Fixations": "fixations/_0uLkgTd-HA.json",
"YouTubeName": "360 Walt Disney Big Thunder Mountain Railway ride Thru",
"YouTubeChannel": "James Wolff",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/vtVpVR8EXhE.mp4",
"Saliency_file_name": "saliency/vtVpVR8EXhE.mp4",
"Fixations": "fixations/vtVpVR8EXhE.json",
"YouTubeName": "\u4eac\u30bb\u30e9\u30c9\u30fc\u30e0360\u5ea6\u52d5\u753b\u3000aiuto360VR-TV\u3000\u65e5\u30cf\u30e0\u6226 \u5e73\u7530\u3000\u52d5\u753b\u7de8\u96c6 \u5927\u962a\uff5cyoutube\u6d3b\u7528\u30db\u30fc\u30e0\u30da\u30fc\u30b8\u5236\u4f5c\u30fb\u3082\u306e\u307e\u306d\u6d3e\u9063\u30fb\u30de\u30b8\u30b7\u30e3\u30f3\u6d3e\u9063\u30fb\u30a4\u30d9\u30f3\u30c8\u4f01\u753b\u306f\u30a2\u30e6\u30fc\u30c8\u3078\u304a\u4efb\u305b",
"YouTubeChannel": "aiuto television youtube\u30c1\u30e3\u30f3\u30cd\u30eb",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/xocvNAcZWPo.mp4",
"Saliency_file_name": "saliency/xocvNAcZWPo.mp4",
"Fixations": "fixations/xocvNAcZWPo.json",
"YouTubeName": "Weihnachtsmarkt Basel [Schweiz] VR 360\u00b0 Video | (4K)",
"YouTubeChannel": "Basel",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/VH5ax9KOgII.mp4",
"Saliency_file_name": "saliency/VH5ax9KOgII.mp4",
"Fixations": "fixations/VH5ax9KOgII.json",
"YouTubeName": "\u5408\u6b61\u5c71\u838a\u53ca\u5408\u6b61\u5c16\u5c71\u767b\u5c71\u53e3&3158\u5496\u5561\u66a8\u5408\u6b61\u5c71\u7ba1\u7406\u7ad9 (\u7d93\u7def360\u5ea6=720\u5ea6)",
"YouTubeChannel": "\u9f8d\u9707\u98db",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/1sJ0Tsp7_5Y.mp4",
"Saliency_file_name": "saliency/1sJ0Tsp7_5Y.mp4",
"Fixations": "fixations/1sJ0Tsp7_5Y.json",
"YouTubeName": "VR 360 Video Zaragoza Fountain | JUMP Omni | 4K",
"YouTubeChannel": "The hottest girls",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/6VgxbGHS6EU.mp4",
"Saliency_file_name": "saliency/6VgxbGHS6EU.mp4",
"Fixations": "fixations/6VgxbGHS6EU.json",
"YouTubeName": "VR 360\u00ba Estadios de Puebla Cuauhtemoc Acropolis y Hnos Serdan Live 4k",
"YouTubeChannel": "The hottest girls",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/VY00fatb_FI.mp4",
"Saliency_file_name": "saliency/VY00fatb_FI.mp4",
"Fixations": "fixations/VY00fatb_FI.json",
"YouTubeName": "VR 360\u00ba Monumento al Taco \"Vela Votiva\" en Puebla Virtual 4k",
"YouTubeChannel": "The hottest girls",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/hiKmPkrqphM.mp4",
"Saliency_file_name": "saliency/hiKmPkrqphM.mp4",
"Fixations": "fixations/hiKmPkrqphM.json",
"YouTubeName": "360 Video AICM Sala de espera B Aeropuerto CDMX VR 4k",
"YouTubeChannel": "The hottest girls",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/EgEC8PSKMmY.mp4",
"Saliency_file_name": "saliency/EgEC8PSKMmY.mp4",
"Fixations": "fixations/EgEC8PSKMmY.json",
"YouTubeName": "360 Aeropuerto CDMX AICM terminal 1 Realidad Virtual VR 4k",
"YouTubeChannel": "The hottest girls",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/iQ6R5VsVVW8.mp4",
"Saliency_file_name": "saliency/iQ6R5VsVVW8.mp4",
"Fixations": "fixations/iQ6R5VsVVW8.json",
"YouTubeName": "Schumacher Homes Heritage E Great Room 360 Video",
"YouTubeChannel": "Schumacher Homes",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/rMQze1aAlFg.mp4",
"Saliency_file_name": "saliency/rMQze1aAlFg.mp4",
"Fixations": "fixations/rMQze1aAlFg.json",
"YouTubeName": "Schumacher Homes | Tour of Ashland Design Studio",
"YouTubeChannel": "Schumacher Homes",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/tvvbLSyED6A.mp4",
"Saliency_file_name": "saliency/tvvbLSyED6A.mp4",
"Fixations": "fixations/tvvbLSyED6A.json",
"YouTubeName": "Maratonmarschen 2019, 72 timmar",
"YouTubeChannel": "Nicklas Ulvn\u00e4s",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/uJwwYSie8fY.mp4",
"Saliency_file_name": "saliency/uJwwYSie8fY.mp4",
"Fixations": "fixations/uJwwYSie8fY.json",
"YouTubeName": "Mia Campo2",
"YouTubeChannel": "belenvalentina",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/x87OJgD9gIw.mp4",
"Saliency_file_name": "saliency/x87OJgD9gIw.mp4",
"Fixations": "fixations/x87OJgD9gIw.json",
"YouTubeName": "The Giant Puppets at the HIFA 2018 Opening Party",
"YouTubeChannel": "highontalentzw",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/bK0mO8Gik4E.mp4",
"Saliency_file_name": "saliency/bK0mO8Gik4E.mp4",
"Fixations": "fixations/bK0mO8Gik4E.json",
"YouTubeName": "TONE (Sarah Elizabeth Charles & Jarrett Cherner) rehearsal at HIFA 2018",
"YouTubeChannel": "highontalentzw",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/shLwJnr9-Jk.mp4",
"Saliency_file_name": "saliency/shLwJnr9-Jk.mp4",
"Fixations": "fixations/shLwJnr9-Jk.json",
"YouTubeName": "360 0113 stitched straightened injected",
"YouTubeChannel": "highontalentzw",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/7R7pLhws89E.mp4",
"Saliency_file_name": "saliency/7R7pLhws89E.mp4",
"Fixations": "fixations/7R7pLhws89E.json",
"YouTubeName": "360 0115 stitched straightened injected",
"YouTubeChannel": "highontalentzw",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/KBZZsXitHz4.mp4",
"Saliency_file_name": "saliency/KBZZsXitHz4.mp4",
"Fixations": "fixations/KBZZsXitHz4.json",
"YouTubeName": "[Pelotas360\u00b0] Catedral",
"YouTubeChannel": "Dimensio - Solu\u00e7\u00f5es Tecnol\u00f3gicas",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/OOP8cOKWutk.mp4",
"Saliency_file_name": "saliency/OOP8cOKWutk.mp4",
"Fixations": "fixations/OOP8cOKWutk.json",
"YouTubeName": "Immersion dans un univers gourmand",
"YouTubeChannel": "Lenscom Image et Communication",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/7hqmWgSgWSw.mp4",
"Saliency_file_name": "saliency/7hqmWgSgWSw.mp4",
"Fixations": "fixations/7hqmWgSgWSw.json",
"YouTubeName": "Folias - La despedida - con Proyecto Sub",
"YouTubeChannel": "JPL ",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/t3NHm3DjVd0.mp4",
"Saliency_file_name": "saliency/t3NHm3DjVd0.mp4",
"Fixations": "fixations/t3NHm3DjVd0.json",
"YouTubeName": "Marine biologist doing some work in Patagonia 360 VR diving - Starting the dive",
"YouTubeChannel": "JPL ",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/vg5B6SuYfwE.mp4",
"Saliency_file_name": "saliency/vg5B6SuYfwE.mp4",
"Fixations": "fixations/vg5B6SuYfwE.json",
"YouTubeName": "Scuola volo AGV - Atterraggio (video 360)",
"YouTubeChannel": "Paolo Dalprato - Fotografo, VT e mappe, AI",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/8RJ1ayMkbss.mp4",
"Saliency_file_name": "saliency/8RJ1ayMkbss.mp4",
"Fixations": "fixations/8RJ1ayMkbss.json",
"YouTubeName": "Ht Grup Makina 360\u00b0 Video",
"YouTubeChannel": "360TV",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/B84rbh2dveU.mp4",
"Saliency_file_name": "saliency/B84rbh2dveU.mp4",
"Fixations": "fixations/B84rbh2dveU.json",
"YouTubeName": "SunSky Villa Huahin (360\u00b0 VR Video)",
"YouTubeChannel": "Virtual Amber",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/VhqDFm709Jc.mp4",
"Saliency_file_name": "saliency/VhqDFm709Jc.mp4",
"Fixations": "fixations/VhqDFm709Jc.json",
"YouTubeName": "360 Demo Exterior and Interior",
"YouTubeChannel": "N Flight Video",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/ofojcHNJJEk.mp4",
"Saliency_file_name": "saliency/ofojcHNJJEk.mp4",
"Fixations": "fixations/ofojcHNJJEk.json",
"YouTubeName": "360 Trail downhill - La S de Hanna - Fly Camara",
"YouTubeChannel": "MOUNTAIN BIKE VIDEOS - MTBGYE",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/br5kkOvqL2A.mp4",
"Saliency_file_name": "saliency/br5kkOvqL2A.mp4",
"Fixations": "fixations/br5kkOvqL2A.json",
"YouTubeName": "MIS VIAJES",
"YouTubeChannel": "DISCOVER ASIA",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/2aic1YDGpgk.mp4",
"Saliency_file_name": "saliency/2aic1YDGpgk.mp4",
"Fixations": "fixations/2aic1YDGpgk.json",
"YouTubeName": "MIS VIAJES",
"YouTubeChannel": "DISCOVER ASIA",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/b5RFwOaqHw0.mp4",
"Saliency_file_name": "saliency/b5RFwOaqHw0.mp4",
"Fixations": "fixations/b5RFwOaqHw0.json",
"YouTubeName": "DSCN0108",
"YouTubeChannel": "DISCOVER ASIA",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/b9qNVE6BLCc.mp4",
"Saliency_file_name": "saliency/b9qNVE6BLCc.mp4",
"Fixations": "fixations/b9qNVE6BLCc.json",
"YouTubeName": "DSCN0112",
"YouTubeChannel": "DISCOVER ASIA",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/Z3FSG0tMKcU.mp4",
"Saliency_file_name": "saliency/Z3FSG0tMKcU.mp4",
"Fixations": "fixations/Z3FSG0tMKcU.json",
"YouTubeName": "Agoutis Playing Around Near Camera Trap (360 VR)",
"YouTubeChannel": "Digital Naturalism Laboratories",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/_EkYsiJG148.mp4",
"Saliency_file_name": "saliency/_EkYsiJG148.mp4",
"Fixations": "fixations/_EkYsiJG148.json",
"YouTubeName": "\u5bcc\u5c71 \u5449\u7fbd \u68a8\u5712\u3000\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3\u30d5\u30a9\u30c8\u3000VR\u52d5\u753b",
"YouTubeChannel": "ToyamaGuide",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/OlZWp8yYfxw.mp4",
"Saliency_file_name": "saliency/OlZWp8yYfxw.mp4",
"Fixations": "fixations/OlZWp8yYfxw.json",
"YouTubeName": "Japanese Traditional \"HIKIYAMA\"",
"YouTubeChannel": "ToyamaGuide",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/N2qUjhgV39I.mp4",
"Saliency_file_name": "saliency/N2qUjhgV39I.mp4",
"Fixations": "fixations/N2qUjhgV39I.json",
"YouTubeName": "\u6c37\u898b\u3000\u7345\u5b50\u821e (Region:HimiCity / Japanese culture Lion dance Dedication)",
"YouTubeChannel": "ToyamaGuide",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/T3dRqx4z7sE.mp4",
"Saliency_file_name": "saliency/T3dRqx4z7sE.mp4",
"Fixations": "fixations/T3dRqx4z7sE.json",
"YouTubeName": "BIGG BOSS koncert 1",
"YouTubeChannel": "Youare360 video",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/j7nBjM59UfQ.mp4",
"Saliency_file_name": "saliency/j7nBjM59UfQ.mp4",
"Fixations": "fixations/j7nBjM59UfQ.json",
"YouTubeName": "360 grad Autofahrt voll Karacho durch den S\u00fcden!",
"YouTubeChannel": "Okomondo - 360\u00b0 travel videos",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/HxRWGEyROHw.mp4",
"Saliency_file_name": "saliency/HxRWGEyROHw.mp4",
"Fixations": "fixations/HxRWGEyROHw.json",
"YouTubeName": "Lennebergwald in 360 Grad 2019 - Teil 1",
"YouTubeChannel": "Wald in 360\u00b0",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/2AESVYkMPO0.mp4",
"Saliency_file_name": "saliency/2AESVYkMPO0.mp4",
"Fixations": "fixations/2AESVYkMPO0.json",
"YouTubeName": "360\u5ea6\u52d5\u753b \u30ad\u30ea\u30de\u30f3\u30b8\u30e3\u30ed\u5c71\u9802 200m\u524d \u30a8\u30d9\u30ec\u30b9\u30c8\u306b\u884c\u3063\u3066\u304d\u307e\u3059\uff01",
"YouTubeChannel": "\u3061\u3087\u3063\u3068\u30a8\u30d9\u30ec\u30b9\u30c8\u3078\u884c\u3063\u3066\u304d\u307e\u3059 !!\u307b\u307c\u767b\u5c71\u7d4c\u9a130\u304b\u30897\u5927\u9678\u6700\u9ad8\u5cf0\u767b\u9802\u307e\u3067\u51681105\u65e5 VLOG",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/bNzhnyKcUfI.mp4",
"Saliency_file_name": "saliency/bNzhnyKcUfI.mp4",
"Fixations": "fixations/bNzhnyKcUfI.json",
"YouTubeName": "360\u5ea6\u52d5\u753b \u30ad\u30ea\u30de\u30f3\u30b8\u30e3\u30ed\u5c71\u9802 100m\u524d \u30a8\u30d9\u30ec\u30b9\u30c8\u306b\u884c\u3063\u3066\u304d\u307e\u3059\uff01",
"YouTubeChannel": "\u3061\u3087\u3063\u3068\u30a8\u30d9\u30ec\u30b9\u30c8\u3078\u884c\u3063\u3066\u304d\u307e\u3059 !!\u307b\u307c\u767b\u5c71\u7d4c\u9a130\u304b\u30897\u5927\u9678\u6700\u9ad8\u5cf0\u767b\u9802\u307e\u3067\u51681105\u65e5 VLOG",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/ByOVK8G-3CE.mp4",
"Saliency_file_name": "saliency/ByOVK8G-3CE.mp4",
"Fixations": "fixations/ByOVK8G-3CE.json",
"YouTubeName": "360\u5ea6\u52d5\u753b \u30ab\u30eb\u30b9\u30c6\u30f3\u30c4\u5c71\u9802 \u25c6\u4eca\u56de\u306e\u767b\u5c71\u7740\u7528\u8863\u88c5 : \u3059\u3079\u3066\u30e6\u30cb\u30af\u30ed\u3000\u8776\u30cd\u30af\u30bf\u30a4\u3060\u3051\u30b3\u30e0\u30c7\u30ae\u30e3\u30eb\u30bd\u30f3 \u30a8\u30d9\u30ec\u30b9\u30c8\u306b\u884c\u3063\u3066\u304d\u307e\u3059\uff01",
"YouTubeChannel": "\u3061\u3087\u3063\u3068\u30a8\u30d9\u30ec\u30b9\u30c8\u3078\u884c\u3063\u3066\u304d\u307e\u3059 !!\u307b\u307c\u767b\u5c71\u7d4c\u9a130\u304b\u30897\u5927\u9678\u6700\u9ad8\u5cf0\u767b\u9802\u307e\u3067\u51681105\u65e5 VLOG",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/kqflYMl5KhE.mp4",
"Saliency_file_name": "saliency/kqflYMl5KhE.mp4",
"Fixations": "fixations/kqflYMl5KhE.json",
"YouTubeName": "360\u5ea6\u52d5\u753b \u30ab\u30eb\u30b9\u30c6\u30f3\u30c4\u7d42\u4e86\u5f8c\u306e\u30d0\u30ea \u30a8\u30d9\u30ec\u30b9\u30c8\u306b\u884c\u3063\u3066\u304d\u307e\u3059\uff01",
"YouTubeChannel": "\u3061\u3087\u3063\u3068\u30a8\u30d9\u30ec\u30b9\u30c8\u3078\u884c\u3063\u3066\u304d\u307e\u3059 !!\u307b\u307c\u767b\u5c71\u7d4c\u9a130\u304b\u30897\u5927\u9678\u6700\u9ad8\u5cf0\u767b\u9802\u307e\u3067\u51681105\u65e5 VLOG",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/0EJM1onNd_c.mp4",
"Saliency_file_name": "saliency/0EJM1onNd_c.mp4",
"Fixations": "fixations/0EJM1onNd_c.json",
"YouTubeName": "\u0420\u043e\u043b\u0438\u043a \u0432 \u0444\u043e\u0440\u043c\u0430\u0442\u0435 360 4k \u0434\u043b\u044f \u044e\u0432\u0435\u043b\u0438\u0440\u043d\u043e\u0439 ROBERTO BRAVO",
"YouTubeChannel": "Rolik's Band",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/xWo_hth1lA4.mp4",
"Saliency_file_name": "saliency/xWo_hth1lA4.mp4",
"Fixations": "fixations/xWo_hth1lA4.json",
"YouTubeName": "Wetter auf Sylt",
"YouTubeChannel": "Christian Thiessen",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/O4wXneYqUIo.mp4",
"Saliency_file_name": "saliency/O4wXneYqUIo.mp4",
"Fixations": "fixations/O4wXneYqUIo.json",
"YouTubeName": "Feuerwehr Westerland Sylt",
"YouTubeChannel": "Christian Thiessen",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/VB_FpacqkZA.mp4",
"Saliency_file_name": "saliency/VB_FpacqkZA.mp4",
"Fixations": "fixations/VB_FpacqkZA.json",
"YouTubeName": "[360] All New Sienta - Exterior 4",
"YouTubeChannel": "ToyotaIndonesia",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/E1oGB23Iya8.mp4",
"Saliency_file_name": "saliency/E1oGB23Iya8.mp4",
"Fixations": "fixations/E1oGB23Iya8.json",
"YouTubeName": "All New Sienta - Comfort Cabin 2 [360]",
"YouTubeChannel": "ToyotaIndonesia",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/WOuFyfqSsa8.mp4",
"Saliency_file_name": "saliency/WOuFyfqSsa8.mp4",
"Fixations": "fixations/WOuFyfqSsa8.json",
"YouTubeName": "[360] All New Sienta Unveiling",
"YouTubeChannel": "ToyotaIndonesia",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/43b8jpTIaas.mp4",
"Saliency_file_name": "saliency/43b8jpTIaas.mp4",
"Fixations": "fixations/43b8jpTIaas.json",
"YouTubeName": "Un Viejo Amigo (360\u00ba - Realidad Virtual)\uff5cGTA Vice City\uff5cEspa\u00f1ol Latino",
"YouTubeChannel": "Pandora",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/XaknW0jJNdw.mp4",
"Saliency_file_name": "saliency/XaknW0jJNdw.mp4",
"Fixations": "fixations/XaknW0jJNdw.json",
"YouTubeName": "Reno Tahoe 360\u00b0 HD | Golfing in Reno",
"YouTubeChannel": "Reno Tahoe",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/3KVCqsy72M8.mp4",
"Saliency_file_name": "saliency/3KVCqsy72M8.mp4",
"Fixations": "fixations/3KVCqsy72M8.json",
"YouTubeName": "\"Video Graffiti\". Audio visual installation by vj group CUBE",
"YouTubeChannel": "Denys Ovchar",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/H5_y9AVX_Bc.mp4",
"Saliency_file_name": "saliency/H5_y9AVX_Bc.mp4",
"Fixations": "fixations/H5_y9AVX_Bc.json",
"YouTubeName": "NCGIS 2017",
"YouTubeChannel": "NCSU GeoForAll Lab",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/NHnUJ5IFb64.mp4",
"Saliency_file_name": "saliency/NHnUJ5IFb64.mp4",
"Fixations": "fixations/NHnUJ5IFb64.json",
"YouTubeName": "Heritage and Inequality: Schokland Case Study - MOOC Heritage under Threat",
"YouTubeChannel": "Leiden Learning & Innovation Centre",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/HqiBbCq-l4M.mp4",
"Saliency_file_name": "saliency/HqiBbCq-l4M.mp4",
"Fixations": "fixations/HqiBbCq-l4M.json",
"YouTubeName": "Ponte da Arrabida",
"YouTubeChannel": "pedro teixeira",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/3hWjx5Gdhig.mp4",
"Saliency_file_name": "saliency/3hWjx5Gdhig.mp4",
"Fixations": "fixations/3hWjx5Gdhig.json",
"YouTubeName": "\u0422\u0443\u043b\u044c\u0441\u043a\u0430\u044f. \u0427\u0430\u0441\u0442\u044c 1 / 360 \u0432\u0438\u0434\u0435\u043e",
"YouTubeChannel": "KinoLet",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/Rv7omY3XttE.mp4",
"Saliency_file_name": "saliency/Rv7omY3XttE.mp4",
"Fixations": "fixations/Rv7omY3XttE.json",
"YouTubeName": "\u0421\u0442\u0430\u0434\u0438\u043e\u043d \u041b\u043e\u043a\u043e\u043c\u043e\u0442\u0438\u0432. \u0427\u0430\u0441\u0442\u044c 1 / 360 \u0432\u0438\u0434\u0435\u043e",
"YouTubeChannel": "KinoLet",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/ETHfFsNoVYw.mp4",
"Saliency_file_name": "saliency/ETHfFsNoVYw.mp4",
"Fixations": "fixations/ETHfFsNoVYw.json",
"YouTubeName": "\u0421\u0442\u0430\u0434\u0438\u043e\u043d \u0414\u0438\u043d\u0430\u043c\u043e. \u0427\u0430\u0441\u0442\u044c 2 / 360 \u0432\u0438\u0434\u0435\u043e",
"YouTubeChannel": "KinoLet",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/owYt8PJnjZE.mp4",
"Saliency_file_name": "saliency/owYt8PJnjZE.mp4",
"Fixations": "fixations/owYt8PJnjZE.json",
"YouTubeName": "360\u00ba Jummah Adhan at ICNYU",
"YouTubeChannel": "IbnFergus",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/svThBMl4oEw.mp4",
"Saliency_file_name": "saliency/svThBMl4oEw.mp4",
"Fixations": "fixations/svThBMl4oEw.json",
"YouTubeName": "Ein-Ton-Sa\u0308ngerin Gabriela Ackermann - Reporter mit 360\u00b0 VR vor Ort",
"YouTubeChannel": "Coopzeitung",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/OVGJAIZ_hLA.mp4",
"Saliency_file_name": "saliency/OVGJAIZ_hLA.mp4",
"Fixations": "fixations/OVGJAIZ_hLA.json",
"YouTubeName": "Arkhiz 2019-08-14_h-250m",
"YouTubeChannel": "YanKhrutskiy",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/AdSjH31t8fc.mp4",
"Saliency_file_name": "saliency/AdSjH31t8fc.mp4",
"Fixations": "fixations/AdSjH31t8fc.json",
"YouTubeName": "[\uc81c\uc8fc\uc5ec\ud589] \uc81c\uc8fc \uc2e0\ud654\uc6d4\ub4dc \ud14c\ub9c8\ud30c\ud06c \ub180\uc774\uae30\uad6c 360\ub3c4 VR\uc601\uc0c1(4K) - \ub77c\ubc14 \uc6d4\ub4dc \uc775\uc2a4\ud504\ub808\uc2a4 / \uace0\ud504\ub85c\ub9e5\uc2a4 | \ub808\uc54c\ud2b8\ub9bd(Real Trip)",
"YouTubeChannel": "\ub808\uc54c\ud2b8\ub9bd Real Trip",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/Uwn_Jykb4ls.mp4",
"Saliency_file_name": "saliency/Uwn_Jykb4ls.mp4",
"Fixations": "fixations/Uwn_Jykb4ls.json",
"YouTubeName": "Open Heart - The Tea Lounge | Brasov | 360\u00b0 Virtual Tour",
"YouTubeChannel": "Open Heart - The Tea Lounge Bra\u0219ov",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/O-FNY8o_1Oc.mp4",
"Saliency_file_name": "saliency/O-FNY8o_1Oc.mp4",
"Fixations": "fixations/O-FNY8o_1Oc.json",
"YouTubeName": "\uc81c 5\ucc28 \uad11\ud654\ubb38 \ucd1b\ubd88\uc9d1\ud68c 360 \ube44\ub514\uc624 VR (Korean Candle Protest in VR)",
"YouTubeChannel": "DK Lee",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/pnAkV93b-q0.mp4",
"Saliency_file_name": "saliency/pnAkV93b-q0.mp4",
"Fixations": "fixations/pnAkV93b-q0.json",
"YouTubeName": "Bryan Alexander Nercomp 360 Video The Future of Education and Technology",
"YouTubeChannel": "Roxann Riskin",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/3nWrIqI2GqE.mp4",
"Saliency_file_name": "saliency/3nWrIqI2GqE.mp4",
"Fixations": "fixations/3nWrIqI2GqE.json",
"YouTubeName": "Drone Flip (360\u00b0 VR)",
"YouTubeChannel": "Kevin Kunze",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/Bpna8omo08M.mp4",
"Saliency_file_name": "saliency/Bpna8omo08M.mp4",
"Fixations": "fixations/Bpna8omo08M.json",
"YouTubeName": "This Is Why Climate Change Matters / Coal + Ice (360\u00b0 VR)",
"YouTubeChannel": "Kevin Kunze",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/vup5qEZXbu8.mp4",
"Saliency_file_name": "saliency/vup5qEZXbu8.mp4",
"Fixations": "fixations/vup5qEZXbu8.json",
"YouTubeName": "LIFE OF WALL-E (360\u00b0 VR)",
"YouTubeChannel": "Kevin Kunze",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/M9PuoM0nfK4.mp4",
"Saliency_file_name": "saliency/M9PuoM0nfK4.mp4",
"Fixations": "fixations/M9PuoM0nfK4.json",
"YouTubeName": "Next Big Thing in XR (360\u00b0 VR)",
"YouTubeChannel": "Kevin Kunze",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/3oAO4vhgpW4.mp4",
"Saliency_file_name": "saliency/3oAO4vhgpW4.mp4",
"Fixations": "fixations/3oAO4vhgpW4.json",
"YouTubeName": "Future Virtual Reality Tech!! / VRLA 2018 (360\u00b0)",
"YouTubeChannel": "Kevin Kunze",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/8N7OUO59Cv0.mp4",
"Saliency_file_name": "saliency/8N7OUO59Cv0.mp4",
"Fixations": "fixations/8N7OUO59Cv0.json",
"YouTubeName": "BEST THINGS to do in VEGAS (360\u00b0 VR)",
"YouTubeChannel": "Kevin Kunze",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/FttzcLnOKus.mp4",
"Saliency_file_name": "saliency/FttzcLnOKus.mp4",
"Fixations": "fixations/FttzcLnOKus.json",
"YouTubeName": "IN-DEPTH with VIVE PRO (360\u00b0 VR)",
"YouTubeChannel": "Kevin Kunze",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/2iOLYqNNsRM.mp4",
"Saliency_file_name": "saliency/2iOLYqNNsRM.mp4",
"Fixations": "fixations/2iOLYqNNsRM.json",
"YouTubeName": "360\u00b0 PRANK / SLOWMO CAMERA TEST (Insta360 Pro vs Z-Cam S1)",
"YouTubeChannel": "Kevin Kunze",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/uf8SClPDDwM.mp4",
"Saliency_file_name": "saliency/uf8SClPDDwM.mp4",
"Fixations": "fixations/uf8SClPDDwM.json",
"YouTubeName": "Apple Card Unboxing & Review (360\u00b0)",
"YouTubeChannel": "Kevin Kunze",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/UT08Qs-NCC0.mp4",
"Saliency_file_name": "saliency/UT08Qs-NCC0.mp4",
"Fixations": "fixations/UT08Qs-NCC0.json",
"YouTubeName": "I got invited to YOUTUBE VR (360\u00b0)",
"YouTubeChannel": "Kevin Kunze",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/pzU9klp6ufM.mp4",
"Saliency_file_name": "saliency/pzU9klp6ufM.mp4",
"Fixations": "fixations/pzU9klp6ufM.json",
"YouTubeName": "360 Grad/360 Degree Video flight with Hobbypilot",
"YouTubeChannel": "letti99089",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/Fhv_OVX91OQ.mp4",
"Saliency_file_name": "saliency/Fhv_OVX91OQ.mp4",
"Fixations": "fixations/Fhv_OVX91OQ.json",
"YouTubeName": "VR Untouched GoPro Fusion 360 - Night Car Driving Test",
"YouTubeChannel": "The Matt Sconce",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/DuvTaXuo42Y.mp4",
"Saliency_file_name": "saliency/DuvTaXuo42Y.mp4",
"Fixations": "fixations/DuvTaXuo42Y.json",
"YouTubeName": "Test - Insta360 One Intraframe pulsing fix Test",
"YouTubeChannel": "The Matt Sconce",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/AYVMQnHHEXE.mp4",
"Saliency_file_name": "saliency/AYVMQnHHEXE.mp4",
"Fixations": "fixations/AYVMQnHHEXE.json",
"YouTubeName": "161026 Nikon KeyMission 360 Test at GYG",
"YouTubeChannel": "Kai Askey Racing",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/-PcGmrh7lBU.mp4",
"Saliency_file_name": "saliency/-PcGmrh7lBU.mp4",
"Fixations": "fixations/-PcGmrh7lBU.json",
"YouTubeName": "Homestead Building - Building Ceiling Support Posts",
"YouTubeChannel": "Praxis Homesteading and Survival Skills",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/GOYt-AoKtGs.mp4",
"Saliency_file_name": "saliency/GOYt-AoKtGs.mp4",
"Fixations": "fixations/GOYt-AoKtGs.json",
"YouTubeName": "Homestead Building - Squeezing in a \"Quickie\"",
"YouTubeChannel": "Praxis Homesteading and Survival Skills",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/aH7zkAR_J-8.mp4",
"Saliency_file_name": "saliency/aH7zkAR_J-8.mp4",
"Fixations": "fixations/aH7zkAR_J-8.json",
"YouTubeName": "Homestead Building - Mini House Build, Dealing with Weather",
"YouTubeChannel": "Praxis Homesteading and Survival Skills",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/fcaTdvUaRN0.mp4",
"Saliency_file_name": "saliency/fcaTdvUaRN0.mp4",
"Fixations": "fixations/fcaTdvUaRN0.json",
"YouTubeName": "Homestead Building - Prepping Wall Insulation For Roof Insulation to Go Up, Insulation Layering",
"YouTubeChannel": "Praxis Homesteading and Survival Skills",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/gOXTG1p2e1U.mp4",
"Saliency_file_name": "saliency/gOXTG1p2e1U.mp4",
"Fixations": "fixations/gOXTG1p2e1U.json",
"YouTubeName": "Homestead Building - Every Contractor is Being Threatened with the Death of Themselves or Family",
"YouTubeChannel": "Praxis Homesteading and Survival Skills",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/f3Wr6br2eb8.mp4",
"Saliency_file_name": "saliency/f3Wr6br2eb8.mp4",
"Fixations": "fixations/f3Wr6br2eb8.json",
"YouTubeName": "Homestead Building - Rock Smashing, Well Line Issues, Professionals Making Mistakes or Not Listening",
"YouTubeChannel": "Praxis Homesteading and Survival Skills",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/bldTjb3-Wec.mp4",
"Saliency_file_name": "saliency/bldTjb3-Wec.mp4",
"Fixations": "fixations/bldTjb3-Wec.json",
"YouTubeName": "Homestead Building - Stucco Work on House, Type S Mason Mix and Portland Stucco",
"YouTubeChannel": "Praxis Homesteading and Survival Skills",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/3haH5V4GMQ4.mp4",
"Saliency_file_name": "saliency/3haH5V4GMQ4.mp4",
"Fixations": "fixations/3haH5V4GMQ4.json",
"YouTubeName": "Homestead Building - Building the Center Beam of the House",
"YouTubeChannel": "Praxis Homesteading and Survival Skills",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/N8qljmnrNhI.mp4",
"Saliency_file_name": "saliency/N8qljmnrNhI.mp4",
"Fixations": "fixations/N8qljmnrNhI.json",
"YouTubeName": "Homestead Building - Dangerous Building Techniques, Contractors Missing Again, Foam Application",
"YouTubeChannel": "Praxis Homesteading and Survival Skills",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/UpVyjlURWIs.mp4",
"Saliency_file_name": "saliency/UpVyjlURWIs.mp4",
"Fixations": "fixations/UpVyjlURWIs.json",
"YouTubeName": "Homestead Building - Demo of Scrap Foam Usage, Different Types of Spray Foam",
"YouTubeChannel": "Praxis Homesteading and Survival Skills",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/4-cSaHbeiTI.mp4",
"Saliency_file_name": "saliency/4-cSaHbeiTI.mp4",
"Fixations": "fixations/4-cSaHbeiTI.json",
"YouTubeName": "Homestead Building - Using Scrap Foam to Save Money",
"YouTubeChannel": "Praxis Homesteading and Survival Skills",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/DxwjzbFyg0U.mp4",
"Saliency_file_name": "saliency/DxwjzbFyg0U.mp4",
"Fixations": "fixations/DxwjzbFyg0U.json",
"YouTubeName": "360 VIDEO VR TENERIFE",
"YouTubeChannel": "Smart-Choice Tenerife",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/u4pLs290oqA.mp4",
"Saliency_file_name": "saliency/u4pLs290oqA.mp4",
"Fixations": "fixations/u4pLs290oqA.json",
"YouTubeName": "360\u00b0 / VR - Asus Tinker Board",
"YouTubeChannel": "Mahesh Dilip Salvi",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/ZyPLQA-3JFk.mp4",
"Saliency_file_name": "saliency/ZyPLQA-3JFk.mp4",
"Fixations": "fixations/ZyPLQA-3JFk.json",
"YouTubeName": "360\u00b0 / VR - Asus Computer stick",
"YouTubeChannel": "Mahesh Dilip Salvi",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/3ukGXH7RWlE.mp4",
"Saliency_file_name": "saliency/3ukGXH7RWlE.mp4",
"Fixations": "fixations/3ukGXH7RWlE.json",
"YouTubeName": "360\u00b0 / VR - Pelicans / foreign birds visiting India, Mumbai,",
"YouTubeChannel": "Mahesh Dilip Salvi",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/h5Ty1aIkXBY.mp4",
"Saliency_file_name": "saliency/h5Ty1aIkXBY.mp4",
"Fixations": "fixations/h5Ty1aIkXBY.json",
"YouTubeName": "Dahisar Stationn Road to Our Lady of The Immaculate Conception Church (IC Church)-360 degree / VR",
"YouTubeChannel": "Mahesh Dilip Salvi",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/wMLapkXq4QQ.mp4",
"Saliency_file_name": "saliency/wMLapkXq4QQ.mp4",
"Fixations": "fixations/wMLapkXq4QQ.json",
"YouTubeName": "1970\ub144\ub300 / \uccad\ub144\u00b7\ubbfc\uc911, \uadf8\ub4e4 \uc790\uc2e0\uc758 \uc5b8\uc5b4\ub85c \uc5b5\ub20c\ub9b0 \uc0b6\uc744 \uc774\uc57c\uae30\ud558\ub2e4.",
"YouTubeChannel": "\ubb38\ud654\uc7ac\ud615 \uc0ac\ud68c\uc801\uae30\uc5c5 \uce74\ud230\ucea0\ud37c\uc2a4",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/6aNkY6hZ3eU.mp4",
"Saliency_file_name": "saliency/6aNkY6hZ3eU.mp4",
"Fixations": "fixations/6aNkY6hZ3eU.json",
"YouTubeName": "PATARA BEACH 8K 360 VR VIDEO",
"YouTubeChannel": "PanoramicWEB Solutions",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/TWPT2po2_Ug.mp4",
"Saliency_file_name": "saliency/TWPT2po2_Ug.mp4",
"Fixations": "fixations/TWPT2po2_Ug.json",
"YouTubeName": "360 VR Video SecretTown",
"YouTubeChannel": "Charles Cho",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/XwBLldUoJEk.mp4",
"Saliency_file_name": "saliency/XwBLldUoJEk.mp4",
"Fixations": "fixations/XwBLldUoJEk.json",
"YouTubeName": "20180810'ARTEMIS'5thTF11\u672c\u76ee goprofusion",
"YouTubeChannel": "\u6771\u4eac\u7406\u79d1\u5927\u5b66Aircraft Makers",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/amcW3F-wxJw.mp4",
"Saliency_file_name": "saliency/amcW3F-wxJw.mp4",
"Fixations": "fixations/amcW3F-wxJw.json",
"YouTubeName": "20180810'ARTEMIS'5thTF4\u672c\u76ee goprofusion",
"YouTubeChannel": "\u6771\u4eac\u7406\u79d1\u5927\u5b66Aircraft Makers",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/-IvG5IoZtNc.mp4",
"Saliency_file_name": "saliency/-IvG5IoZtNc.mp4",
"Fixations": "fixations/-IvG5IoZtNc.json",
"YouTubeName": "20180810'ARTEMIS'5thTF5\u672c\u76ee goprofusion",
"YouTubeChannel": "\u6771\u4eac\u7406\u79d1\u5927\u5b66Aircraft Makers",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/51Pb5IarXIs.mp4",
"Saliency_file_name": "saliency/51Pb5IarXIs.mp4",
"Fixations": "fixations/51Pb5IarXIs.json",
"YouTubeName": "20180624 ARTEMIS2ndTF 9\u672c\u76ee go pro fusion",
"YouTubeChannel": "\u6771\u4eac\u7406\u79d1\u5927\u5b66Aircraft Makers",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/ff9NHEAUlPE.mp4",
"Saliency_file_name": "saliency/ff9NHEAUlPE.mp4",
"Fixations": "fixations/ff9NHEAUlPE.json",
"YouTubeName": "20180624 ARTEMIS2ndTF 6\u672c\u76ee go pro fusion",
"YouTubeChannel": "\u6771\u4eac\u7406\u79d1\u5927\u5b66Aircraft Makers",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/VoAcAj3QwXE.mp4",
"Saliency_file_name": "saliency/VoAcAj3QwXE.mp4",
"Fixations": "fixations/VoAcAj3QwXE.json",
"YouTubeName": "Water",
"YouTubeChannel": "Wayne Watson",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/Y9oe4EOROvg.mp4",
"Saliency_file_name": "saliency/Y9oe4EOROvg.mp4",
"Fixations": "fixations/Y9oe4EOROvg.json",
"YouTubeName": "Clayfield Copse - Insta 360 ONE X - Post Processing in DaVinci 15",
"YouTubeChannel": "Wayne Watson",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/c0eIDigceto.mp4",
"Saliency_file_name": "saliency/c0eIDigceto.mp4",
"Fixations": "fixations/c0eIDigceto.json",
"YouTubeName": "Hanging, out in the desert",
"YouTubeChannel": "Jack Tillamook",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/2-a-EdvRQGk.mp4",
"Saliency_file_name": "saliency/2-a-EdvRQGk.mp4",
"Fixations": "fixations/2-a-EdvRQGk.json",
"YouTubeName": "360\u00b0 Engagement Video",
"YouTubeChannel": "VR Video",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/sOeGOWAc5Ng.mp4",
"Saliency_file_name": "saliency/sOeGOWAc5Ng.mp4",
"Fixations": "fixations/sOeGOWAc5Ng.json",
"YouTubeName": "Bottomland Hardwood Forest on Trail D 2018",
"YouTubeChannel": "Sean Anderson",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/3XtHmjz-a7E.mp4",
"Saliency_file_name": "saliency/3XtHmjz-a7E.mp4",
"Fixations": "fixations/3XtHmjz-a7E.json",
"YouTubeName": "San Diego Salt Ponds",
"YouTubeChannel": "Sean Anderson",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/As0dF0Pog78.mp4",
"Saliency_file_name": "saliency/As0dF0Pog78.mp4",
"Fixations": "fixations/As0dF0Pog78.json",
"YouTubeName": "Intro to Mendenhall Glacier",
"YouTubeChannel": "Sean Anderson",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/tNcTz4Kplvg.mp4",
"Saliency_file_name": "saliency/tNcTz4Kplvg.mp4",
"Fixations": "fixations/tNcTz4Kplvg.json",
"YouTubeName": "Willow Estuary Microplastics Site",
"YouTubeChannel": "Sean Anderson",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/kTfxD5jy3b0.mp4",
"Saliency_file_name": "saliency/kTfxD5jy3b0.mp4",
"Fixations": "fixations/kTfxD5jy3b0.json",
"YouTubeName": "'La boh\u00e8me' en 360\u00ba",
"YouTubeChannel": "LiceuOperaBarcelona",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/wrzmqEJmCC0.mp4",
"Saliency_file_name": "saliency/wrzmqEJmCC0.mp4",
"Fixations": "fixations/wrzmqEJmCC0.json",
"YouTubeName": "KIIKUNL\u00c4HDE NATURAL SPRING IN THE WINTER (360 video) | Virtual Outdoors Finland",
"YouTubeChannel": "Outdoors Finland",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/dEcFpaC2xKo.mp4",
"Saliency_file_name": "saliency/dEcFpaC2xKo.mp4",
"Fixations": "fixations/dEcFpaC2xKo.json",
"YouTubeName": "VRUE360 8K 360 \uc601\uc0c1",
"YouTubeChannel": "(\uc8fc)\ud050\ub7a8",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/ezmwPha9SY0.mp4",
"Saliency_file_name": "saliency/ezmwPha9SY0.mp4",
"Fixations": "fixations/ezmwPha9SY0.json",
"YouTubeName": "~360#015 \u201c\u5730\u7344\u4e4b\u53e3 Boca do Inferno\u201d",
"YouTubeChannel": "\u5357\u6b50\u751f\u6d3b\u983b\u9053",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/ELxxIjWJTrc.mp4",
"Saliency_file_name": "saliency/ELxxIjWJTrc.mp4",
"Fixations": "fixations/ELxxIjWJTrc.json",
"YouTubeName": "Deep Creek ATV Park- cockpit",
"YouTubeChannel": "NCdragon21",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/C1el8tVb7L4.mp4",
"Saliency_file_name": "saliency/C1el8tVb7L4.mp4",
"Fixations": "fixations/C1el8tVb7L4.json",
"YouTubeName": "Radio en 360",
"YouTubeChannel": "No se que estudiar",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/MQZ2ZAS_HcA.mp4",
"Saliency_file_name": "saliency/MQZ2ZAS_HcA.mp4",
"Fixations": "fixations/MQZ2ZAS_HcA.json",
"YouTubeName": "Ensaio banda SIPAT 360\u00b0 - Par\u00f3dia de Have you Ever Seen the Rain",
"YouTubeChannel": "Carlos Cartola",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/RCmtE_1TWeI.mp4",
"Saliency_file_name": "saliency/RCmtE_1TWeI.mp4",
"Fixations": "fixations/RCmtE_1TWeI.json",
"YouTubeName": "SOLO VR FIRST FLIGHT",
"YouTubeChannel": "\uc0bc\ub959\uaf41",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/fkbvqvMx8nM.mp4",
"Saliency_file_name": "saliency/fkbvqvMx8nM.mp4",
"Fixations": "fixations/fkbvqvMx8nM.json",
"YouTubeName": "S\u00e9 parte de la Internacionalizaci\u00f3n - Apps.co",
"YouTubeChannel": "Ministerio TIC Colombia",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/18j5RRG7eOY.mp4",
"Saliency_file_name": "saliency/18j5RRG7eOY.mp4",
"Fixations": "fixations/18j5RRG7eOY.json",
"YouTubeName": "20191110 \u963f\u5871\u58f9\u67d0\u6d77\u7058",
"YouTubeChannel": "Ahimo Hsu",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/j0ugT9iwRSo.mp4",
"Saliency_file_name": "saliency/j0ugT9iwRSo.mp4",
"Fixations": "fixations/j0ugT9iwRSo.json",
"YouTubeName": "Dr Kirti Kale - Laughing Loud moments from \u0939\u093e\u0938\u094d\u200d\u092f \u0915\u0935\u093f \u0938\u092e\u094d\u200d\u092e\u0947\u0932\u0928 Part-2",
"YouTubeChannel": "Liv26 TV",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/NTVR7Hje3gU.mp4",
"Saliency_file_name": "saliency/NTVR7Hje3gU.mp4",
"Fixations": "fixations/NTVR7Hje3gU.json",
"YouTubeName": "Amazing Garba Dance Steps on Ali Bai Have Hu Nai by Cultural Connection",
"YouTubeChannel": "Liv26 TV",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/-VE7fu2CE8g.mp4",
"Saliency_file_name": "saliency/-VE7fu2CE8g.mp4",
"Fixations": "fixations/-VE7fu2CE8g.json",
"YouTubeName": "Heritage Day Celebrations 2018",
"YouTubeChannel": "Liv26 TV",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/RnKjYj_Zk04.mp4",
"Saliency_file_name": "saliency/RnKjYj_Zk04.mp4",
"Fixations": "fixations/RnKjYj_Zk04.json",
"YouTubeName": "Pra\u00e7a Major Nicoletti (2) - Gramado - RS - Brasil by Mestre do 360 - 360\u00b0 Video VR",
"YouTubeChannel": "Mestre do 360",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/6n2ud5Dib5E.mp4",
"Saliency_file_name": "saliency/6n2ud5Dib5E.mp4",
"Fixations": "fixations/6n2ud5Dib5E.json",
"YouTubeName": "Pra\u00e7a Major Nicoletti - Gramado - RS - Brasil by Mestre do 360 - 360\u00b0 Video VR",
"YouTubeChannel": "Mestre do 360",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/YPf7Pp-w1jg.mp4",
"Saliency_file_name": "saliency/YPf7Pp-w1jg.mp4",
"Fixations": "fixations/YPf7Pp-w1jg.json",
"YouTubeName": "Le Jardin - Parque de Lavanda - Gramado - RS - Brasil by Mestre do 360 - 360\u00b0 Video VR",
"YouTubeChannel": "Mestre do 360",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/QGctG11T3W8.mp4",
"Saliency_file_name": "saliency/QGctG11T3W8.mp4",
"Fixations": "fixations/QGctG11T3W8.json",
"YouTubeName": "Le Jardin - Parque de Lavanda - Gramado - RS - Brasil by Mestre do 360 - 360\u00b0 Video VR",
"YouTubeChannel": "Mestre do 360",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/Wj8H10niP7M.mp4",
"Saliency_file_name": "saliency/Wj8H10niP7M.mp4",
"Fixations": "fixations/Wj8H10niP7M.json",
"YouTubeName": "Igreja S\u00e3o Pedro Ap\u00f3stolo - Gramado - RS - Brasil by Mestre do 360 - 360\u00b0 Video VR",
"YouTubeChannel": "Mestre do 360",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/G0nmvATbbJw.mp4",
"Saliency_file_name": "saliency/G0nmvATbbJw.mp4",
"Fixations": "fixations/G0nmvATbbJw.json",
"YouTubeName": "F\u00e1bricas de Chocolate - Gramado - RS - Brasil - by Mestre do 360 - 360\u00b0 Video VR",
"YouTubeChannel": "Mestre do 360",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/upeagnAjxpY.mp4",
"Saliency_file_name": "saliency/upeagnAjxpY.mp4",
"Fixations": "fixations/upeagnAjxpY.json",
"YouTubeName": "/VR360/ Lombard Street - San Fransisco",
"YouTubeChannel": "The VR Traveler",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/GphjPSU4H68.mp4",
"Saliency_file_name": "saliency/GphjPSU4H68.mp4",
"Fixations": "fixations/GphjPSU4H68.json",
"YouTubeName": "[360\u00b0] \u25b6\ufe0e FIRST EVER ELECTRIC SKATEBOARDING \u25b7 360\u00ba VIDEO_TEST \u25b9 in 4K _By LAB",
"YouTubeChannel": "Coach Bastoon LAB",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/hNmFme-l_kg.mp4",
"Saliency_file_name": "saliency/hNmFme-l_kg.mp4",
"Fixations": "fixations/hNmFme-l_kg.json",
"YouTubeName": "North SeaTac",
"YouTubeChannel": "Jim Wallingford",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/iafZm3ZgI90.mp4",
"Saliency_file_name": "saliency/iafZm3ZgI90.mp4",
"Fixations": "fixations/iafZm3ZgI90.json",
"YouTubeName": "The 2020 Alien Virus",
"YouTubeChannel": "WOLF PAC",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/Qvntl7F1uR4.mp4",
"Saliency_file_name": "saliency/Qvntl7F1uR4.mp4",
"Fixations": "fixations/Qvntl7F1uR4.json",
"YouTubeName": "360\u00b0 video - First test with DJI Phantom 2 and Kodak SP360 4k",
"YouTubeChannel": "Jonas Ginter",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/wg0_W0gJMRo.mp4",
"Saliency_file_name": "saliency/wg0_W0gJMRo.mp4",
"Fixations": "fixations/wg0_W0gJMRo.json",
"YouTubeName": "Inter18 spinnaker session - 360video",
"YouTubeChannel": "p1cs0r",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/LKe4kn36tls.mp4",
"Saliency_file_name": "saliency/LKe4kn36tls.mp4",
"Fixations": "fixations/LKe4kn36tls.json",
"YouTubeName": "01 injected",
"YouTubeChannel": "Ho\u00e0ng Giang S\u01a1n Tr\u01b0\u01a1ng",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/BkxMkZ7Kae4.mp4",
"Saliency_file_name": "saliency/BkxMkZ7Kae4.mp4",
"Fixations": "fixations/BkxMkZ7Kae4.json",
"YouTubeName": "\ud835\udc13\ud835\udc05\ud835\udc12 CELL v GOKU \ud835\udc08\ud835\udc27\ud835\udc2c\ud835\udc2d\ud835\udc1a\ud835\udc27\ud835\udc2d \ud835\udc13\ud835\udc2b\ud835\udc1a\ud835\udc27\ud835\udc2c\ud835\udc26\ud835\udc22\ud835\udc2c\ud835\udc2c\ud835\udc22\ud835\udc28\ud835\udc27 360\u00b0 Dragon Ball VR",
"YouTubeChannel": "MEZ",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/yAlS199BELY.mp4",
"Saliency_file_name": "saliency/yAlS199BELY.mp4",
"Fixations": "fixations/yAlS199BELY.json",
"YouTubeName": "\u0414\u0438\u0442\u044f\u0447\u0430 \u043a\u0456\u043c\u043d\u0430\u0442\u0430 360\u00b0",
"YouTubeChannel": "Evgeniy Lysun",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/JAF_-wh8UxY.mp4",
"Saliency_file_name": "saliency/JAF_-wh8UxY.mp4",
"Fixations": "fixations/JAF_-wh8UxY.json",
"YouTubeName": "Bath room. White model",
"YouTubeChannel": "Evgeniy Lysun",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/pfF9Bx_QBwQ.mp4",
"Saliency_file_name": "saliency/pfF9Bx_QBwQ.mp4",
"Fixations": "fixations/pfF9Bx_QBwQ.json",
"YouTubeName": "\u0421\u043f\u0430\u043b\u044c\u043d\u044f 360\u00b0",
"YouTubeChannel": "Evgeniy Lysun",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/7hvbZsbtMyk.mp4",
"Saliency_file_name": "saliency/7hvbZsbtMyk.mp4",
"Fixations": "fixations/7hvbZsbtMyk.json",
"YouTubeName": "360\u00b0",
"YouTubeChannel": "Evgeniy Lysun",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/dlqowHacKkk.mp4",
"Saliency_file_name": "saliency/dlqowHacKkk.mp4",
"Fixations": "fixations/dlqowHacKkk.json",
"YouTubeName": "360\u00b0",
"YouTubeChannel": "Evgeniy Lysun",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/bneZCcRB-Cw.mp4",
"Saliency_file_name": "saliency/bneZCcRB-Cw.mp4",
"Fixations": "fixations/bneZCcRB-Cw.json",
"YouTubeName": "Video 360 high events",
"YouTubeChannel": "Highevents Eventos Corporativos",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/1aj4zzeu7Y0.mp4",
"Saliency_file_name": "saliency/1aj4zzeu7Y0.mp4",
"Fixations": "fixations/1aj4zzeu7Y0.json",
"YouTubeName": "#VR 360 Video Interview - The Trick Factory Skate Jam Bridport",
"YouTubeChannel": "Blackbeard Bikes",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/wKBUbCp4XT0.mp4",
"Saliency_file_name": "saliency/wKBUbCp4XT0.mp4",
"Fixations": "fixations/wKBUbCp4XT0.json",
"YouTubeName": "#VR Virtual Reality VR weddings - The Rifles Remembering The Fallen at Sherborne Abbey",
"YouTubeChannel": "Blackbeard Bikes",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/8RRvtTZ4TOA.mp4",
"Saliency_file_name": "saliency/8RRvtTZ4TOA.mp4",
"Fixations": "fixations/8RRvtTZ4TOA.json",
"YouTubeName": "Abbey Pharmacy 360 Video Tour",
"YouTubeChannel": "Blackbeard Bikes",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/piLqtf5IIf0.mp4",
"Saliency_file_name": "saliency/piLqtf5IIf0.mp4",
"Fixations": "fixations/piLqtf5IIf0.json",
"YouTubeName": "#VR Urban Showreel 2017",
"YouTubeChannel": "Blackbeard Bikes",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/sdhtYhNafH4.mp4",
"Saliency_file_name": "saliency/sdhtYhNafH4.mp4",
"Fixations": "fixations/sdhtYhNafH4.json",
"YouTubeName": "Bear Lake to Emerald Lake Highlight-Trail 360",
"YouTubeChannel": "Trail 360",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/un8FLjoKDbI.mp4",
"Saliency_file_name": "saliency/un8FLjoKDbI.mp4",
"Fixations": "fixations/un8FLjoKDbI.json",
"YouTubeName": "Mt. Herman Trail Highlight-Trail 360",
"YouTubeChannel": "Trail 360",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/B8p4qKHv0gE.mp4",
"Saliency_file_name": "saliency/B8p4qKHv0gE.mp4",
"Fixations": "fixations/B8p4qKHv0gE.json",
"YouTubeName": "MTB Veluwezoom 1 (360)",
"YouTubeChannel": "Johan Ulijn",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/SYb4JW0oCQI.mp4",
"Saliency_file_name": "saliency/SYb4JW0oCQI.mp4",
"Fixations": "fixations/SYb4JW0oCQI.json",
"YouTubeName": "\u6e25\u7f8e\u3069\u308d\u3093\u3053\u6751 2019\u51ac 360\u00b0\u52d5\u753b",
"YouTubeChannel": "\u51a8\u5b89\u548c\u967d",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/G3xB4jgAr1k.mp4",
"Saliency_file_name": "saliency/G3xB4jgAr1k.mp4",
"Fixations": "fixations/G3xB4jgAr1k.json",
"YouTubeName": "360\u00b0 Video: Beach scene logo into for Fiverr",
"YouTubeChannel": "Explosive Reality",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/uOiz-9j-zNM.mp4",
"Saliency_file_name": "saliency/uOiz-9j-zNM.mp4",
"Fixations": "fixations/uOiz-9j-zNM.json",
"YouTubeName": "Brighton Pride",
"YouTubeChannel": "jayzedable",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/9nwhenSo2JA.mp4",
"Saliency_file_name": "saliency/9nwhenSo2JA.mp4",
"Fixations": "fixations/9nwhenSo2JA.json",
"YouTubeName": "SkyRunner 360 with Joby Ogwyn (Part 2: Flight)",
"YouTubeChannel": "SkyRunner, LLC",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/rzNDKxjQrLs.mp4",
"Saliency_file_name": "saliency/rzNDKxjQrLs.mp4",
"Fixations": "fixations/rzNDKxjQrLs.json",
"YouTubeName": "Morning Sunrise at Disney's Vero Beach 360 Degree Timelapse 2019 Garmin VIRB",
"YouTubeChannel": "threesixD tv",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/etjaj-_IPL0.mp4",
"Saliency_file_name": "saliency/etjaj-_IPL0.mp4",
"Fixations": "fixations/etjaj-_IPL0.json",
"YouTubeName": "\u0424\u0435\u0441\u0442\u0438\u0432\u0430\u043b\u044c \u0421\u043a\u0443\u043b\u044c\u043f\u0442\u0422\u0443\u0440 2017 III",
"YouTubeChannel": "\u0414\u043c\u0438\u0442\u0440\u0438\u0439 \u0427\u0435\u0440\u0435\u043f\u0435\u043d\u0438\u043d",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/7Z5GfQi5Aaw.mp4",
"Saliency_file_name": "saliency/7Z5GfQi5Aaw.mp4",
"Fixations": "fixations/7Z5GfQi5Aaw.json",
"YouTubeName": "Amina living room",
"YouTubeChannel": "Wave Design",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/T-dJWLIHxIw.mp4",
"Saliency_file_name": "saliency/T-dJWLIHxIw.mp4",
"Fixations": "fixations/T-dJWLIHxIw.json",
"YouTubeName": "Water in Space",
"YouTubeChannel": "Left Field Organizing",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/hNczLIhiMKI.mp4",
"Saliency_file_name": "saliency/hNczLIhiMKI.mp4",
"Fixations": "fixations/hNczLIhiMKI.json",
"YouTubeName": "360\u00b0Video - RC-Car",
"YouTubeChannel": "Panomenia",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/M4EUvjy61x0.mp4",
"Saliency_file_name": "saliency/M4EUvjy61x0.mp4",
"Fixations": "fixations/M4EUvjy61x0.json",
"YouTubeName": "Have a look around Agra - India. See the Taj Mahal and more in 360 degrees",
"YouTubeChannel": "Aroundtheworldin360",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/9sIfYfJxod4.mp4",
"Saliency_file_name": "saliency/9sIfYfJxod4.mp4",
"Fixations": "fixations/9sIfYfJxod4.json",
"YouTubeName": "360 VR Welcome Las Vegas Selfie Girls 4k",
"YouTubeChannel": "Mosquito Media Channel",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/djo6PJLRpnU.mp4",
"Saliency_file_name": "saliency/djo6PJLRpnU.mp4",
"Fixations": "fixations/djo6PJLRpnU.json",
"YouTubeName": "Band\u0131rma - 3D Presentation",
"YouTubeChannel": "Grapix Digital Studio",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/4Na8YoBlHrM.mp4",
"Saliency_file_name": "saliency/4Na8YoBlHrM.mp4",
"Fixations": "fixations/4Na8YoBlHrM.json",
"YouTubeName": "360\u2022VR Video - Stars",
"YouTubeChannel": "VIRTUAL 360",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/pLao4HuE-Rw.mp4",
"Saliency_file_name": "saliency/pLao4HuE-Rw.mp4",
"Fixations": "fixations/pLao4HuE-Rw.json",
"YouTubeName": "Shapes In Space",
"YouTubeChannel": "Kelly Egan",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/PEK1lbCv6I0.mp4",
"Saliency_file_name": "saliency/PEK1lbCv6I0.mp4",
"Fixations": "fixations/PEK1lbCv6I0.json",
"YouTubeName": "GoPro Fusion 5.2k Sample Footage",
"YouTubeChannel": "Nezlo",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/TpX90I84-Ik.mp4",
"Saliency_file_name": "saliency/TpX90I84-Ik.mp4",
"Fixations": "fixations/TpX90I84-Ik.json",
"YouTubeName": "1000Spartans",
"YouTubeChannel": "cryptorator",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/TKdQ-5ih8MY.mp4",
"Saliency_file_name": "saliency/TKdQ-5ih8MY.mp4",
"Fixations": "fixations/TKdQ-5ih8MY.json",
"YouTubeName": "\ub300\uad6c \ub3d9\uad6c \ud30c\uacc4\uc0ac \uc778\uadfc \u110c\u1165\u11ab\u110b\u116f\u11ab\u110c\u116e\u1110\u1162\u11a8/\ub300\uc9c0240\ud3c9/\ub300\uad6c\ubd80\ub3d9\uc0b0/\ub300\uad6c\uc804\uc6d0\uc8fc\ud0dd",
"YouTubeChannel": "\uc18c\uc15c\ubbf8\ub514\uc5b4\ubc14\uc774\ud130\uc9c4",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/R4u_atOd73g.mp4",
"Saliency_file_name": "saliency/R4u_atOd73g.mp4",
"Fixations": "fixations/R4u_atOd73g.json",
"YouTubeName": "Endoscopic Spine Surgery",
"YouTubeChannel": "Arash Simaei",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/OafII30hqh8.mp4",
"Saliency_file_name": "saliency/OafII30hqh8.mp4",
"Fixations": "fixations/OafII30hqh8.json",
"YouTubeName": "It's still rendering soooo...",
"YouTubeChannel": "BlinkPopShift",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/ahxPkFdP7Bw.mp4",
"Saliency_file_name": "saliency/ahxPkFdP7Bw.mp4",
"Fixations": "fixations/ahxPkFdP7Bw.json",
"YouTubeName": "Fitted Lifestyle 2016 360VR experience",
"YouTubeChannel": "KarmaComaStudio",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/NdsptbvKrLU.mp4",
"Saliency_file_name": "saliency/NdsptbvKrLU.mp4",
"Fixations": "fixations/NdsptbvKrLU.json",
"YouTubeName": "2016 CSCS Media Meeting in 360 VR",
"YouTubeChannel": "KarmaComaStudio",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/EXm3IAfEiko.mp4",
"Saliency_file_name": "saliency/EXm3IAfEiko.mp4",
"Fixations": "fixations/EXm3IAfEiko.json",
"YouTubeName": "360 Grad \u00c4gypten Hafen Port Ghalib Bootsausfahrt",
"YouTubeChannel": "Horst Schlemmer",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/iI6Uf3W44X0.mp4",
"Saliency_file_name": "saliency/iI6Uf3W44X0.mp4",
"Fixations": "fixations/iI6Uf3W44X0.json",
"YouTubeName": "Punching through the Wave",
"YouTubeChannel": "Angus Mackie",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/cuvzlgnP8vw.mp4",
"Saliency_file_name": "saliency/cuvzlgnP8vw.mp4",
"Fixations": "fixations/cuvzlgnP8vw.json",
"YouTubeName": "0 kava",
"YouTubeChannel": "pierfrancescom69",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/BPuORQvPfEw.mp4",
"Saliency_file_name": "saliency/BPuORQvPfEw.mp4",
"Fixations": "fixations/BPuORQvPfEw.json",
"YouTubeName": "Sentiero Rosso_1 Fiumicello 360\u00b0 VR",
"YouTubeChannel": "Ente Parco",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/7fjDkSvMRvI.mp4",
"Saliency_file_name": "saliency/7fjDkSvMRvI.mp4",
"Fixations": "fixations/7fjDkSvMRvI.json",
"YouTubeName": "Improvisaci\u00f3n de ensamble musical...Club Audiovisual EEST 2 de 9 de Julio",
"YouTubeChannel": "Espacio GAfotos",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/jtN3l-6ZNzk.mp4",
"Saliency_file_name": "saliency/jtN3l-6ZNzk.mp4",
"Fixations": "fixations/jtN3l-6ZNzk.json",
"YouTubeName": "Visita a Pachac\u00e1mac (Fragmento 360\u00b0)",
"YouTubeChannel": "Espacio GAfotos",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/3BNGlFCyOJs.mp4",
"Saliency_file_name": "saliency/3BNGlFCyOJs.mp4",
"Fixations": "fixations/3BNGlFCyOJs.json",
"YouTubeName": "River 002- Mae Kok River in 360",
"YouTubeChannel": "Manuel Hern\u00e1ndez [manolo.chan]",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/ENLk1OzG5XI.mp4",
"Saliency_file_name": "saliency/ENLk1OzG5XI.mp4",
"Fixations": "fixations/ENLk1OzG5XI.json",
"YouTubeName": "360_0034_stitched_injected",
"YouTubeChannel": "Manuel Hern\u00e1ndez [manolo.chan]",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/Gm6d632XepQ.mp4",
"Saliency_file_name": "saliency/Gm6d632XepQ.mp4",
"Fixations": "fixations/Gm6d632XepQ.json",
"YouTubeName": "Residencia \"Pe\u00f1a Blanca\", Vest\u00edbulo y sala, (Panorama 360\u00b0)",
"YouTubeChannel": "Miguel Angel Ort\u00edz hern\u00e1ndez",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/IPtcJuLFIJU.mp4",
"Saliency_file_name": "saliency/IPtcJuLFIJU.mp4",
"Fixations": "fixations/IPtcJuLFIJU.json",
"YouTubeName": "Las Vegas International Dragon Boat Festival 2018 Div 3 500m Mixed Final - 360 chaseboat view",
"YouTubeChannel": "Stephen Yang",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/zJwOGN71okY.mp4",
"Saliency_file_name": "saliency/zJwOGN71okY.mp4",
"Fixations": "fixations/zJwOGN71okY.json",
"YouTubeName": "DCA - Luigi's Rollickin' Roadsters",
"YouTubeChannel": "Stephen Yang",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/bo6W0jFsuVM.mp4",
"Saliency_file_name": "saliency/bo6W0jFsuVM.mp4",
"Fixations": "fixations/bo6W0jFsuVM.json",
"YouTubeName": "VR 360 Russia Khromtsovo race",
"YouTubeChannel": "VR 360 Pano",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/tDB2j3H5M-Q.mp4",
"Saliency_file_name": "saliency/tDB2j3H5M-Q.mp4",
"Fixations": "fixations/tDB2j3H5M-Q.json",
"YouTubeName": "360 Balloon launch GoPro Fusion",
"YouTubeChannel": "Jim O'D",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/datDt0fCl1I.mp4",
"Saliency_file_name": "saliency/datDt0fCl1I.mp4",
"Fixations": "fixations/datDt0fCl1I.json",
"YouTubeName": "Peace Sport Friendship Games Burundi OUT 2017 Final",
"YouTubeChannel": "harriettlaur",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/KmNrFMVLx64.mp4",
"Saliency_file_name": "saliency/KmNrFMVLx64.mp4",
"Fixations": "fixations/KmNrFMVLx64.json",
"YouTubeName": "AUTOGRAF Performance at the EMAwards in Los Angeles",
"YouTubeChannel": "Sage Molotov",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/7qGjfZD11II.mp4",
"Saliency_file_name": "saliency/7qGjfZD11II.mp4",
"Fixations": "fixations/7qGjfZD11II.json",
"YouTubeName": "Auditori de la Facultat de Filosofia i Lletres - UAB360",
"YouTubeChannel": "Universitat Aut\u00f2noma de Barcelona",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/ylO0VPutz3s.mp4",
"Saliency_file_name": "saliency/ylO0VPutz3s.mp4",
"Fixations": "fixations/ylO0VPutz3s.json",
"YouTubeName": "Design Lab - UAB360",
"YouTubeChannel": "Universitat Aut\u00f2noma de Barcelona",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/wznzhdmc2NE.mp4",
"Saliency_file_name": "saliency/wznzhdmc2NE.mp4",
"Fixations": "fixations/wznzhdmc2NE.json",
"YouTubeName": "Manly Novotel 360 Tour | Rogues Gallery",
"YouTubeChannel": "Rogues Gallery",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/GCJpyqYky3w.mp4",
"Saliency_file_name": "saliency/GCJpyqYky3w.mp4",
"Fixations": "fixations/GCJpyqYky3w.json",
"YouTubeName": "Juleica 360\u00b0 EHRE + AMT Mittendrin",
"YouTubeChannel": "Fachstelle Juleica",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/IORU9UVV9_c.mp4",
"Saliency_file_name": "saliency/IORU9UVV9_c.mp4",
"Fixations": "fixations/IORU9UVV9_c.json",
"YouTubeName": "BTS: Caliroots Vecay: Adidas Originals x Coca-Cola",
"YouTubeChannel": "INVR SPACE",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/cUhjGFp4F-w.mp4",
"Saliency_file_name": "saliency/cUhjGFp4F-w.mp4",
"Fixations": "fixations/cUhjGFp4F-w.json",
"YouTubeName": "RODAJE 360 CON RAFA NADAL PARA KIA SPORTAGE",
"YouTubeChannel": "La Bicicleta AD - film & creative studio",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/DK2Uyma8FA8.mp4",
"Saliency_file_name": "saliency/DK2Uyma8FA8.mp4",
"Fixations": "fixations/DK2Uyma8FA8.json",
"YouTubeName": "Fashioning Brave New Worlds: Ami Doshi Shah Installation 360 Documentation",
"YouTubeChannel": "AFRI_ DIGITAL",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/wVNH9fnm1Fs.mp4",
"Saliency_file_name": "saliency/wVNH9fnm1Fs.mp4",
"Fixations": "fixations/wVNH9fnm1Fs.json",
"YouTubeName": "2019 Champions League final Tottenham fans pre-match",
"YouTubeChannel": "Nicholas Ng",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/a_9NNWSLWBg.mp4",
"Saliency_file_name": "saliency/a_9NNWSLWBg.mp4",
"Fixations": "fixations/a_9NNWSLWBg.json",
"YouTubeName": "ICSE 2018 Banquet",
"YouTubeChannel": "Nicholas Ng",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/cRBA-FlkFcY.mp4",
"Saliency_file_name": "saliency/cRBA-FlkFcY.mp4",
"Fixations": "fixations/cRBA-FlkFcY.json",
"YouTubeName": "360\u00b0TIMELAPSE 6K - SOLANKI BRINE SPA Beauty dusk & evening - YI 360 VR",
"YouTubeChannel": "VR Storytales",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/ZABvNG4LeBc.mp4",
"Saliency_file_name": "saliency/ZABvNG4LeBc.mp4",
"Fixations": "fixations/ZABvNG4LeBc.json",
"YouTubeName": "Romania BlockChain Summit 2019 Panel featuring MIHAI ALISIE (360\u00b0 Video)",
"YouTubeChannel": "360fly.video",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/Lt4rsC2aW_0.mp4",
"Saliency_file_name": "saliency/Lt4rsC2aW_0.mp4",
"Fixations": "fixations/Lt4rsC2aW_0.json",
"YouTubeName": "Blender Test 7 | 4K 360\u00b0 Video",
"YouTubeChannel": "Shad 55",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/tg_RJrlksIA.mp4",
"Saliency_file_name": "saliency/tg_RJrlksIA.mp4",
"Fixations": "fixations/tg_RJrlksIA.json",
"YouTubeName": "Eric",
"YouTubeChannel": "Anson K",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/YTxbDIjTQd4.mp4",
"Saliency_file_name": "saliency/YTxbDIjTQd4.mp4",
"Fixations": "fixations/YTxbDIjTQd4.json",
"YouTubeName": "CC",
"YouTubeChannel": "Anson K",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/s9F3X0zOmac.mp4",
"Saliency_file_name": "saliency/s9F3X0zOmac.mp4",
"Fixations": "fixations/s9F3X0zOmac.json",
"YouTubeName": "Filipina 360 v 7 injected",
"YouTubeChannel": "France 3 Corse ViaStella",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/7S9h55mk9Bs.mp4",
"Saliency_file_name": "saliency/7S9h55mk9Bs.mp4",
"Fixations": "fixations/7S9h55mk9Bs.json",
"YouTubeName": "Les locaux de RCFM \u00e0 Bastia en 360",
"YouTubeChannel": "France 3 Corse ViaStella",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/7yKfJ2GjbZ8.mp4",
"Saliency_file_name": "saliency/7yKfJ2GjbZ8.mp4",
"Fixations": "fixations/7yKfJ2GjbZ8.json",
"YouTubeName": "Balade en 360\u00b0 \u00e0 Bavella.",
"YouTubeChannel": "France 3 Corse ViaStella",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/ct1CaMVEjho.mp4",
"Saliency_file_name": "saliency/ct1CaMVEjho.mp4",
"Fixations": "fixations/ct1CaMVEjho.json",
"YouTubeName": "Matthew A. Swift on Public-Private Partnerships - 360\u00ba Interview for TEDxFultonStreet",
"YouTubeChannel": "TEDxFultonStreet",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/-ZQ8AtQS7cI.mp4",
"Saliency_file_name": "saliency/-ZQ8AtQS7cI.mp4",
"Fixations": "fixations/-ZQ8AtQS7cI.json",
"YouTubeName": "360 VR - C\u00e1i chu\u1ed3ng c\u1ee7a t\u00f4i",
"YouTubeChannel": "KKK Team",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/A5uVIBGN1Xg.mp4",
"Saliency_file_name": "saliency/A5uVIBGN1Xg.mp4",
"Fixations": "fixations/A5uVIBGN1Xg.json",
"YouTubeName": "VR Taiwan\u81fa\u5317\u8868\u6f14\u85dd\u8853\u4e2d\u5fc3\u300a\u5473\u9053\u5287\u5834\u300b2",
"YouTubeChannel": "Goodspeed\u5149\u8000\u79d1\u6280\u50b3\u64ad",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/rVLubFjTnOc.mp4",
"Saliency_file_name": "saliency/rVLubFjTnOc.mp4",
"Fixations": "fixations/rVLubFjTnOc.json",
"YouTubeName": "2016\u5e741+1\u96d9\u821e\u4f5c-\u53e4\u540d\u4f38\u300a\u6c99\u5ea6\u300bSadhu~VR",
"YouTubeChannel": "Goodspeed\u5149\u8000\u79d1\u6280\u50b3\u64ad",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/d4NuB5W2Pjw.mp4",
"Saliency_file_name": "saliency/d4NuB5W2Pjw.mp4",
"Fixations": "fixations/d4NuB5W2Pjw.json",
"YouTubeName": "rozetka bolgarka",
"YouTubeChannel": "ANT Berezhnyi",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/sEB_d9mzeGc.mp4",
"Saliency_file_name": "saliency/sEB_d9mzeGc.mp4",
"Fixations": "fixations/sEB_d9mzeGc.json",
"YouTubeName": "VIDEO 6725",
"YouTubeChannel": "ANT Berezhnyi",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/Siy0yeVSVsU.mp4",
"Saliency_file_name": "saliency/Siy0yeVSVsU.mp4",
"Fixations": "fixations/Siy0yeVSVsU.json",
"YouTubeName": "VIDEO 6404",
"YouTubeChannel": "ANT Berezhnyi",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/ej6SRgQvZBc.mp4",
"Saliency_file_name": "saliency/ej6SRgQvZBc.mp4",
"Fixations": "fixations/ej6SRgQvZBc.json",
"YouTubeName": "The Pit Stop Experience",
"YouTubeChannel": "Elephant Road",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/jgDQC1EIOa0.mp4",
"Saliency_file_name": "saliency/jgDQC1EIOa0.mp4",
"Fixations": "fixations/jgDQC1EIOa0.json",
"YouTubeName": "Osho, Sex, Tofu, Burningman and Munchkin Optimystic Pie",
"YouTubeChannel": "Allan Lundell",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/QMzAM5wZZZs.mp4",
"Saliency_file_name": "saliency/QMzAM5wZZZs.mp4",
"Fixations": "fixations/QMzAM5wZZZs.json",
"YouTubeName": "AWR Guam Shortwave Towers #AWR360",
"YouTubeChannel": "Andrew Daryl Gungadoo",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/_LnR8TYVQcQ.mp4",
"Saliency_file_name": "saliency/_LnR8TYVQcQ.mp4",
"Fixations": "fixations/_LnR8TYVQcQ.json",
"YouTubeName": "Stimme Der Hoffnung Studio in 360 ( v3)",
"YouTubeChannel": "Andrew Daryl Gungadoo",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/Xv6WU-YcJNY.mp4",
"Saliency_file_name": "saliency/Xv6WU-YcJNY.mp4",
"Fixations": "fixations/Xv6WU-YcJNY.json",
"YouTubeName": "Thailand 360 VR VLOG 04 Walking Street, Pattaya, Thailand",
"YouTubeChannel": "Jay Sondagar",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/dKnRKG-AkHQ.mp4",
"Saliency_file_name": "saliency/dKnRKG-AkHQ.mp4",
"Fixations": "fixations/dKnRKG-AkHQ.json",
"YouTubeName": "New Model Army THE CHARGE",
"YouTubeChannel": "kurth-media",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/9NUJ_tqnaGk.mp4",
"Saliency_file_name": "saliency/9NUJ_tqnaGk.mp4",
"Fixations": "fixations/9NUJ_tqnaGk.json",
"YouTubeName": "Luminator Tech 360 degree real estate demo",
"YouTubeChannel": "Luminator Tech , LLC",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/eFgKQEjGj4Y.mp4",
"Saliency_file_name": "saliency/eFgKQEjGj4Y.mp4",
"Fixations": "fixations/eFgKQEjGj4Y.json",
"YouTubeName": "[360x180] \u0412\u0435\u0441\u0442\u0438\u0431\u044e\u043b\u044c \u043c\u0435\u0442\u0440\u043e \u041e\u043a\u0442\u044f\u0431\u0440\u044c\u0441\u043a\u0430\u044f-\u043a\u043e\u043b\u044c\u0446\u0435\u0432\u0430\u044f 1950 \u0433\u043e\u0434\u0430 \u043f\u043e\u0441\u0442\u0440\u043e\u0439\u043a\u0438",
"YouTubeChannel": "trolleway",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/3dzorbUlrLI.mp4",
"Saliency_file_name": "saliency/3dzorbUlrLI.mp4",
"Fixations": "fixations/3dzorbUlrLI.json",
"YouTubeName": "360 degree video: What if parallaxes and proper motions were 100,000 times larger...",
"YouTubeChannel": "Stefan Jordan",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/krS1stp57Hg.mp4",
"Saliency_file_name": "saliency/krS1stp57Hg.mp4",
"Fixations": "fixations/krS1stp57Hg.json",
"YouTubeName": "Red light Runner on Baltimore Ave Route 1 [360 video]",
"YouTubeChannel": "Biking B",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/M7C0250o9Jg.mp4",
"Saliency_file_name": "saliency/M7C0250o9Jg.mp4",
"Fixations": "fixations/M7C0250o9Jg.json",
"YouTubeName": "Ricoh Theta V Hong Kong HK MK Mongkok",
"YouTubeChannel": "TTRoadster",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/ObqhabsQyIg.mp4",
"Saliency_file_name": "saliency/ObqhabsQyIg.mp4",
"Fixations": "fixations/ObqhabsQyIg.json",
"YouTubeName": "BlazerZW // 360 Video | Inauguration of Emmerson Dambudzo Mnagagwa",
"YouTubeChannel": "Blazer",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/niy72vBep0E.mp4",
"Saliency_file_name": "saliency/niy72vBep0E.mp4",
"Fixations": "fixations/niy72vBep0E.json",
"YouTubeName": "Carriacou Trip AA plane ride to Mia",
"YouTubeChannel": "Myfamtrips Morris",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/pKuazgpH8-E.mp4",
"Saliency_file_name": "saliency/pKuazgpH8-E.mp4",
"Fixations": "fixations/pKuazgpH8-E.json",
"YouTubeName": "Mia airport part 3",
"YouTubeChannel": "Myfamtrips Morris",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/4UFjRGTu5sk.mp4",
"Saliency_file_name": "saliency/4UFjRGTu5sk.mp4",
"Fixations": "fixations/4UFjRGTu5sk.json",
"YouTubeName": "360 discussion drupal accessibility - NonProfit Drupal Summit",
"YouTubeChannel": "Mike Gifford",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/5ACr0jeKphA.mp4",
"Saliency_file_name": "saliency/5ACr0jeKphA.mp4",
"Fixations": "fixations/5ACr0jeKphA.json",
"YouTubeName": "NAFPV 2018 - Wing race final - Open Class - 360 Test",
"YouTubeChannel": "PK",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/XQDHb1fcdj8.mp4",
"Saliency_file_name": "saliency/XQDHb1fcdj8.mp4",
"Fixations": "fixations/XQDHb1fcdj8.json",
"YouTubeName": "2014/10/22 \u30cf\u309a\u30e9\u30aa \u30b8\u30e3\u30fc\u30de\u30f3\u30c1\u30e3\u30cd\u30eb",
"YouTubeChannel": "Panoramania",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/et_0wR4cl-s.mp4",
"Saliency_file_name": "saliency/et_0wR4cl-s.mp4",
"Fixations": "fixations/et_0wR4cl-s.json",
"YouTubeName": "360 video - The Reverend Shawn Amos - Hollywood blues - live in the Bluesmoose radio studios",
"YouTubeChannel": "Blues Moose",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/DQe4M2b12rg.mp4",
"Saliency_file_name": "saliency/DQe4M2b12rg.mp4",
"Fixations": "fixations/DQe4M2b12rg.json",
"YouTubeName": "VID 20190507 105844 00 517",
"YouTubeChannel": "\u6797\u5b8f",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/Xr73ZxbsMqU.mp4",
"Saliency_file_name": "saliency/Xr73ZxbsMqU.mp4",
"Fixations": "fixations/Xr73ZxbsMqU.json",
"YouTubeName": "VID 20200315 102037 00 005",
"YouTubeChannel": "\u6797\u5b8f",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/XAhnYz-Hb5w.mp4",
"Saliency_file_name": "saliency/XAhnYz-Hb5w.mp4",
"Fixations": "fixations/XAhnYz-Hb5w.json",
"YouTubeName": "VID 20200227 071834 00 002",
"YouTubeChannel": "\u6797\u5b8f",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/MeNqErqK8Jk.mp4",
"Saliency_file_name": "saliency/MeNqErqK8Jk.mp4",
"Fixations": "fixations/MeNqErqK8Jk.json",
"YouTubeName": "VID 20190507 204018 00 585",
"YouTubeChannel": "\u6797\u5b8f",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/Qraz9qg9oVY.mp4",
"Saliency_file_name": "saliency/Qraz9qg9oVY.mp4",
"Fixations": "fixations/Qraz9qg9oVY.json",
"YouTubeName": "VID 20190507 133717 00 557",
"YouTubeChannel": "\u6797\u5b8f",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/VzO4QC-EuTc.mp4",
"Saliency_file_name": "saliency/VzO4QC-EuTc.mp4",
"Fixations": "fixations/VzO4QC-EuTc.json",
"YouTubeName": "VID 20190507 135202 00 559",
"YouTubeChannel": "\u6797\u5b8f",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/MjHtlW6s-IA.mp4",
"Saliency_file_name": "saliency/MjHtlW6s-IA.mp4",
"Fixations": "fixations/MjHtlW6s-IA.json",
"YouTubeName": "VID 20190507 133756 00 558",
"YouTubeChannel": "\u6797\u5b8f",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/MJ8_aLDoOjw.mp4",
"Saliency_file_name": "saliency/MJ8_aLDoOjw.mp4",
"Fixations": "fixations/MJ8_aLDoOjw.json",
"YouTubeName": "20191214 102723\u73e0\u5c71\u6c11\u5bbf\u4f9d\u5c71\u884c\u9928",
"YouTubeChannel": "\u6797\u5b8f",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/i_uUVghUA4w.mp4",
"Saliency_file_name": "saliency/i_uUVghUA4w.mp4",
"Fixations": "fixations/i_uUVghUA4w.json",
"YouTubeName": "20191213 132936\u5c71\u540e\u6c11\u4fd7\u6751",
"YouTubeChannel": "\u6797\u5b8f",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/srbitFSBtRo.mp4",
"Saliency_file_name": "saliency/srbitFSBtRo.mp4",
"Fixations": "fixations/srbitFSBtRo.json",
"YouTubeName": "20191213 163427\u73e0\u5c71\u6c11\u5bbf\u4f9d\u5c71\u884c\u9928",
"YouTubeChannel": "\u6797\u5b8f",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/djWsSA5HxT8.mp4",
"Saliency_file_name": "saliency/djWsSA5HxT8.mp4",
"Fixations": "fixations/djWsSA5HxT8.json",
"YouTubeName": "20191213 121624\u99ac\u5c71\u89c0\u6e2c\u7ad9",
"YouTubeChannel": "\u6797\u5b8f",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/9hPn4m5Dm3U.mp4",
"Saliency_file_name": "saliency/9hPn4m5Dm3U.mp4",
"Fixations": "fixations/9hPn4m5Dm3U.json",
"YouTubeName": "20191213 102915\u7345\u5c71\u7832\u9663\u5730",
"YouTubeChannel": "\u6797\u5b8f",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/qkw70dtvSSY.mp4",
"Saliency_file_name": "saliency/qkw70dtvSSY.mp4",
"Fixations": "fixations/qkw70dtvSSY.json",
"YouTubeName": "\u0421\u0428\u0410 4531: 360-\u0427\u0442\u043e \u043d\u043e\u0432\u043e\u0433\u043e \u043d\u0430 \u043d\u0430\u0448\u0435\u0439 \u0441\u0442\u0440\u043e\u0439\u043a\u0435 \u0432 \u0418\u0441\u0442 \u041f\u0430\u043b\u043e \u0410\u043b\u0442\u043e?",
"YouTubeChannel": "SiliconValleyVoice",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/UKOIYkRKYgk.mp4",
"Saliency_file_name": "saliency/UKOIYkRKYgk.mp4",
"Fixations": "fixations/UKOIYkRKYgk.json",
"YouTubeName": "360vr \ud558\ub0a8\ub3d9 \uc6d0\ub8f8\uc8fc\ud0dd [\ub9e4\ub9e4] \ubd80\ub3d9\uc0b0\ub9e4\ubb3c \uad11\uc8fc\uc0c1\uac00\ub9e8",
"YouTubeChannel": "\uad11\uc8fc\uc0c1\uac00\ub9e8",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/118N_k7_w3I.mp4",
"Saliency_file_name": "saliency/118N_k7_w3I.mp4",
"Fixations": "fixations/118N_k7_w3I.json",
"YouTubeName": "360vr \ud558\ub0a8\ub3d9 \uc544\ud30c\ud2b8 \ub2e4\uc0ac\ub85c\uc6c03\ucc28 [\ub9e4\ub9e4] \ubd80\ub3d9\uc0b0 \ub9e4\ubb3c",
"YouTubeChannel": "\uad11\uc8fc\uc0c1\uac00\ub9e8",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/cHxytXiI7jU.mp4",
"Saliency_file_name": "saliency/cHxytXiI7jU.mp4",
"Fixations": "fixations/cHxytXiI7jU.json",
"YouTubeName": "\u0425\u041e\u041c\u041c \u2014 \u0422\u0440\u0435\u0445\u043a\u043e\u043c\u043d\u0430\u0442\u043d\u0430\u044f \u043a\u0432\u0430\u0440\u0442\u0438\u0440\u0430 \u0432 \u0416\u041a \u041f\u0430\u0440\u043a \u0413\u043e\u0440\u044c\u043a\u043e\u0433\u043e \u0433. \u0421\u043e\u0447\u0438",
"YouTubeChannel": "\u0425\u041e\u041c\u041c",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/hkwO0rsQK7k.mp4",
"Saliency_file_name": "saliency/hkwO0rsQK7k.mp4",
"Fixations": "fixations/hkwO0rsQK7k.json",
"YouTubeName": "London at night (360\u00b0)",
"YouTubeChannel": "Daniel Margadant",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/e5o87euVCWU.mp4",
"Saliency_file_name": "saliency/e5o87euVCWU.mp4",
"Fixations": "fixations/e5o87euVCWU.json",
"YouTubeName": "Sunset at Waikiki beach (360\u00b0)",
"YouTubeChannel": "Daniel Margadant",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/fCoTt93d3dU.mp4",
"Saliency_file_name": "saliency/fCoTt93d3dU.mp4",
"Fixations": "fixations/fCoTt93d3dU.json",
"YouTubeName": "Arboretum, Washington DC (360\u00b0)",
"YouTubeChannel": "Daniel Margadant",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/gp7gpmQSCpY.mp4",
"Saliency_file_name": "saliency/gp7gpmQSCpY.mp4",
"Fixations": "fixations/gp7gpmQSCpY.json",
"YouTubeName": "Beihai Park (360\u00b0)",
"YouTubeChannel": "Daniel Margadant",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/NZI1Qdx5SNA.mp4",
"Saliency_file_name": "saliency/NZI1Qdx5SNA.mp4",
"Fixations": "fixations/NZI1Qdx5SNA.json",
"YouTubeName": "Pizzo Leone (360\u00b0)",
"YouTubeChannel": "Daniel Margadant",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/wBjpSAv_Kr0.mp4",
"Saliency_file_name": "saliency/wBjpSAv_Kr0.mp4",
"Fixations": "fixations/wBjpSAv_Kr0.json",
"YouTubeName": "Eclipse 360 VR 4K Weather Balloon, 2 of 10",
"YouTubeChannel": "Ryan Christopher Ferrell",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/ueBNveq0O-8.mp4",
"Saliency_file_name": "saliency/ueBNveq0O-8.mp4",
"Fixations": "fixations/ueBNveq0O-8.json",
"YouTubeName": "St John The Baptist City Parish Church, Cardiff. 21.12.18",
"YouTubeChannel": "MrSdjones3",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/LZ3ztrA57B8.mp4",
"Saliency_file_name": "saliency/LZ3ztrA57B8.mp4",
"Fixations": "fixations/LZ3ztrA57B8.json",
"YouTubeName": "Chapel Park Stow Hill, Newport",
"YouTubeChannel": "MrSdjones3",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/bzi7GG6Er6U.mp4",
"Saliency_file_name": "saliency/bzi7GG6Er6U.mp4",
"Fixations": "fixations/bzi7GG6Er6U.json",
"YouTubeName": "Stijlkamer in Rapenburg 71 in Virtual Reality",
"YouTubeChannel": "Erfgoed Leiden en Omstreken",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/D-mP8lU4qAA.mp4",
"Saliency_file_name": "saliency/D-mP8lU4qAA.mp4",
"Fixations": "fixations/D-mP8lU4qAA.json",
"YouTubeName": "Stijlkamer Rapenburg 71 Leiden in Virtual Reality",
"YouTubeChannel": "Erfgoed Leiden en Omstreken",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/7NXWosln8ns.mp4",
"Saliency_file_name": "saliency/7NXWosln8ns.mp4",
"Fixations": "fixations/7NXWosln8ns.json",
"YouTubeName": "Tuinkamer van Rapenburg 71 in Virtual Reality",
"YouTubeChannel": "Erfgoed Leiden en Omstreken",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/ZW75Sh0JIT0.mp4",
"Saliency_file_name": "saliency/ZW75Sh0JIT0.mp4",
"Fixations": "fixations/ZW75Sh0JIT0.json",
"YouTubeName": "Drum Class with Master Drummer Solo Motherland Music Wednsday Classes 2017 12 131",
"YouTubeChannel": "motherlanddrums",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/Qx2b8IR2As4.mp4",
"Saliency_file_name": "saliency/Qx2b8IR2As4.mp4",
"Fixations": "fixations/Qx2b8IR2As4.json",
"YouTubeName": "360\u00b0 Video Berlin @ Night",
"YouTubeChannel": "Stefan Nitz",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/i3LlgRMtotE.mp4",
"Saliency_file_name": "saliency/i3LlgRMtotE.mp4",
"Fixations": "fixations/i3LlgRMtotE.json",
"YouTubeName": "360-video L\u00e4ngst fram p\u00e5 Briggen Tre Kronor",
"YouTubeChannel": "Bj\u00f6rn Falkevik",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/g4fZW08tR8c.mp4",
"Saliency_file_name": "saliency/g4fZW08tR8c.mp4",
"Fixations": "fixations/g4fZW08tR8c.json",
"YouTubeName": "360\u00b0 Video Munich: Olympia Einkaufszentrum - Fashion Show Fall 2015",
"YouTubeChannel": "munich360",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/CCKHTFat9Lg.mp4",
"Saliency_file_name": "saliency/CCKHTFat9Lg.mp4",
"Fixations": "fixations/CCKHTFat9Lg.json",
"YouTubeName": "Einblick in die Ludwigskirche, eines der sch\u00f6nsten Barockbauten in Saarbr\u00fccken. in VR 360",
"YouTubeChannel": "Open Gallery Saarland - Staatskanzlei",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/C8sfnYdaPxo.mp4",
"Saliency_file_name": "saliency/C8sfnYdaPxo.mp4",
"Fixations": "fixations/C8sfnYdaPxo.json",
"YouTubeName": "Shangri-La Hotel At The Shard London | 4K 360",
"YouTubeChannel": "Davidson Free Media",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/KV6joeW6hsg.mp4",
"Saliency_file_name": "saliency/KV6joeW6hsg.mp4",
"Fixations": "fixations/KV6joeW6hsg.json",
"YouTubeName": "Tenerife Bike Action 360 in 4K",
"YouTubeChannel": "AMS AllMountainStyle",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/g4donIcTB9A.mp4",
"Saliency_file_name": "saliency/g4donIcTB9A.mp4",
"Fixations": "fixations/g4donIcTB9A.json",
"YouTubeName": "Opole Piast 360 droga do Platformy",
"YouTubeChannel": "Centrum Nurkowe \" Scuba Elite \"",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/mMPrt8JLspk.mp4",
"Saliency_file_name": "saliency/mMPrt8JLspk.mp4",
"Fixations": "fixations/mMPrt8JLspk.json",
"YouTubeName": "Opole Piast 360 Platforma 6m",
"YouTubeChannel": "Centrum Nurkowe \" Scuba Elite \"",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/nayFpbz3u5k.mp4",
"Saliency_file_name": "saliency/nayFpbz3u5k.mp4",
"Fixations": "fixations/nayFpbz3u5k.json",
"YouTubeName": "360 Grad Video: Kabine 104, Kat. C - MS Ariana",
"YouTubeChannel": "RF ViGeo TV",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/7HpVzn4Hq9A.mp4",
"Saliency_file_name": "saliency/7HpVzn4Hq9A.mp4",
"Fixations": "fixations/7HpVzn4Hq9A.json",
"YouTubeName": "360 Grad Video: Kabine 231, Kat. A - MS Prinzessin Katharina",
"YouTubeChannel": "RF ViGeo TV",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/DGD0GLNLIjk.mp4",
"Saliency_file_name": "saliency/DGD0GLNLIjk.mp4",
"Fixations": "fixations/DGD0GLNLIjk.json",
"YouTubeName": "360 Grad Video: Kabine 256, Kat. G - MS Sofia",
"YouTubeChannel": "RF ViGeo TV",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/Pol-ow4ukKQ.mp4",
"Saliency_file_name": "saliency/Pol-ow4ukKQ.mp4",
"Fixations": "fixations/Pol-ow4ukKQ.json",
"YouTubeName": "Sofia Kabine 213",
"YouTubeChannel": "RF ViGeo TV",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/RtIfzNuMV9c.mp4",
"Saliency_file_name": "saliency/RtIfzNuMV9c.mp4",
"Fixations": "fixations/RtIfzNuMV9c.json",
"YouTubeName": "360 Grad Video: Kabine 102, Kat. D - MS Aurelia",
"YouTubeChannel": "RF ViGeo TV",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/A6YRF0txvOM.mp4",
"Saliency_file_name": "saliency/A6YRF0txvOM.mp4",
"Fixations": "fixations/A6YRF0txvOM.json",
"YouTubeName": "Studio Tricaster Hamburg",
"YouTubeChannel": "RF ViGeo TV",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/p9A6BGaPyL4.mp4",
"Saliency_file_name": "saliency/p9A6BGaPyL4.mp4",
"Fixations": "fixations/p9A6BGaPyL4.json",
"YouTubeName": "360 Grad Video: Kabine 7455, Kat. R - MS Artania",
"YouTubeChannel": "RF ViGeo TV",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/aFG_x5cCpA8.mp4",
"Saliency_file_name": "saliency/aFG_x5cCpA8.mp4",
"Fixations": "fixations/aFG_x5cCpA8.json",
"YouTubeName": "360 Grad Video: Kabine 8020, Kat. H - MS Albatros",
"YouTubeChannel": "RF ViGeo TV",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/NLWz05u6Kc8.mp4",
"Saliency_file_name": "saliency/NLWz05u6Kc8.mp4",
"Fixations": "fixations/NLWz05u6Kc8.json",
"YouTubeName": "360 Grad Video: Kabine 8026, Kat. Q - MS Albatros",
"YouTubeChannel": "RF ViGeo TV",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/uO9a5oihtLE.mp4",
"Saliency_file_name": "saliency/uO9a5oihtLE.mp4",
"Fixations": "fixations/uO9a5oihtLE.json",
"YouTubeName": "360 Grad Video: Kabine 301, Kat. G - MS Alina",
"YouTubeChannel": "RF ViGeo TV",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/xO1mIuX6O9w.mp4",
"Saliency_file_name": "saliency/xO1mIuX6O9w.mp4",
"Fixations": "fixations/xO1mIuX6O9w.json",
"YouTubeName": "RoussePrestige Kabine 102",
"YouTubeChannel": "RF ViGeo TV",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/zoe5DdMsmJY.mp4",
"Saliency_file_name": "saliency/zoe5DdMsmJY.mp4",
"Fixations": "fixations/zoe5DdMsmJY.json",
"YouTubeName": "360 Grad Video: Kabine 117, Kat. B - MS Saxonia",
"YouTubeChannel": "RF ViGeo TV",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/C-6pNgrMbKw.mp4",
"Saliency_file_name": "saliency/C-6pNgrMbKw.mp4",
"Fixations": "fixations/C-6pNgrMbKw.json",
"YouTubeName": "360 Grad Video: Kabine 103, Kat. C - MS Anesha",
"YouTubeChannel": "RF ViGeo TV",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/503KOtVnpLk.mp4",
"Saliency_file_name": "saliency/503KOtVnpLk.mp4",
"Fixations": "fixations/503KOtVnpLk.json",
"YouTubeName": "360 Grad Video: Bug - MS Artania",
"YouTubeChannel": "RF ViGeo TV",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/jOmdTkAz8AQ.mp4",
"Saliency_file_name": "saliency/jOmdTkAz8AQ.mp4",
"Fixations": "fixations/jOmdTkAz8AQ.json",
"YouTubeName": "360 Grad Video: Lido Terrasse - MS Deutschland",
"YouTubeChannel": "RF ViGeo TV",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/illIGpoasw8.mp4",
"Saliency_file_name": "saliency/illIGpoasw8.mp4",
"Fixations": "fixations/illIGpoasw8.json",
"YouTubeName": "ATS Kabine 7034",
"YouTubeChannel": "RF ViGeo TV",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/SDRODrHnzjo.mp4",
"Saliency_file_name": "saliency/SDRODrHnzjo.mp4",
"Fixations": "fixations/SDRODrHnzjo.json",
"YouTubeName": "ART 6608",
"YouTubeChannel": "RF ViGeo TV",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/oUi1Qn21yh8.mp4",
"Saliency_file_name": "saliency/oUi1Qn21yh8.mp4",
"Fixations": "fixations/oUi1Qn21yh8.json",
"YouTubeName": "@EURONEWS 360\u00ba | Refugees at the Mbera camp in Mauritania",
"YouTubeChannel": "Dream Life ",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/W7WQu0qtNDQ.mp4",
"Saliency_file_name": "saliency/W7WQu0qtNDQ.mp4",
"Fixations": "fixations/W7WQu0qtNDQ.json",
"YouTubeName": "\u0421\u0435\u043d\u0441\u043e\u0440\u043d\u0430\u044f \u043a\u043e\u043c\u043d\u0430\u0442\u0430 \u0432\u0438\u0434\u0435\u043e 4K video 360 \u0433\u0440\u0430\u0434\u0443\u0441\u043e\u0432 (Sensory room 360 video)",
"YouTubeChannel": "Upstarts",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/iXKmXvR2fGE.mp4",
"Saliency_file_name": "saliency/iXKmXvR2fGE.mp4",
"Fixations": "fixations/iXKmXvR2fGE.json",
"YouTubeName": "See the world from the comfort of luxury",
"YouTubeChannel": "Jumeirah",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/eKYLu0NxLOk.mp4",
"Saliency_file_name": "saliency/eKYLu0NxLOk.mp4",
"Fixations": "fixations/eKYLu0NxLOk.json",
"YouTubeName": "Jumeirah Inside \u2013 \u043f\u0430\u043d\u043e\u0440\u0430\u043c\u043d\u043e\u0435 \u0432\u0438\u0434\u0435\u043e \u0441 \u0443\u0433\u043b\u043e\u043c \u043e\u0431\u0437\u043e\u0440\u0430 360\u2070 \u043d\u0430 YouTube",
"YouTubeChannel": "Jumeirah",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/1wiHVfld2Ms.mp4",
"Saliency_file_name": "saliency/1wiHVfld2Ms.mp4",
"Fixations": "fixations/1wiHVfld2Ms.json",
"YouTubeName": "Palazzo della Meridiana - Genova - Rolli",
"YouTubeChannel": "Totema",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/1BBkHpgtyu8.mp4",
"Saliency_file_name": "saliency/1BBkHpgtyu8.mp4",
"Fixations": "fixations/1BBkHpgtyu8.json",
"YouTubeName": "Terrazzi di Palazzo Reale - Vista da Palazzo Balbi",
"YouTubeChannel": "Totema",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/kE4BGaNs1VE.mp4",
"Saliency_file_name": "saliency/kE4BGaNs1VE.mp4",
"Fixations": "fixations/kE4BGaNs1VE.json",
"YouTubeName": "I giardini di Palazzo Reale in VR 360\u00b0",
"YouTubeChannel": "Totema",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/G0GVJVn8zuI.mp4",
"Saliency_file_name": "saliency/G0GVJVn8zuI.mp4",
"Fixations": "fixations/G0GVJVn8zuI.json",
"YouTubeName": "#SALA DEGLI ARAZZI -#I ROLLI #GENOVA #PALAZZO REALE",
"YouTubeChannel": "Totema",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/7i95r3VYjOA.mp4",
"Saliency_file_name": "saliency/7i95r3VYjOA.mp4",
"Fixations": "fixations/7i95r3VYjOA.json",
"YouTubeName": "Sala del TRONO - Palazzo Reale - Genova",
"YouTubeChannel": "Totema",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/QIcVzTy0A_g.mp4",
"Saliency_file_name": "saliency/QIcVzTy0A_g.mp4",
"Fixations": "fixations/QIcVzTy0A_g.json",
"YouTubeName": "2019 05 09 frog island ypsilanti",
"YouTubeChannel": "Warren Nelson",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/cRRc4bUrWxY.mp4",
"Saliency_file_name": "saliency/cRRc4bUrWxY.mp4",
"Fixations": "fixations/cRRc4bUrWxY.json",
"YouTubeName": "360\u00b0 inside & out Wakeboarden erleben auf der boot D\u00fcsseldorf 2020",
"YouTubeChannel": "boot daily",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/yMLnRdXhx9w.mp4",
"Saliency_file_name": "saliency/yMLnRdXhx9w.mp4",
"Fixations": "fixations/yMLnRdXhx9w.json",
"YouTubeName": "Orman Genel M\u00fcd\u00fcrl\u00fc\u011f\u00fc Burdur Ormanlar\u0131 360\u00b0 Video",
"YouTubeChannel": "Pilot Medya ( Pilot Medya 360\u00ba )",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/NToWqOVbeXo.mp4",
"Saliency_file_name": "saliency/NToWqOVbeXo.mp4",
"Fixations": "fixations/NToWqOVbeXo.json",
"YouTubeName": "#Cura\u00e7ao360, Sali\u00f1a - Pietermaai - Punda 14, 20180815",
"YouTubeChannel": "OmniSynThesis 360 VR Promotions",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/uDfOwK6Fn-M.mp4",
"Saliency_file_name": "saliency/uDfOwK6Fn-M.mp4",
"Fixations": "fixations/uDfOwK6Fn-M.json",
"YouTubeName": "#Cura\u00e7ao360, Sali\u00f1a - Pietermaai - Punda 7, 20180815",
"YouTubeChannel": "OmniSynThesis 360 VR Promotions",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/0IGB8RjWMdA.mp4",
"Saliency_file_name": "saliency/0IGB8RjWMdA.mp4",
"Fixations": "fixations/0IGB8RjWMdA.json",
"YouTubeName": "#Cura\u00e7ao360, Hike Bahada di Daniel 6, 20190705",
"YouTubeChannel": "OmniSynThesis 360 VR Promotions",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/4_0Jw6OEWFE.mp4",
"Saliency_file_name": "saliency/4_0Jw6OEWFE.mp4",
"Fixations": "fixations/4_0Jw6OEWFE.json",
"YouTubeName": "#Cura\u00e7ao360, Schottegat ring 4, 20180813",
"YouTubeChannel": "OmniSynThesis 360 VR Promotions",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/VJDwu0FFF40.mp4",
"Saliency_file_name": "saliency/VJDwu0FFF40.mp4",
"Fixations": "fixations/VJDwu0FFF40.json",
"YouTubeName": "#Cura\u00e7ao360, Otrobanda 6, 20180813",
"YouTubeChannel": "OmniSynThesis 360 VR Promotions",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/KoqFXMKieZE.mp4",
"Saliency_file_name": "saliency/KoqFXMKieZE.mp4",
"Fixations": "fixations/KoqFXMKieZE.json",
"YouTubeName": "#Cura\u00e7ao360, Hike Bahada di Daniel 25, 20190705",
"YouTubeChannel": "OmniSynThesis 360 VR Promotions",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/9TsAe5QSN8s.mp4",
"Saliency_file_name": "saliency/9TsAe5QSN8s.mp4",
"Fixations": "fixations/9TsAe5QSN8s.json",
"YouTubeName": "#Netherlands360, Maastricht 3, 20190916",
"YouTubeChannel": "OmniSynThesis 360 VR Promotions",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/3Bbj-u57v60.mp4",
"Saliency_file_name": "saliency/3Bbj-u57v60.mp4",
"Fixations": "fixations/3Bbj-u57v60.json",
"YouTubeName": "#Cura\u00e7ao360, Hike Bahada di Daniel 17, 20190705",
"YouTubeChannel": "OmniSynThesis 360 VR Promotions",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/zU0mkclUPVM.mp4",
"Saliency_file_name": "saliency/zU0mkclUPVM.mp4",
"Fixations": "fixations/zU0mkclUPVM.json",
"YouTubeName": "#Cura\u00e7ao360, Sali\u00f1a Harbour View 6, 20180208",
"YouTubeChannel": "OmniSynThesis 360 VR Promotions",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/DFH852ACOFA.mp4",
"Saliency_file_name": "saliency/DFH852ACOFA.mp4",
"Fixations": "fixations/DFH852ACOFA.json",
"YouTubeName": "#Cura\u00e7ao360, Sali\u00f1a Harbour View 5, 20180208",
"YouTubeChannel": "OmniSynThesis 360 VR Promotions",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/BaSsirbwo10.mp4",
"Saliency_file_name": "saliency/BaSsirbwo10.mp4",
"Fixations": "fixations/BaSsirbwo10.json",
"YouTubeName": "#Cura\u00e7ao360, Scharloo - Fleur de Marie 7, 20180815",
"YouTubeChannel": "OmniSynThesis 360 VR Promotions",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/UlecCubien8.mp4",
"Saliency_file_name": "saliency/UlecCubien8.mp4",
"Fixations": "fixations/UlecCubien8.json",
"YouTubeName": "#Cura\u00e7ao360, Scharloo - Fleur de Marie 8, 20180815",
"YouTubeChannel": "OmniSynThesis 360 VR Promotions",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/5IkN3wfL_wQ.mp4",
"Saliency_file_name": "saliency/5IkN3wfL_wQ.mp4",
"Fixations": "fixations/5IkN3wfL_wQ.json",
"YouTubeName": "#Cura\u00e7ao360, Schottegat ring 5, 20180814",
"YouTubeChannel": "OmniSynThesis 360 VR Promotions",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/6WVPOKqgJ4A.mp4",
"Saliency_file_name": "saliency/6WVPOKqgJ4A.mp4",
"Fixations": "fixations/6WVPOKqgJ4A.json",
"YouTubeName": "#Cura\u00e7ao360, Boka Tabla 1, 20190217",
"YouTubeChannel": "OmniSynThesis 360 VR Promotions",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/Xw5Yd26tRwQ.mp4",
"Saliency_file_name": "saliency/Xw5Yd26tRwQ.mp4",
"Fixations": "fixations/Xw5Yd26tRwQ.json",
"YouTubeName": "#Cura\u00e7ao360, Carnival Gran Marcha 2, 20200223",
"YouTubeChannel": "OmniSynThesis 360 VR Promotions",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/siTa3S3TqBE.mp4",
"Saliency_file_name": "saliency/siTa3S3TqBE.mp4",
"Fixations": "fixations/siTa3S3TqBE.json",
"YouTubeName": "#Cura\u00e7ao360, Otrobanda 2",
"YouTubeChannel": "OmniSynThesis 360 VR Promotions",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/vvEbw8jDVEA.mp4",
"Saliency_file_name": "saliency/vvEbw8jDVEA.mp4",
"Fixations": "fixations/vvEbw8jDVEA.json",
"YouTubeName": "#Cura\u00e7ao360, Zaantjessteeg - Elleboogstraat, 20190430",
"YouTubeChannel": "OmniSynThesis 360 VR Promotions",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/DyYsSuBf6fk.mp4",
"Saliency_file_name": "saliency/DyYsSuBf6fk.mp4",
"Fixations": "fixations/DyYsSuBf6fk.json",
"YouTubeName": "EXPLORA EL PUEBLO DE XENSES | Xenses Park, Parque Sensorial en Canc\u00fan, M\u00e9xico.",
"YouTubeChannel": "Xenses Park",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/-q0XoiJbLYQ.mp4",
"Saliency_file_name": "saliency/-q0XoiJbLYQ.mp4",
"Fixations": "fixations/-q0XoiJbLYQ.json",
"YouTubeName": "LONGBOARD S\u00c3O LOUREN\u00c7O 2017 - 360 VR",
"YouTubeChannel": "Filipe Lopes",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/YTfGlxxjwGY.mp4",
"Saliency_file_name": "saliency/YTfGlxxjwGY.mp4",
"Fixations": "fixations/YTfGlxxjwGY.json",
"YouTubeName": "Time lapse 360 hivern vall de la Murta RIBERANA",
"YouTubeChannel": "RIBERANA Ribera Alta",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/KHCwndyH8bM.mp4",
"Saliency_file_name": "saliency/KHCwndyH8bM.mp4",
"Fixations": "fixations/KHCwndyH8bM.json",
"YouTubeName": "\u30d0\u30fc\u30c1\u30e3\u30eb\u30da\u30f3\u56de\u3057360\u5ea6\u52d5\u753b",
"YouTubeChannel": "Poroe/\u307d\u308d\u3048",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/Vu0VT4dTdJk.mp4",
"Saliency_file_name": "saliency/Vu0VT4dTdJk.mp4",
"Fixations": "fixations/Vu0VT4dTdJk.json",
"YouTubeName": "Chuzhi - Whirlwind of Ocular Evolutions by OLAM Song 2 (\u0d13\u0d33\u0d02 \u0d2c\u0d3e\u0d7b\u0d21\u0d4d -\u0d1a\u0d41\u0d34\u0d3f )",
"YouTubeChannel": "Maha Murphy",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/3v-s8frlQUU.mp4",
"Saliency_file_name": "saliency/3v-s8frlQUU.mp4",
"Fixations": "fixations/3v-s8frlQUU.json",
"YouTubeName": "Thakara Band Puttu pattu @cusat",
"YouTubeChannel": "Maha Murphy",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/z5KpZ5CT3qY.mp4",
"Saliency_file_name": "saliency/z5KpZ5CT3qY.mp4",
"Fixations": "fixations/z5KpZ5CT3qY.json",
"YouTubeName": "Buren",
"YouTubeChannel": "Zoltan Tot",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/QhTB_91cDFQ.mp4",
"Saliency_file_name": "saliency/QhTB_91cDFQ.mp4",
"Fixations": "fixations/QhTB_91cDFQ.json",
"YouTubeName": "Pert Pure Nature - Cenotes",
"YouTubeChannel": "spinar +",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/ENzRR5jgPgU.mp4",
"Saliency_file_name": "saliency/ENzRR5jgPgU.mp4",
"Fixations": "fixations/ENzRR5jgPgU.json",
"YouTubeName": "Jackson Hole",
"YouTubeChannel": "Brendon Tower",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/1yc6ed0Pm1o.mp4",
"Saliency_file_name": "saliency/1yc6ed0Pm1o.mp4",
"Fixations": "fixations/1yc6ed0Pm1o.json",
"YouTubeName": "\u3010EUC\u8eca\u805a\u30112019.11\u7368\u8f2a\u8eca\u5c0f\u8eca\u805a-\u5167\u6e56\u6975\u9650\u904b\u52d5\u516c\u5712-\u770b\u5915\u967d Electric Unicycle\ufe31\u96fb\u52d5\u7368\u8f2a\u8eca\ufe31EUC\ufe31GoPro MAX 360\ufe313D VR",
"YouTubeChannel": "EVA & PETER'S LIFE",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/eKmn6v-yhkQ.mp4",
"Saliency_file_name": "saliency/eKmn6v-yhkQ.mp4",
"Fixations": "fixations/eKmn6v-yhkQ.json",
"YouTubeName": "360 VR \ub098\ubb34\uac00 \ub418\ub2e4(\uc548\uc0b0) - \uad8c\ud55c\uacb0",
"YouTubeChannel": "Uncle Fun's House",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/0Si1PpeaHzs.mp4",
"Saliency_file_name": "saliency/0Si1PpeaHzs.mp4",
"Fixations": "fixations/0Si1PpeaHzs.json",
"YouTubeName": "Behind the Scenes of Conversations with Tyler (360 Video) | CWT Shorts",
"YouTubeChannel": "Mercatus Center",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/sYlXwraj4kc.mp4",
"Saliency_file_name": "saliency/sYlXwraj4kc.mp4",
"Fixations": "fixations/sYlXwraj4kc.json",
"YouTubeName": "Noc Naukowc\u00f3w | 2018 (fragment pokazu) | VR 360",
"YouTubeChannel": "SpacjaTV",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/Jlgy3PPWFn0.mp4",
"Saliency_file_name": "saliency/Jlgy3PPWFn0.mp4",
"Fixations": "fixations/Jlgy3PPWFn0.json",
"YouTubeName": "Vaucluse visites en vid\u00e9o \u00e0 360\u00b0 , Timelapse de la provence",
"YouTubeChannel": "null",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/_nk3RsSfSVY.mp4",
"Saliency_file_name": "saliency/_nk3RsSfSVY.mp4",
"Fixations": "fixations/_nk3RsSfSVY.json",
"YouTubeName": "Vaucluse visites en vid\u00e9o \u00e0 360\u00b0 , Timelapse de la provence",
"YouTubeChannel": "null",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/Zhseq_uJa0A.mp4",
"Saliency_file_name": "saliency/Zhseq_uJa0A.mp4",
"Fixations": "fixations/Zhseq_uJa0A.json",
"YouTubeName": "Vaucluse visites en vid\u00e9o \u00e0 360\u00b0 , Timelapse de la provence",
"YouTubeChannel": "null",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/D2ByQQnVByA.mp4",
"Saliency_file_name": "saliency/D2ByQQnVByA.mp4",
"Fixations": "fixations/D2ByQQnVByA.json",
"YouTubeName": "Koh Phangan Day 7 - Sail Rock 00251",
"YouTubeChannel": "Vincent M\u00fcller",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/XecF1csdwy8.mp4",
"Saliency_file_name": "saliency/XecF1csdwy8.mp4",
"Fixations": "fixations/XecF1csdwy8.json",
"YouTubeName": "\u0417\u0430 \u043a\u0440\u0435\u043f\u043e\u0441\u0442\u043d\u043e\u0439 \u0441\u0442\u0435\u043d\u043e\u0439_\u0420\u0430\u0442\u0430\u0446",
"YouTubeChannel": "360Cinema Club",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/M1fRjT5qx3A.mp4",
"Saliency_file_name": "saliency/M1fRjT5qx3A.mp4",
"Fixations": "fixations/M1fRjT5qx3A.json",
"YouTubeName": "Es. vs Gage Konquer Martial Arts training",
"YouTubeChannel": "Sean Anthony",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/uBlKwA8cJuA.mp4",
"Saliency_file_name": "saliency/uBlKwA8cJuA.mp4",
"Fixations": "fixations/uBlKwA8cJuA.json",
"YouTubeName": "#039 QUANTO CUSTA \u00c1GUA LUZ E INTERNET EM PANAMA ? - CAMERA 360 GRAUS",
"YouTubeChannel": "Mi Vida en Panam\u00e1",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/ZGB7OKpLOuA.mp4",
"Saliency_file_name": "saliency/ZGB7OKpLOuA.mp4",
"Fixations": "fixations/ZGB7OKpLOuA.json",
"YouTubeName": "360 MineCraft Christmas Tree Tutorial",
"YouTubeChannel": "Plutouthere",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/Zu0b8kmHH-0.mp4",
"Saliency_file_name": "saliency/Zu0b8kmHH-0.mp4",
"Fixations": "fixations/Zu0b8kmHH-0.json",
"YouTubeName": "Timelapse",
"YouTubeChannel": "Adriaan Spronk",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/mxdM2i9vfjc.mp4",
"Saliency_file_name": "saliency/mxdM2i9vfjc.mp4",
"Fixations": "fixations/mxdM2i9vfjc.json",
"YouTubeName": "Ri-Vivendo Frascaro scena 4 - VR 360 - I contadini #infrazionicreative",
"YouTubeChannel": "Valnerina On Line",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/UznbwAag0wo.mp4",
"Saliency_file_name": "saliency/UznbwAag0wo.mp4",
"Fixations": "fixations/UznbwAag0wo.json",
"YouTubeName": "DAKAR 360\u00b0 - P\u00f3dium",
"YouTubeChannel": "BARTH Racing",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/uDFE95PbR18.mp4",
"Saliency_file_name": "saliency/uDFE95PbR18.mp4",
"Fixations": "fixations/uDFE95PbR18.json",
"YouTubeName": "First Alley",
"YouTubeChannel": "Plamen Miltenoff",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/uBtzoD3CC2k.mp4",
"Saliency_file_name": "saliency/uBtzoD3CC2k.mp4",
"Fixations": "fixations/uBtzoD3CC2k.json",
"YouTubeName": "Tributo a Mario Calcagno",
"YouTubeChannel": "Kelvin Ex Machina",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/tXNph6r22gY.mp4",
"Saliency_file_name": "saliency/tXNph6r22gY.mp4",
"Fixations": "fixations/tXNph6r22gY.json",
"YouTubeName": "Entrega medallas First Lego League. Animal Allies.",
"YouTubeChannel": "Fant\u00e1stico G\u00fcev\u00e9jar",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/-hl-d9ucJvI.mp4",
"Saliency_file_name": "saliency/-hl-d9ucJvI.mp4",
"Fixations": "fixations/-hl-d9ucJvI.json",
"YouTubeName": "FAILE's Arcade in 360 Video",
"YouTubeChannel": "Brooklyn Museum",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/fVp6TzUcYME.mp4",
"Saliency_file_name": "saliency/fVp6TzUcYME.mp4",
"Fixations": "fixations/fVp6TzUcYME.json",
"YouTubeName": "Vilanova Park - 360 video impression",
"YouTubeChannel": "virtualtours.nl",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/DQRwb1Fgke8.mp4",
"Saliency_file_name": "saliency/DQRwb1Fgke8.mp4",
"Fixations": "fixations/DQRwb1Fgke8.json",
"YouTubeName": "[360\u00b0] the Wheels on my bike are square !",
"YouTubeChannel": "bebecomptines",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/wfGqbuEGtiQ.mp4",
"Saliency_file_name": "saliency/wfGqbuEGtiQ.mp4",
"Fixations": "fixations/wfGqbuEGtiQ.json",
"YouTubeName": "(360 Video) Burundian Refugees in Tanzania: They've Lost Everything",
"YouTubeChannel": "Doctors Without Borders / MSF-USA",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/FZQA7XlG7qE.mp4",
"Saliency_file_name": "saliency/FZQA7XlG7qE.mp4",
"Fixations": "fixations/FZQA7XlG7qE.json",
"YouTubeName": "360 Video: Syrians \"Have to Survive Having No Rights\" in Lebanon",
"YouTubeChannel": "Doctors Without Borders / MSF-USA",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/-hZ_185dbn4.mp4",
"Saliency_file_name": "saliency/-hZ_185dbn4.mp4",
"Fixations": "fixations/-hZ_185dbn4.json",
"YouTubeName": "GoPro Max Experimente: Wilde Kerle - VR",
"YouTubeChannel": "Werner D\u00e4hn",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/Hcw70by72CY.mp4",
"Saliency_file_name": "saliency/Hcw70by72CY.mp4",
"Fixations": "fixations/Hcw70by72CY.json",
"YouTubeName": "CAM007F",
"YouTubeChannel": "Youth Soccer Highlights",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/tnhakEMQ0HA.mp4",
"Saliency_file_name": "saliency/tnhakEMQ0HA.mp4",
"Fixations": "fixations/tnhakEMQ0HA.json",
"YouTubeName": "2016.5.2. Study English with Teacher Catie - gear 360",
"YouTubeChannel": "JSSHIN7777",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/BeQpT7dVmBs.mp4",
"Saliency_file_name": "saliency/BeQpT7dVmBs.mp4",
"Fixations": "fixations/BeQpT7dVmBs.json",
"YouTubeName": "360\u00b0 New York: Franklin D. Roosevelt Four Freedoms Park",
"YouTubeChannel": "Viewing NYC",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/CKjy9UJ0Q5A.mp4",
"Saliency_file_name": "saliency/CKjy9UJ0Q5A.mp4",
"Fixations": "fixations/CKjy9UJ0Q5A.json",
"YouTubeName": "BAU 2017: Sch\u00f6ck Isokorb\u00ae XT Combar",
"YouTubeChannel": "Gero Bruckmann",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/WkURWbPcqRo.mp4",
"Saliency_file_name": "saliency/WkURWbPcqRo.mp4",
"Fixations": "fixations/WkURWbPcqRo.json",
"YouTubeName": "360\u00b0 - En Venta - Casa de 4 Dormitorios en Jacinto Vera",
"YouTubeChannel": "La Casa Propiedades",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/9qNLYlymw0Q.mp4",
"Saliency_file_name": "saliency/9qNLYlymw0Q.mp4",
"Fixations": "fixations/9qNLYlymw0Q.json",
"YouTubeName": "360\u00b0- En Venta: Apartamento de 2 Dormitorios en Tres Cruces",
"YouTubeChannel": "La Casa Propiedades",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/TSRxTmr0yCA.mp4",
"Saliency_file_name": "saliency/TSRxTmr0yCA.mp4",
"Fixations": "fixations/TSRxTmr0yCA.json",
"YouTubeName": "360\u00b0 En Venta: Amplio apartamento de 1 Dormitorio en Parque Rodo Cod web 2100",
"YouTubeChannel": "La Casa Propiedades",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/-VhxXjT5PNw.mp4",
"Saliency_file_name": "saliency/-VhxXjT5PNw.mp4",
"Fixations": "fixations/-VhxXjT5PNw.json",
"YouTubeName": "360\u00b0 - En Alquiler - Local 300m2",
"YouTubeChannel": "La Casa Propiedades",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/LoG5WbfOrXU.mp4",
"Saliency_file_name": "saliency/LoG5WbfOrXU.mp4",
"Fixations": "fixations/LoG5WbfOrXU.json",
"YouTubeName": "360\u00b0: Av Brasil y Soca, 2 Dormitorios con patio de 20 m2",
"YouTubeChannel": "La Casa Propiedades",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/ec85cmn6qvU.mp4",
"Saliency_file_name": "saliency/ec85cmn6qvU.mp4",
"Fixations": "fixations/ec85cmn6qvU.json",
"YouTubeName": "360\u00b0 - En Venta - Apartamento de 1 Dormitorio con Balcon en Aguada",
"YouTubeChannel": "La Casa Propiedades",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/LiNwERzO45o.mp4",
"Saliency_file_name": "saliency/LiNwERzO45o.mp4",
"Fixations": "fixations/LiNwERzO45o.json",
"YouTubeName": "360\u00b0 En Venta 2 Dormitorios y Patio, A Reciclar - Camino Castro y Islas Canarias",
"YouTubeChannel": "La Casa Propiedades",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/wnI6O8KGxYA.mp4",
"Saliency_file_name": "saliency/wnI6O8KGxYA.mp4",
"Fixations": "fixations/wnI6O8KGxYA.json",
"YouTubeName": "360\u00b0 En Venta: 2 Dormitorios, ACEPTA BANCO - Canelones y Andes",
"YouTubeChannel": "La Casa Propiedades",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/XIytSa60jlQ.mp4",
"Saliency_file_name": "saliency/XIytSa60jlQ.mp4",
"Fixations": "fixations/XIytSa60jlQ.json",
"YouTubeName": "360\u00b0 - En Venta: 2 Dormitorios, ACEPTA BANCO - Luis A. De Herrera y Gualeguay",
"YouTubeChannel": "La Casa Propiedades",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/AJBeGoCdNwE.mp4",
"Saliency_file_name": "saliency/AJBeGoCdNwE.mp4",
"Fixations": "fixations/AJBeGoCdNwE.json",
"YouTubeName": "Promo 360\u00ba de Animal Dogtors",
"YouTubeChannel": "Robe Rom\u00e1n Ortiz",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/dKJrOW4mrig.mp4",
"Saliency_file_name": "saliency/dKJrOW4mrig.mp4",
"Fixations": "fixations/dKJrOW4mrig.json",
"YouTubeName": "Museum Walk VRLife 360",
"YouTubeChannel": "LifeLike VR",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/oQnleVoRkhs.mp4",
"Saliency_file_name": "saliency/oQnleVoRkhs.mp4",
"Fixations": "fixations/oQnleVoRkhs.json",
"YouTubeName": "360 Italy Fountain VRLife",
"YouTubeChannel": "LifeLike VR",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/R31jNIKVxOA.mp4",
"Saliency_file_name": "saliency/R31jNIKVxOA.mp4",
"Fixations": "fixations/R31jNIKVxOA.json",
"YouTubeName": "London City Film Awards 2017 | 360 video",
"YouTubeChannel": "Max Ladhu",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/1lFQEe2aggA.mp4",
"Saliency_file_name": "saliency/1lFQEe2aggA.mp4",
"Fixations": "fixations/1lFQEe2aggA.json",
"YouTubeName": "Bella Ciao by Les Humeurs C\u00e9r\u00e9brales [360\u00b0]",
"YouTubeChannel": "Viince Movie's - Suscite l'\u00e9motion !",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/TF5DNa88_lo.mp4",
"Saliency_file_name": "saliency/TF5DNa88_lo.mp4",
"Fixations": "fixations/TF5DNa88_lo.json",
"YouTubeName": "healing 360 VR-Seokchon Lake [\ud790\ub9c1 360 VR]-\uc11d\ucd0c\ud638\uc218, \ubc97\uaf43",
"YouTubeChannel": "DOOBOO",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/CGIIsT2wzy4.mp4",
"Saliency_file_name": "saliency/CGIIsT2wzy4.mp4",
"Fixations": "fixations/CGIIsT2wzy4.json",
"YouTubeName": "healing 360 VR-Hangang River [\ud790\ub9c1 360 VR]-\ud55c\uac15",
"YouTubeChannel": "DOOBOO",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/YE0u67yNEBM.mp4",
"Saliency_file_name": "saliency/YE0u67yNEBM.mp4",
"Fixations": "fixations/YE0u67yNEBM.json",
"YouTubeName": "healing 360 VR-World Peace Gate(night sky) [\ud790\ub9c1 360 VR]-\ud3c9\ud654\uc758 \ubb38(\ubc24\ud558\ub298)",
"YouTubeChannel": "DOOBOO",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/bRpsZcfeZJQ.mp4",
"Saliency_file_name": "saliency/bRpsZcfeZJQ.mp4",
"Fixations": "fixations/bRpsZcfeZJQ.json",
"YouTubeName": "Un d\u00eda de grabaci\u00f3n de Gaviotas/ V\u00eddeo 360",
"YouTubeChannel": "Ornitronik",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/meewWIYixLI.mp4",
"Saliency_file_name": "saliency/meewWIYixLI.mp4",
"Fixations": "fixations/meewWIYixLI.json",
"YouTubeName": "RV Photography and Virtual Tours - 360 Video Tour with Voice over.",
"YouTubeChannel": "RV Photo and Video Tours",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/fXL9cpXpAS0.mp4",
"Saliency_file_name": "saliency/fXL9cpXpAS0.mp4",
"Fixations": "fixations/fXL9cpXpAS0.json",
"YouTubeName": "RV Photography and Virtual Tours - 360 Video Virtual Tour",
"YouTubeChannel": "RV Photo and Video Tours",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/HDklU4x86Lc.mp4",
"Saliency_file_name": "saliency/HDklU4x86Lc.mp4",
"Fixations": "fixations/HDklU4x86Lc.json",
"YouTubeName": "Sample of a 360x180 Video Virtual Tour",
"YouTubeChannel": "RV Photo and Video Tours",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/qYdfVAjgfac.mp4",
"Saliency_file_name": "saliency/qYdfVAjgfac.mp4",
"Fixations": "fixations/qYdfVAjgfac.json",
"YouTubeName": "\uc778\uc2a42 \uccab \ube44\ud589",
"YouTubeChannel": "\uc0c1\uc218\uc0ac\uc9c4\uc5ec\ud589",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/dHL6OPDyTIA.mp4",
"Saliency_file_name": "saliency/dHL6OPDyTIA.mp4",
"Fixations": "fixations/dHL6OPDyTIA.json",
"YouTubeName": "CONVERSANDO COM O TIOZ\u00c3O + KLE621",
"YouTubeChannel": "LIMACTBA_OFICIAL",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/7W8y1jOMHpE.mp4",
"Saliency_file_name": "saliency/7W8y1jOMHpE.mp4",
"Fixations": "fixations/7W8y1jOMHpE.json",
"YouTubeName": "PASSEANDO NA AVENIDA PAULISTA ANOITE",
"YouTubeChannel": "LIMACTBA_OFICIAL",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/gzfoTm7qgXM.mp4",
"Saliency_file_name": "saliency/gzfoTm7qgXM.mp4",
"Fixations": "fixations/gzfoTm7qgXM.json",
"YouTubeName": "ponte vicino cascate del marmarico attraversato a 360\u00b0 (agosto 2017)",
"YouTubeChannel": "Marcuscalabresus",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/kCtJQw_EMrM.mp4",
"Saliency_file_name": "saliency/kCtJQw_EMrM.mp4",
"Fixations": "fixations/kCtJQw_EMrM.json",
"YouTubeName": "Festa del Santo Salvatore a Pazzano 2017 - Confronta del pomeriggio a 360\u00b0",
"YouTubeChannel": "Marcuscalabresus",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/-dRDDFXspAg.mp4",
"Saliency_file_name": "saliency/-dRDDFXspAg.mp4",
"Fixations": "fixations/-dRDDFXspAg.json",
"YouTubeName": "Festa del Santo Salvatore 2017 - Cunfrunta 2017 - Garmin Virb 360",
"YouTubeChannel": "Marcuscalabresus",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/wnOwJtcL6Yk.mp4",
"Saliency_file_name": "saliency/wnOwJtcL6Yk.mp4",
"Fixations": "fixations/wnOwJtcL6Yk.json",
"YouTubeName": "Rivers Edge Best Western in Red River, New Mexico",
"YouTubeChannel": "Kim Kuhlman",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/cCwU5BwM8GI.mp4",
"Saliency_file_name": "saliency/cCwU5BwM8GI.mp4",
"Fixations": "fixations/cCwU5BwM8GI.json",
"YouTubeName": "Hidden Temple - VR Adventure \u2605 360\u00b0 Experience",
"YouTubeChannel": "HandyGames",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/sFE_E4bEsPk.mp4",
"Saliency_file_name": "saliency/sFE_E4bEsPk.mp4",
"Fixations": "fixations/sFE_E4bEsPk.json",
"YouTubeName": "Nikon KeyMission 360 4K 360\u5ea6\u5f71\u7247\u6e2c\u8a66\uff1a\u65b0\u84b2\u5d17\u5de5\u5ee0\u5340",
"YouTubeChannel": "Blue Skyway \u85cd\u5929\u822a\u9053",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/ozsTDOHC4dA.mp4",
"Saliency_file_name": "saliency/ozsTDOHC4dA.mp4",
"Fixations": "fixations/ozsTDOHC4dA.json",
"YouTubeName": "VID 20190326 223307 00 182",
"YouTubeChannel": "Xiang Fei",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/aTa6iClOQNI.mp4",
"Saliency_file_name": "saliency/aTa6iClOQNI.mp4",
"Fixations": "fixations/aTa6iClOQNI.json",
"YouTubeName": "\u811a\u8e0f\u98ce\u706b\u8f6e \u7535\u52a8\u6ed1\u677f WOWGO 2s \u624b\u63e1 \u5343\u91cc\u773c \u5168\u666f\u76f8\u673a insta360 one",
"YouTubeChannel": "Xiang Fei",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/FPS70ROtUcg.mp4",
"Saliency_file_name": "saliency/FPS70ROtUcg.mp4",
"Fixations": "fixations/FPS70ROtUcg.json",
"YouTubeName": "Visit Budapest: Vajdahunyad Castle (Vajdahunyad v\u00e1ra) - VR 360\u00b0 Virtual Travel Vlog in Hungary 8K",
"YouTubeChannel": "VR Tours 360",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/7XGQvBCrsBY.mp4",
"Saliency_file_name": "saliency/7XGQvBCrsBY.mp4",
"Fixations": "fixations/7XGQvBCrsBY.json",
"YouTubeName": "Margaret Bridge (Margit h\u00edd) - Bridges of Budapest - VR 360\u00b0 Travel Vlog & Day Trip in Hungary, 4K",
"YouTubeChannel": "VR Tours 360",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/gAlTRUaeENY.mp4",
"Saliency_file_name": "saliency/gAlTRUaeENY.mp4",
"Fixations": "fixations/gAlTRUaeENY.json",
"YouTubeName": "\u68ee\u306e\u4e2d\u3010\u30d5\u30ea\u30fc\u7d20\u6750\u3011\u3010360\u00b04K UltraHD\u3011",
"YouTubeChannel": "\u30b9\u30fc\u30d1\u30fc\u30de\u30f3\u306e\u7d20\u6750\u30e9\u30a4\u30d6\u30e9\u30ea\u30fc",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/HfdYOtu49dM.mp4",
"Saliency_file_name": "saliency/HfdYOtu49dM.mp4",
"Fixations": "fixations/HfdYOtu49dM.json",
"YouTubeName": "Tokyo 360",
"YouTubeChannel": "Alliks82",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/5R4k7lXlgmo.mp4",
"Saliency_file_name": "saliency/5R4k7lXlgmo.mp4",
"Fixations": "fixations/5R4k7lXlgmo.json",
"YouTubeName": "VIDEO 0292",
"YouTubeChannel": "Alliks82",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/gtPZR_iTtvk.mp4",
"Saliency_file_name": "saliency/gtPZR_iTtvk.mp4",
"Fixations": "fixations/gtPZR_iTtvk.json",
"YouTubeName": "Audi A6 Avant in 360 - GoPro Fusion 5.2K Codec CineForm 422 High",
"YouTubeChannel": "Alliks82",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/JvkgNFvnL6g.mp4",
"Saliency_file_name": "saliency/JvkgNFvnL6g.mp4",
"Fixations": "fixations/JvkgNFvnL6g.json",
"YouTubeName": "Velaa Private Island - Residence 02 - 360 Video",
"YouTubeChannel": "Harris Kalinka",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/iSwfQ3LckQs.mp4",
"Saliency_file_name": "saliency/iSwfQ3LckQs.mp4",
"Fixations": "fixations/iSwfQ3LckQs.json",
"YouTubeName": "Velaa Private Island - Ocean House - 360 Video",
"YouTubeChannel": "Harris Kalinka",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/xAJC8boV34M.mp4",
"Saliency_file_name": "saliency/xAJC8boV34M.mp4",
"Fixations": "fixations/xAJC8boV34M.json",
"YouTubeName": "Velaa Private Island - Watersports - 360 Video",
"YouTubeChannel": "Harris Kalinka",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/tVzk2nELV00.mp4",
"Saliency_file_name": "saliency/tVzk2nELV00.mp4",
"Fixations": "fixations/tVzk2nELV00.json",
"YouTubeName": "[\uacbd\ubd81\ub300\ud559\uad50 \uae00\ub85c\ubc8c\uc2dd\ub7c9\uc790\uc6d0\ub18d\uc5c5\uac1c\ubc1c \uc804\ubb38\uc778\uc7ac\uc591\uc131\uc0ac\uc5c5\ub2e8] \ubbf8\uad6d \ubbf8\uc8fc\ub9ac\ub300\ud559\uad50 VR\ud22c\uc5b4",
"YouTubeChannel": "WEBER",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/M2by7u_UX5M.mp4",
"Saliency_file_name": "saliency/M2by7u_UX5M.mp4",
"Fixations": "fixations/M2by7u_UX5M.json",
"YouTubeName": "360 Video 56 Leonard St_ Douglas Elliman",
"YouTubeChannel": "Duncan Schieb Subliminal Productions",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/p53q0EPRE5U.mp4",
"Saliency_file_name": "saliency/p53q0EPRE5U.mp4",
"Fixations": "fixations/p53q0EPRE5U.json",
"YouTubeName": "Fort Fun | Trapper Slider | onRide \u00bb 360\u00b0 Test mit Nikon KeyMission",
"YouTubeChannel": "Clanfamily",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/kQVyb00h7XU.mp4",
"Saliency_file_name": "saliency/kQVyb00h7XU.mp4",
"Fixations": "fixations/kQVyb00h7XU.json",
"YouTubeName": "monterey bay aquarium 360",
"YouTubeChannel": "Nihao Farwest",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/oWDwAVlVYT8.mp4",
"Saliency_file_name": "saliency/oWDwAVlVYT8.mp4",
"Fixations": "fixations/oWDwAVlVYT8.json",
"YouTubeName": "R\u00dcBB G\u00f6hren 2018",
"YouTubeChannel": "DR",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/Qsz1vNb_pzg.mp4",
"Saliency_file_name": "saliency/Qsz1vNb_pzg.mp4",
"Fixations": "fixations/Qsz1vNb_pzg.json",
"YouTubeName": "Uniform Magnetic Fields in a Solenoid (360 VR)",
"YouTubeChannel": "Animations for Physics and Astronomy",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/gLPS5rVzyE0.mp4",
"Saliency_file_name": "saliency/gLPS5rVzyE0.mp4",
"Fixations": "fixations/gLPS5rVzyE0.json",
"YouTubeName": "Nearly Uniform Electric Fields in a Parallel Plate Capacitor (360 VR)",
"YouTubeChannel": "Animations for Physics and Astronomy",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/UZ3jXvJj9Qw.mp4",
"Saliency_file_name": "saliency/UZ3jXvJj9Qw.mp4",
"Fixations": "fixations/UZ3jXvJj9Qw.json",
"YouTubeName": "2-\u043a\u0430 47 \u043a\u0432.\u043c. 3/5",
"YouTubeChannel": "\u0411\u043e\u0440\u0438\u0441 \u0411\u043e\u0440\u043e\u0437\u0434\u0438\u043d",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/oo0Nd0TfTfA.mp4",
"Saliency_file_name": "saliency/oo0Nd0TfTfA.mp4",
"Fixations": "fixations/oo0Nd0TfTfA.json",
"YouTubeName": "\u0437\u0430\u0433\u043e\u0440\u043e\u0434\u043d\u044b\u0439 \u0434\u043e\u043c \u0432 \u0445\u043e\u043c\u044f\u043a\u043e\u0432\u043e",
"YouTubeChannel": "\u0411\u043e\u0440\u0438\u0441 \u0411\u043e\u0440\u043e\u0437\u0434\u0438\u043d",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/X1-hOafQ1D0.mp4",
"Saliency_file_name": "saliency/X1-hOafQ1D0.mp4",
"Fixations": "fixations/X1-hOafQ1D0.json",
"YouTubeName": "\u041d\u043e\u0432\u043e\u0433\u043e\u0434\u043d\u0438\u0439 \u0422\u043e\u043c\u0441\u043a \u0432 \u0444\u043e\u0440\u043c\u0430\u0442\u0435 360",
"YouTubeChannel": "\u0420\u0418\u0410 \u0422\u043e\u043c\u0441\u043a",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/zKdEgR94gp4.mp4",
"Saliency_file_name": "saliency/zKdEgR94gp4.mp4",
"Fixations": "fixations/zKdEgR94gp4.json",
"YouTubeName": "\u0412\u0438\u0434\u0435\u043e 360\u00b0. \u0424\u0430\u0439\u0435\u0440-\u0448\u043e\u0443 \u043d\u0430 \u0414\u0435\u043d\u044c \u0442\u043e\u043c\u0438\u0447\u0430",
"YouTubeChannel": "\u0420\u0418\u0410 \u0422\u043e\u043c\u0441\u043a",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/jniA9uZQlGA.mp4",
"Saliency_file_name": "saliency/jniA9uZQlGA.mp4",
"Fixations": "fixations/jniA9uZQlGA.json",
"YouTubeName": "\u3010VR\u52d5\u753b\u3011\u4eac\u6d5c\u6025\u884c\u7dda \u4ef2\u6728\u6238\u99c5\u306b\u3066\u5feb\u7279\u306e\u901a\u904e\u306b\u6d74\u3059\u308b (2016\u5e748\u6708)",
"YouTubeChannel": "hisi21",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/Gb9sOmeueRo.mp4",
"Saliency_file_name": "saliency/Gb9sOmeueRo.mp4",
"Fixations": "fixations/Gb9sOmeueRo.json",
"YouTubeName": "\u3010VR\u52d5\u753b\u3011JR\u70cf\u5c71\u7dda \u30ad\u30cf40\u305f\u3061\u3068\u70cf\u5c71\u99c5 (2016\u5e748\u6708)",
"YouTubeChannel": "hisi21",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/OagL84SlsVU.mp4",
"Saliency_file_name": "saliency/OagL84SlsVU.mp4",
"Fixations": "fixations/OagL84SlsVU.json",
"YouTubeName": "Saint-Pierre et Miquelon : Le lavoir de la montagne \u00e0 l'\u00eele aux marins : Vid\u00e9o 360\u00b0",
"YouTubeChannel": "Rubicon975",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/TXDFU9d2kFQ.mp4",
"Saliency_file_name": "saliency/TXDFU9d2kFQ.mp4",
"Fixations": "fixations/TXDFU9d2kFQ.json",
"YouTubeName": "EKM: Videotagebuch 03 Namibia #LWFassembly #Origins",
"YouTubeChannel": "EKM_online",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/y4IExgAyLYg.mp4",
"Saliency_file_name": "saliency/y4IExgAyLYg.mp4",
"Fixations": "fixations/y4IExgAyLYg.json",
"YouTubeName": "Discover the Home of Ketel One",
"YouTubeChannel": "ketelone",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/dagWdujpLLg.mp4",
"Saliency_file_name": "saliency/dagWdujpLLg.mp4",
"Fixations": "fixations/dagWdujpLLg.json",
"YouTubeName": "VIDEO 6953 \uc11c\uc11d\ub300 \uc288\ud305\uce74",
"YouTubeChannel": "\ubcc0\uba85\ud658",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/fvfL6sZhS04.mp4",
"Saliency_file_name": "saliency/fvfL6sZhS04.mp4",
"Fixations": "fixations/fvfL6sZhS04.json",
"YouTubeName": "2018 \uad6c\ub840\uc0b0\uc218\uc720\ub9c8\uc744\uc5ec\ub984 \uc800\ub141",
"YouTubeChannel": "\ubcc0\uba85\ud658",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/EdrJOzbIlB4.mp4",
"Saliency_file_name": "saliency/EdrJOzbIlB4.mp4",
"Fixations": "fixations/EdrJOzbIlB4.json",
"YouTubeName": "[360VR] \uc5ec\uae30\uc800\uae30 \ub300\ud55c\ubbfc\uad6d - \uad6d\uac00\uc9c0\uc9c8\uacf5\uc6d0 _ \uc784\uc9c4\uac15 \uc8fc\uc0c1\uc808\ub9ac",
"YouTubeChannel": "\ubcc0\uba85\ud658",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/NIuf-LE9wrE.mp4",
"Saliency_file_name": "saliency/NIuf-LE9wrE.mp4",
"Fixations": "fixations/NIuf-LE9wrE.json",
"YouTubeName": "Mexico VR360 06",
"YouTubeChannel": "\ubcc0\uba85\ud658",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/gPvZ6u9PZgE.mp4",
"Saliency_file_name": "saliency/gPvZ6u9PZgE.mp4",
"Fixations": "fixations/gPvZ6u9PZgE.json",
"YouTubeName": "Mexico VR360 03",
"YouTubeChannel": "\ubcc0\uba85\ud658",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/f8HDOHQeEJ0.mp4",
"Saliency_file_name": "saliency/f8HDOHQeEJ0.mp4",
"Fixations": "fixations/f8HDOHQeEJ0.json",
"YouTubeName": "2016\ub144 \ucd2c\uc601\ud55c 360 VR \ucd2c\uc601 \uc601\uc0c1 \ubaa8\uc74c\uc785\ub2c8\ub2e4.",
"YouTubeChannel": "\ubcc0\uba85\ud658",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/6Kr9bYIMTg0.mp4",
"Saliency_file_name": "saliency/6Kr9bYIMTg0.mp4",
"Fixations": "fixations/6Kr9bYIMTg0.json",
"YouTubeName": "AR = AR",
"YouTubeChannel": "FIONE CHIN",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/3OFmPe8FgzA.mp4",
"Saliency_file_name": "saliency/3OFmPe8FgzA.mp4",
"Fixations": "fixations/3OFmPe8FgzA.json",
"YouTubeName": "The Last Man Diving VR, Shark Swarm on Big Crab Wreck",
"YouTubeChannel": "Last Man Diving",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/vfUzoaOfByw.mp4",
"Saliency_file_name": "saliency/vfUzoaOfByw.mp4",
"Fixations": "fixations/vfUzoaOfByw.json",
"YouTubeName": "\u7fa4\u99ac\u770c\u4f0a\u52e2\u5d0e\u5e02\u306e\u30c0\u30a4\u30d3\u30f3\u30b0\u30b7\u30e7\u30c3\u30d7\u3000\u30ea\u30b3\u30fc\u3000\u30b7\u30fc\u30bf360\u00b0\u3000\u6c34\u4e2d\u52d5\u753b\u3000\u5927\u702c\u5d0e",
"YouTubeChannel": "\u30d5\u30ea\u30c3\u30d1\u30fc\u30c0\u30a4\u30d6\u30bb\u30f3\u30bf\u30fc \u7fa4\u99ac\u770c\u4f0a\u52e2\u5d0e\u5e02\u306e\u30c0\u30a4\u30d3\u30f3\u30b0\u30b7\u30e7\u30c3\u30d7 FLIPPER dive center",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/ylSc6FnWYZA.mp4",
"Saliency_file_name": "saliency/ylSc6FnWYZA.mp4",
"Fixations": "fixations/ylSc6FnWYZA.json",
"YouTubeName": "\u6176\u826f\u9593\u3067\u6f5c\u308b\u3000THETA360\u00b0\u3000\u6d1e\u7a9f\u306b\u5165\u308b\u3000\u7fa4\u99ac\u770c\u306e\u30c0\u30a4\u30d3\u30f3\u30b0\u30b7\u30e7\u30c3\u30d7",
"YouTubeChannel": "\u30d5\u30ea\u30c3\u30d1\u30fc\u30c0\u30a4\u30d6\u30bb\u30f3\u30bf\u30fc \u7fa4\u99ac\u770c\u4f0a\u52e2\u5d0e\u5e02\u306e\u30c0\u30a4\u30d3\u30f3\u30b0\u30b7\u30e7\u30c3\u30d7 FLIPPER dive center",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/Rz2lLFrZ8mw.mp4",
"Saliency_file_name": "saliency/Rz2lLFrZ8mw.mp4",
"Fixations": "fixations/Rz2lLFrZ8mw.json",
"YouTubeName": "\u7fa4\u99ac\u770c\u4f0a\u52e2\u5d0e\u5e02\u306e\u30c0\u30a4\u30d3\u30f3\u30b0\u30b7\u30e7\u30c3\u30d7\u3000360\u00b0\u30b7\u30fc\u30bf\u3000\u30e2\u30eb\u30c7\u30a3\u30d62018\u3000\u30b8\u30f3\u30d9\u30a8\u30b6\u30e1\u3000\u30b9\u30ad\u30f3\u30c0\u30a4\u30d3\u30f3\u30b0",
"YouTubeChannel": "\u30d5\u30ea\u30c3\u30d1\u30fc\u30c0\u30a4\u30d6\u30bb\u30f3\u30bf\u30fc \u7fa4\u99ac\u770c\u4f0a\u52e2\u5d0e\u5e02\u306e\u30c0\u30a4\u30d3\u30f3\u30b0\u30b7\u30e7\u30c3\u30d7 FLIPPER dive center",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/5faoFZJHzEE.mp4",
"Saliency_file_name": "saliency/5faoFZJHzEE.mp4",
"Fixations": "fixations/5faoFZJHzEE.json",
"YouTubeName": "\u897f\u8868\u5cf6\u3000\u30d0\u30e9\u30b9\u5cf6\u3000\u30b9\u30ad\u30f3\u30c0\u30a4\u30d3\u30f3\u30b0\u3000\u30ea\u30b3\u30fc\u3000\u30b7\u30fc\u30bf360\u3000\u7fa4\u99ac\u770c\u4f0a\u52e2\u5d0e\u5e02\u306e\u30c0\u30a4\u30d3\u30f3\u30b0\u30b7\u30e7\u30c3\u30d7",
"YouTubeChannel": "\u30d5\u30ea\u30c3\u30d1\u30fc\u30c0\u30a4\u30d6\u30bb\u30f3\u30bf\u30fc \u7fa4\u99ac\u770c\u4f0a\u52e2\u5d0e\u5e02\u306e\u30c0\u30a4\u30d3\u30f3\u30b0\u30b7\u30e7\u30c3\u30d7 FLIPPER dive center",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/qEegl4mb3os.mp4",
"Saliency_file_name": "saliency/qEegl4mb3os.mp4",
"Fixations": "fixations/qEegl4mb3os.json",
"YouTubeName": "\u7fa4\u99ac\u770c\u4f0a\u52e2\u5d0e\u5e02\u306e\u30c0\u30a4\u30d3\u30f3\u30b0\u30b9\u30af\u30fc\u30eb\u3000\u30e9\u30a4\u30bb\u30f3\u30b9\u8b1b\u7fd2\u3000\u6d77\u6d0b\u5b9f\u7fd2\u3000\u8a8d\u5b9a\u3000\u304a\u3081\u3067\u3068\u3046\uff01",
"YouTubeChannel": "\u30d5\u30ea\u30c3\u30d1\u30fc\u30c0\u30a4\u30d6\u30bb\u30f3\u30bf\u30fc \u7fa4\u99ac\u770c\u4f0a\u52e2\u5d0e\u5e02\u306e\u30c0\u30a4\u30d3\u30f3\u30b0\u30b7\u30e7\u30c3\u30d7 FLIPPER dive center",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/JmkLuNjrCRY.mp4",
"Saliency_file_name": "saliency/JmkLuNjrCRY.mp4",
"Fixations": "fixations/JmkLuNjrCRY.json",
"YouTubeName": "\u897f\u8868\u5cf6\u3000\u30b9\u30ad\u30f3\u30c0\u30a4\u30d3\u30f3\u30b0\u3000\u30d0\u30e9\u30b9\u5cf6\u3000\u30af\u30de\u30ce\u30df\u3000\u30ea\u30b3\u30fc\u3000\u30b7\u30fc\u30bf360\u3000\u7fa4\u99ac\u770c\u4f0a\u52e2\u5d0e\u5e02\u306e\u30c0\u30a4\u30d3\u30f3\u30b0\u30b7\u30e7\u30c3\u30d7",
"YouTubeChannel": "\u30d5\u30ea\u30c3\u30d1\u30fc\u30c0\u30a4\u30d6\u30bb\u30f3\u30bf\u30fc \u7fa4\u99ac\u770c\u4f0a\u52e2\u5d0e\u5e02\u306e\u30c0\u30a4\u30d3\u30f3\u30b0\u30b7\u30e7\u30c3\u30d7 FLIPPER dive center",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/e4tNFjZ9Jmc.mp4",
"Saliency_file_name": "saliency/e4tNFjZ9Jmc.mp4",
"Fixations": "fixations/e4tNFjZ9Jmc.json",
"YouTubeName": "\u30b1\u30e9\u30de\u3067\u6f5c\u308b\u3000\u30ea\u30b3\u30fc\u3000\u30b7\u30fc\u30bf\u3000360\u00b0\u3000\u7d30\u9577\u3044\u9b5a\u3000\u30a2\u30aa\u30e4\u30ac\u30e9\u3000\u7fa4\u99ac\u770c\u4f0a\u52e2\u5d0e\u5e02\u306e\u30c0\u30a4\u30d3\u30f3\u30b0\u30b7\u30e7\u30c3\u30d7",
"YouTubeChannel": "\u30d5\u30ea\u30c3\u30d1\u30fc\u30c0\u30a4\u30d6\u30bb\u30f3\u30bf\u30fc \u7fa4\u99ac\u770c\u4f0a\u52e2\u5d0e\u5e02\u306e\u30c0\u30a4\u30d3\u30f3\u30b0\u30b7\u30e7\u30c3\u30d7 FLIPPER dive center",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/drXh9JqMxzQ.mp4",
"Saliency_file_name": "saliency/drXh9JqMxzQ.mp4",
"Fixations": "fixations/drXh9JqMxzQ.json",
"YouTubeName": "\u7fa4\u99ac\u770c\u4f0a\u52e2\u5d0e\u5e02\u306e\u30c0\u30a4\u30d3\u30f3\u30b0\u30b7\u30e7\u30c3\u30d7 RICOH THETA 360 \u30af\u30de\u30ce\u30df\u3068\u6f5c\u308b\u3000\u96f2\u898b",
"YouTubeChannel": "\u30d5\u30ea\u30c3\u30d1\u30fc\u30c0\u30a4\u30d6\u30bb\u30f3\u30bf\u30fc \u7fa4\u99ac\u770c\u4f0a\u52e2\u5d0e\u5e02\u306e\u30c0\u30a4\u30d3\u30f3\u30b0\u30b7\u30e7\u30c3\u30d7 FLIPPER dive center",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/yED1pzbtm0I.mp4",
"Saliency_file_name": "saliency/yED1pzbtm0I.mp4",
"Fixations": "fixations/yED1pzbtm0I.json",
"YouTubeName": "\u30b1\u30e9\u30de\u3067\u6f5c\u308b\u3000\u30ea\u30b3\u30fc\u3000\u30b7\u30fc\u30bf\u3000360\u3000\u30aa\u30e4\u30d3\u30c3\u30c1\u30e3\u306e\u7fa4\u308c\u3000\u7fa4\u99ac\u770c\u4f0a\u52e2\u5d0e\u5e02\u306e\u30c0\u30a4\u30d3\u30f3\u30b0\u30b7\u30e7\u30c3\u30d7",
"YouTubeChannel": "\u30d5\u30ea\u30c3\u30d1\u30fc\u30c0\u30a4\u30d6\u30bb\u30f3\u30bf\u30fc \u7fa4\u99ac\u770c\u4f0a\u52e2\u5d0e\u5e02\u306e\u30c0\u30a4\u30d3\u30f3\u30b0\u30b7\u30e7\u30c3\u30d7 FLIPPER dive center",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/B61kfurpVoI.mp4",
"Saliency_file_name": "saliency/B61kfurpVoI.mp4",
"Fixations": "fixations/B61kfurpVoI.json",
"YouTubeName": "\ud83d\ude0eFLIP FLY\ud83c\udfa2VR360\u00baRIDE\ud83c\udfa1",
"YouTubeChannel": "VR 360",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/YPtf7cOP6-U.mp4",
"Saliency_file_name": "saliency/YPtf7cOP6-U.mp4",
"Fixations": "fixations/YPtf7cOP6-U.json",
"YouTubeName": "One pig, some cows and a lazy traveller in Africa (360\u00b0 VR)",
"YouTubeChannel": "Elmar Wiesenm\u00fcller",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/S_ErEVwCi1E.mp4",
"Saliency_file_name": "saliency/S_ErEVwCi1E.mp4",
"Fixations": "fixations/S_ErEVwCi1E.json",
"YouTubeName": "RAMF 2016 360-video",
"YouTubeChannel": "Ramf 2016",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/7WMvNRIDpJo.mp4",
"Saliency_file_name": "saliency/7WMvNRIDpJo.mp4",
"Fixations": "fixations/7WMvNRIDpJo.json",
"YouTubeName": "Avalon dec 8th run 5 leon's 3rd run",
"YouTubeChannel": "Mad-dowse",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/ESI_R_ZwmRk.mp4",
"Saliency_file_name": "saliency/ESI_R_ZwmRk.mp4",
"Fixations": "fixations/ESI_R_ZwmRk.json",
"YouTubeName": "Testing Day two: off board camera 360 degree",
"YouTubeChannel": "Claudio Colosio",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/pFytLBzONN0.mp4",
"Saliency_file_name": "saliency/pFytLBzONN0.mp4",
"Fixations": "fixations/pFytLBzONN0.json",
"YouTubeName": "Comuni Amici Video preview 360\u00b0 ::Immersiva.it",
"YouTubeChannel": "Claudio Colosio",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/2fqW5qlWdII.mp4",
"Saliency_file_name": "saliency/2fqW5qlWdII.mp4",
"Fixations": "fixations/2fqW5qlWdII.json",
"YouTubeName": "San Lorenzo vs Emelec | Definici\u00f3n por penales en 360\u00b0| Copa Libertadores 2017",
"YouTubeChannel": "San Lorenzo TV",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/2Zm43BRwfig.mp4",
"Saliency_file_name": "saliency/2Zm43BRwfig.mp4",
"Fixations": "fixations/2Zm43BRwfig.json",
"YouTubeName": "Attaching a 360 camera to a DJI Mavic Pro Footage",
"YouTubeChannel": "Patrick Tomasso",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/5Xq0MdGayiw.mp4",
"Saliency_file_name": "saliency/5Xq0MdGayiw.mp4",
"Fixations": "fixations/5Xq0MdGayiw.json",
"YouTubeName": "\u0416\u041a \u041c\u0438\u0447\u0443\u0440\u0438\u043d\u0441\u043a\u0438\u0439 - \u041a\u043b\u0430\u0441\u0441\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0438\u043d\u0442\u0435\u0440\u044c\u0435\u0440 85 \u043a\u0432. \u043c.",
"YouTubeChannel": "\u041c\u0430\u043b\u0438\u0435\u0432\u0430 \u0422\u0430\u0442\u044c\u044f\u043d\u0430 - \u0447\u0430\u0441\u0442\u043d\u044b\u0439 \u0434\u0438\u0437\u0430\u0439\u043d\u0435\u0440 \u0438\u043d\u0442\u0435\u0440\u044c\u0435\u0440\u043e\u0432",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/UcfjF4aq80o.mp4",
"Saliency_file_name": "saliency/UcfjF4aq80o.mp4",
"Fixations": "fixations/UcfjF4aq80o.json",
"YouTubeName": "360\u00ba En Alquiler: 2 dormitorios Tres Cruces",
"YouTubeChannel": "Inmobiliaria Mas",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/UxalvwKLM98.mp4",
"Saliency_file_name": "saliency/UxalvwKLM98.mp4",
"Fixations": "fixations/UxalvwKLM98.json",
"YouTubeName": "360\u00ba - En Venta: 1 Dorm - 50m2 | Democracia y Goes",
"YouTubeChannel": "Inmobiliaria Mas",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/ZsHW_sppKPM.mp4",
"Saliency_file_name": "saliency/ZsHW_sppKPM.mp4",
"Fixations": "fixations/ZsHW_sppKPM.json",
"YouTubeName": "360\u00b0- En Venta: Edificio en Ciudad Vieja Planta Baja",
"YouTubeChannel": "Inmobiliaria Mas",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/c_PaKbYTo_w.mp4",
"Saliency_file_name": "saliency/c_PaKbYTo_w.mp4",
"Fixations": "fixations/c_PaKbYTo_w.json",
"YouTubeName": "360\u00ba - En Alquiler: 1 Dorm y Cochera | Paso Molino",
"YouTubeChannel": "Inmobiliaria Mas",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/k4m4ZmBP62M.mp4",
"Saliency_file_name": "saliency/k4m4ZmBP62M.mp4",
"Fixations": "fixations/k4m4ZmBP62M.json",
"YouTubeName": "Koule - Heraklion Crete - 360 video - MCLAB TEICRETE",
"YouTubeChannel": "MCLab HMU",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/VgotEuSwhQc.mp4",
"Saliency_file_name": "saliency/VgotEuSwhQc.mp4",
"Fixations": "fixations/VgotEuSwhQc.json",
"YouTubeName": "Welkom in Alkmaar",
"YouTubeChannel": "Inholland Diemen",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/-OFXGaiBXdU.mp4",
"Saliency_file_name": "saliency/-OFXGaiBXdU.mp4",
"Fixations": "fixations/-OFXGaiBXdU.json",
"YouTubeName": "Erlanger CHOC - Concrete Finishing",
"YouTubeChannel": "Shannon Lightfoot",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/FRxPpZgVYO8.mp4",
"Saliency_file_name": "saliency/FRxPpZgVYO8.mp4",
"Fixations": "fixations/FRxPpZgVYO8.json",
"YouTubeName": "360 - \u0421\u0435\u0432\u0430\u0441\u0442\u043e\u043f\u043e\u043b\u044c / \u0418\u0441\u0442\u043e\u0440\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0426\u0435\u043d\u0442\u0440 \u0413\u043e\u0440\u043e\u0434\u0430 (\u043c\u0430\u0440\u0442) - \u0447.5",
"YouTubeChannel": "\u041a\u0440\u044b\u043c \u041e\u043d\u043b\u0430\u0439\u043d",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/zQoOFFJ4JFg.mp4",
"Saliency_file_name": "saliency/zQoOFFJ4JFg.mp4",
"Fixations": "fixations/zQoOFFJ4JFg.json",
"YouTubeName": "360 part-4 Panorama / Sevasotol, Crimean War - Siege of Sevastopol 1854-1855",
"YouTubeChannel": "\u041a\u0440\u044b\u043c \u041e\u043d\u043b\u0430\u0439\u043d",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/9NBWnOPYj-s.mp4",
"Saliency_file_name": "saliency/9NBWnOPYj-s.mp4",
"Fixations": "fixations/9NBWnOPYj-s.json",
"YouTubeName": "\u0432\u0438\u0434\u0435\u043e 360 - \u0410\u043b\u0443\u0448\u0442\u0430 / \u0414\u0435\u043c\u0435\u0440\u0434\u0436\u0438 / \u0414\u0436\u0438\u043f\u043f\u0438\u043d\u0433- \u0442\u0443\u0440\u044b / \"\u041f\u043e \u0441\u043b\u0435\u0434\u0430\u043c - \u041a\u0430\u0432\u043a\u0430\u0437\u043a\u0430\u044f \u043f\u043b\u0435\u043d\u043d\u0438\u0446\u0430\"",
"YouTubeChannel": "\u041a\u0440\u044b\u043c \u041e\u043d\u043b\u0430\u0439\u043d",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/bEqLwjNlWUI.mp4",
"Saliency_file_name": "saliency/bEqLwjNlWUI.mp4",
"Fixations": "fixations/bEqLwjNlWUI.json",
"YouTubeName": "Viano\u010dn\u00e1 dedina ZV 360",
"YouTubeChannel": "ZV-podujatia",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/M14SLhNIUcc.mp4",
"Saliency_file_name": "saliency/M14SLhNIUcc.mp4",
"Fixations": "fixations/M14SLhNIUcc.json",
"YouTubeName": "test",
"YouTubeChannel": "Mynameis",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/ZCU4F3C0Jbg.mp4",
"Saliency_file_name": "saliency/ZCU4F3C0Jbg.mp4",
"Fixations": "fixations/ZCU4F3C0Jbg.json",
"YouTubeName": "Stay KooooK Backyard 360\u00b0",
"YouTubeChannel": "SV Hotel",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/qSnEFxTQOn4.mp4",
"Saliency_file_name": "saliency/qSnEFxTQOn4.mp4",
"Fixations": "fixations/qSnEFxTQOn4.json",
"YouTubeName": "Seychelles in VR - The BEST BEACH in the World - VIRTUAL REALITY RELAXATION on Honeymoon Beach 360\u00ba",
"YouTubeChannel": "Luxury Travel VR",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/fyhZd-htFGo.mp4",
"Saliency_file_name": "saliency/fyhZd-htFGo.mp4",
"Fixations": "fixations/fyhZd-htFGo.json",
"YouTubeName": "Maldives in VR - UNDERWATER RESTAURANT at Conrad Rangali Island. Luxury Island Resort Tour 5.7K 360\u00ba",
"YouTubeChannel": "Luxury Travel VR",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/eqFiQCi_FDE.mp4",
"Saliency_file_name": "saliency/eqFiQCi_FDE.mp4",
"Fixations": "fixations/eqFiQCi_FDE.json",
"YouTubeName": "360\u00b0 4K Procesi\u00f3n Ensayo Solidario de Alimentos #Alcorc\u00f3n @WHIOX Exclusivo",
"YouTubeChannel": "Data 7 Noticias Argentina",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/iux9Ejli8mc.mp4",
"Saliency_file_name": "saliency/iux9Ejli8mc.mp4",
"Fixations": "fixations/iux9Ejli8mc.json",
"YouTubeName": "Glockengel\u00e4ut in Paderborn",
"YouTubeChannel": "Felix Winkelnkemper",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/h8vbS82_eaQ.mp4",
"Saliency_file_name": "saliency/h8vbS82_eaQ.mp4",
"Fixations": "fixations/h8vbS82_eaQ.json",
"YouTubeName": "[PaddleBR] Cleanup on Lake Erie (of Baton Rouge)",
"YouTubeChannel": "Nathaniel Klumb",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/W65xpArt4CQ.mp4",
"Saliency_file_name": "saliency/W65xpArt4CQ.mp4",
"Fixations": "fixations/W65xpArt4CQ.json",
"YouTubeName": "\u6a5f\u8eca\u751f\u6d3b\u65e5\u5e38",
"YouTubeChannel": "\u8a31\u5bb6\u744b",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/Q-dW-EunVkc.mp4",
"Saliency_file_name": "saliency/Q-dW-EunVkc.mp4",
"Fixations": "fixations/Q-dW-EunVkc.json",
"YouTubeName": "\u041f\u041c\u0413\u0424 2019 \u0441\u0442\u0435\u043d\u0434 \u0418\u043c\u043f\u043e\u0440\u0442\u043e\u0437\u0430\u043c\u0435\u0449\u0435\u043d\u0438\u0435 \u0432 \u0433\u0430\u0437\u043e\u0432\u043e\u0439 \u043e\u0442\u0440\u0430\u0441\u043b\u0438 \u041d\u0418\u0418\u0420\u041f\u0418 \u0410\u043b\u043c\u0430\u0437-\u0410\u043d\u0442\u0435\u0439 SPIGF \u0413\u0430\u0437\u043e\u0432\u044b\u0439 \u0424\u043e\u0440\u0443\u043c",
"YouTubeChannel": "HDR360_ru",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/q8Tr4lLmhoo.mp4",
"Saliency_file_name": "saliency/q8Tr4lLmhoo.mp4",
"Fixations": "fixations/q8Tr4lLmhoo.json",
"YouTubeName": "\u041f\u041c\u0413\u0424 2019 \u0441\u0442\u0435\u043d\u0434 \u0418\u043c\u043f\u043e\u0440\u0442\u043e\u0437\u0430\u043c\u0435\u0449\u0435\u043d\u0438\u0435 \u0432 \u0433\u0430\u0437\u043e\u0432\u043e\u0439 \u043e\u0442\u0440\u0430\u0441\u043b\u0438 \u041d\u041f\u041e \u0426\u041a\u0422\u0418 \u0413\u0423\u0421\u0410\u0420 \u0413\u0430\u0437\u043f\u0440\u043e\u043c 335 SPIGF \u0413\u0430\u0437\u043e\u0432\u044b\u0439 \u0424\u043e\u0440\u0443\u043c",
"YouTubeChannel": "HDR360_ru",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/Fi5KPws-spM.mp4",
"Saliency_file_name": "saliency/Fi5KPws-spM.mp4",
"Fixations": "fixations/Fi5KPws-spM.json",
"YouTubeName": "\u041f\u041c\u0413\u0424 2019 \u0441\u0442\u0435\u043d\u0434 \u0418\u043c\u043f\u043e\u0440\u0442\u043e\u0437\u0430\u043c\u0435\u0449\u0435\u043d\u0438\u0435 \u0432 \u0433\u0430\u0437\u043e\u0432\u043e\u0439 \u043e\u0442\u0440\u0430\u0441\u043b\u0438 SPIGF \u0413\u0430\u0437\u043e\u0432\u044b\u0439 \u0424\u043e\u0440\u0443\u043c",
"YouTubeChannel": "HDR360_ru",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/jN8AfxKaZks.mp4",
"Saliency_file_name": "saliency/jN8AfxKaZks.mp4",
"Fixations": "fixations/jN8AfxKaZks.json",
"YouTubeName": "Primorsk 360 VR view",
"YouTubeChannel": "007and666",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/ycAa49L-8iE.mp4",
"Saliency_file_name": "saliency/ycAa49L-8iE.mp4",
"Fixations": "fixations/ycAa49L-8iE.json",
"YouTubeName": "VR 360 Wind Turbines at Sunrise",
"YouTubeChannel": "Sam Beattie",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/MwsAgCvSv6Y.mp4",
"Saliency_file_name": "saliency/MwsAgCvSv6Y.mp4",
"Fixations": "fixations/MwsAgCvSv6Y.json",
"YouTubeName": "Ball dels Cabets d'Ontinyent en 360\u00b0",
"YouTubeChannel": "Esteve Ribera",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/BNYyRSKb26w.mp4",
"Saliency_file_name": "saliency/BNYyRSKb26w.mp4",
"Fixations": "fixations/BNYyRSKb26w.json",
"YouTubeName": "VISTA 360 INTERIOR / ARQUITECTURA INTERACTIVA - MARTIN MENDALDE",
"YouTubeChannel": "Renders OPEN",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/Wq2ODoOBvaY.mp4",
"Saliency_file_name": "saliency/Wq2ODoOBvaY.mp4",
"Fixations": "fixations/Wq2ODoOBvaY.json",
"YouTubeName": "Manege 360\u00b0",
"YouTubeChannel": "THEJEANMICHMUCH44",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/SSe_7CVeIx8.mp4",
"Saliency_file_name": "saliency/SSe_7CVeIx8.mp4",
"Fixations": "fixations/SSe_7CVeIx8.json",
"YouTubeName": "Ukrainian Girl Bogdana 360\u00b0 video in Aqua Park",
"YouTubeChannel": "Girls Are Gorgeous",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/0gB3VF1PxuM.mp4",
"Saliency_file_name": "saliency/0gB3VF1PxuM.mp4",
"Fixations": "fixations/0gB3VF1PxuM.json",
"YouTubeName": "Ukrainian woman Eugenia shows her 360\u00b0 trampoline jumping",
"YouTubeChannel": "Girls Are Gorgeous",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/SZkn26a7d_M.mp4",
"Saliency_file_name": "saliency/SZkn26a7d_M.mp4",
"Fixations": "fixations/SZkn26a7d_M.json",
"YouTubeName": "360 view from Odessa beach with Anna",
"YouTubeChannel": "Girls Are Gorgeous",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/i9sJ3ervHA0.mp4",
"Saliency_file_name": "saliency/i9sJ3ervHA0.mp4",
"Fixations": "fixations/i9sJ3ervHA0.json",
"YouTubeName": "VR 360 video of Ukraine Girl painting in the nature 1894898 published",
"YouTubeChannel": "Girls Are Gorgeous",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/vuHFhB8qZLI.mp4",
"Saliency_file_name": "saliency/vuHFhB8qZLI.mp4",
"Fixations": "fixations/vuHFhB8qZLI.json",
"YouTubeName": "Guffey Cove Jumpers 360",
"YouTubeChannel": "ebersoleMEDIA",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/4CGCRZj8loE.mp4",
"Saliency_file_name": "saliency/4CGCRZj8loE.mp4",
"Fixations": "fixations/4CGCRZj8loE.json",
"YouTubeName": "Skylanders 360 Jingle Bell Chompy Mage | Skylanders Imaginators | Skylanders",
"YouTubeChannel": "SkylandersGame",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/Ow-HfdtsQqI.mp4",
"Saliency_file_name": "saliency/Ow-HfdtsQqI.mp4",
"Fixations": "fixations/Ow-HfdtsQqI.json",
"YouTubeName": "\u017begiest\u00f3w Dom Zdrojowy in 360\u00b0 \ud83c\udf10",
"YouTubeChannel": "Odkryj Atrakcje Ma\u0142opolski - Discover Ma\u0142opolska",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/byeCBLeM8lo.mp4",
"Saliency_file_name": "saliency/byeCBLeM8lo.mp4",
"Fixations": "fixations/byeCBLeM8lo.json",
"YouTubeName": "Dolina Poprady Ma\u0142opolska in 360\u00b0 \ud83c\udf10 jesie\u0144 2019",
"YouTubeChannel": "Odkryj Atrakcje Ma\u0142opolski - Discover Ma\u0142opolska",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/Ml0p_EEHqgE.mp4",
"Saliency_file_name": "saliency/Ml0p_EEHqgE.mp4",
"Fixations": "fixations/Ml0p_EEHqgE.json",
"YouTubeName": "Ankara Balgat 360 Video Test",
"YouTubeChannel": "\u00d6mer Akyol",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/58QkpAcmy6E.mp4",
"Saliency_file_name": "saliency/58QkpAcmy6E.mp4",
"Fixations": "fixations/58QkpAcmy6E.json",
"YouTubeName": "AWR360 Fran\u00e7ais: Journ\u00e9e mondiale des r\u00e9fugi\u00e9s",
"YouTubeChannel": "AWR VR",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/rf3Ou6qS-Ek.mp4",
"Saliency_file_name": "saliency/rf3Ou6qS-Ek.mp4",
"Fixations": "fixations/rf3Ou6qS-Ek.json",
"YouTubeName": "Venezuela: construir el empoderamiento femenino con una cooperativa de tejedoras",
"YouTubeChannel": "Chamba Coop",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/tFlrnPLJAUY.mp4",
"Saliency_file_name": "saliency/tFlrnPLJAUY.mp4",
"Fixations": "fixations/tFlrnPLJAUY.json",
"YouTubeName": "2016\ub144 \ud398\ub974\uc138\uc6b0\uc2a4 \uc720\uc131\uc6b0",
"YouTubeChannel": "\uad8c\uc6b0\ud0dc",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/RZxjqqSeVfk.mp4",
"Saliency_file_name": "saliency/RZxjqqSeVfk.mp4",
"Fixations": "fixations/RZxjqqSeVfk.json",
"YouTubeName": "PANORAMA 360 AREA DEPORTIVA USP",
"YouTubeChannel": "CAstudio",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/z_FeUq2T_7E.mp4",
"Saliency_file_name": "saliency/z_FeUq2T_7E.mp4",
"Fixations": "fixations/z_FeUq2T_7E.json",
"YouTubeName": "Relaxing winter walk at river of Cracow (Krak\u00f3w) 2019 - 4K UHD HQ",
"YouTubeChannel": "Geo Marketing Partner",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/QRGR7hGVP9s.mp4",
"Saliency_file_name": "saliency/QRGR7hGVP9s.mp4",
"Fixations": "fixations/QRGR7hGVP9s.json",
"YouTubeName": "\u041f\u0440\u043e\u043d\u0435\u0431\u043e \u0432 \u0444\u043e\u0440\u043c\u0430\u0442\u0435 360. \u041e\u0442\u0447\u0435\u0442\u043d\u044b\u0439 \u0432\u0438\u0434\u0435\u043e\u0440\u043e\u043b\u0438\u043a.",
"YouTubeChannel": "Letim.by",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/laSrJC6tX7o.mp4",
"Saliency_file_name": "saliency/laSrJC6tX7o.mp4",
"Fixations": "fixations/laSrJC6tX7o.json",
"YouTubeName": "Jantzen Beach Moorage (Oregon) | GoPro Fusion | October 8, 2019",
"YouTubeChannel": "Christer Edwards",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/gPKIM7_1INA.mp4",
"Saliency_file_name": "saliency/gPKIM7_1INA.mp4",
"Fixations": "fixations/gPKIM7_1INA.json",
"YouTubeName": "Seaside (Oregon) - Low Tide | GoPro Fusion | Oct 9, 2019",
"YouTubeChannel": "Christer Edwards",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/CRPQDt9QhSQ.mp4",
"Saliency_file_name": "saliency/CRPQDt9QhSQ.mp4",
"Fixations": "fixations/CRPQDt9QhSQ.json",
"YouTubeName": "Portland Saturday Market (Oregon) | GoPro Fusion 360 | Oct 6, 2019",
"YouTubeChannel": "Christer Edwards",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/XdJ3WUHqeJg.mp4",
"Saliency_file_name": "saliency/XdJ3WUHqeJg.mp4",
"Fixations": "fixations/XdJ3WUHqeJg.json",
"YouTubeName": "Eternal Friendship - 360 Degree Video",
"YouTubeChannel": "Pano Studio VR",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/CNkUqKFCfeA.mp4",
"Saliency_file_name": "saliency/CNkUqKFCfeA.mp4",
"Fixations": "fixations/CNkUqKFCfeA.json",
"YouTubeName": "\u0421\u0435\u043c\u0445\u043e\u0437 15 \u043e\u043a\u0442\u044f\u0431\u0440\u044f 2018",
"YouTubeChannel": "STUDIOARS",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/AUdHUB8W3Ak.mp4",
"Saliency_file_name": "saliency/AUdHUB8W3Ak.mp4",
"Fixations": "fixations/AUdHUB8W3Ak.json",
"YouTubeName": "\u041f\u0440\u043e\u0435\u0437\u0434 \u043f\u043e \u043b\u0435\u0441\u0443 \u0432\u0438\u0434\u0435\u043e VR360",
"YouTubeChannel": "STUDIOARS",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/7pBuz2iatbg.mp4",
"Saliency_file_name": "saliency/7pBuz2iatbg.mp4",
"Fixations": "fixations/7pBuz2iatbg.json",
"YouTubeName": "\u0421\u0435\u0440\u0433\u0438\u0435\u0432 \u041f\u043e\u0441\u0430\u0434 VR 360",
"YouTubeChannel": "STUDIOARS",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/YALxfk1xhy8.mp4",
"Saliency_file_name": "saliency/YALxfk1xhy8.mp4",
"Fixations": "fixations/YALxfk1xhy8.json",
"YouTubeName": "VID 2019 08 07 19 01 55 20190827001327",
"YouTubeChannel": "zouzouk",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/GMo78wKLPqU.mp4",
"Saliency_file_name": "saliency/GMo78wKLPqU.mp4",
"Fixations": "fixations/GMo78wKLPqU.json",
"YouTubeName": "360 \u0423\u043b\u044c\u0442\u0440\u0430\u0441 \u0414\u0438\u043d\u0430\u043c\u043e. \u0414\u0438\u043d\u0430\u043c\u043e - \u0428\u0430\u0445\u0442\u0430\u0440. 12.12.2016",
"YouTubeChannel": "\u041e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0424K \u0414\u0438\u043d\u0430\u043c\u043e \u041a\u0438\u0435\u0432",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/0-L6b66SwnE.mp4",
"Saliency_file_name": "saliency/0-L6b66SwnE.mp4",
"Fixations": "fixations/0-L6b66SwnE.json",
"YouTubeName": "360 boyutlu Turkey",
"YouTubeChannel": "Sinan Akdeniz",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/A7BNWGJovXo.mp4",
"Saliency_file_name": "saliency/A7BNWGJovXo.mp4",
"Fixations": "fixations/A7BNWGJovXo.json",
"YouTubeName": "VR 360 | Spreetshoogte Pass, Namibia | Garmin VIRB 360",
"YouTubeChannel": "Jeewan Ghuman",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/66uTkD_eBOE.mp4",
"Saliency_file_name": "saliency/66uTkD_eBOE.mp4",
"Fixations": "fixations/66uTkD_eBOE.json",
"YouTubeName": "Recreaci\u00f3 hist\u00f2rica al Castell de Montsoriu. V\u00eddeo VR",
"YouTubeChannel": "Museu d'Arqueologia de Catalunya",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/vd-9tboVDjU.mp4",
"Saliency_file_name": "saliency/vd-9tboVDjU.mp4",
"Fixations": "fixations/vd-9tboVDjU.json",
"YouTubeName": "Doppler_Herzweh 2Teil",
"YouTubeChannel": "habibie",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/eSnQJFZmu8U.mp4",
"Saliency_file_name": "saliency/eSnQJFZmu8U.mp4",
"Fixations": "fixations/eSnQJFZmu8U.json",
"YouTubeName": "Ein Tag als Erzieher:in beim pme Familienservice | 360 \u00b0-Video: Dein erster Tag",
"YouTubeChannel": "pme Familienservice",
"License": "Creative Commons Attribution License (Reuse Allowed)"
},
{
"Video_file_name": "videos/2esPBQW5soA.mp4",
"Saliency_file_name": "saliency/2esPBQW5soA.mp4",
"Fixations": "fixations/2esPBQW5soA.json",
"YouTubeName": "GroupM's APAC HQ in 360 VR - refreshed version!",
"YouTubeChannel": "GroupM APAC",
"License": "Creative Commons Attribution License (Reuse Allowed)"
}
] |