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 20:31:52.472 T:139721881167872 NOTICE: special://profile/ is mapped to: special://masterprofile/ 20:31:52.472 T:139721881167872 NOTICE: ----------------------------------------------------------------------- 20:31:52.472 T:139721881167872 NOTICE: Starting Kodi (17.0 Git:Unknown). Platform: Linux x86 64-bit 20:31:52.472 T:139721881167872 NOTICE: Using Debug Kodi x64 build 20:31:52.472 T:139721881167872 NOTICE: Kodi compiled Feb 24 2017 by GCC 4.8.4 for Linux x86 64-bit version 3.13.11 (199947) 20:31:52.472 T:139721881167872 NOTICE: Running on Ubuntu 14.04.1 LTS, kernel: Linux x86 64-bit version 4.2.8 20:31:52.473 T:139721881167872 NOTICE: FFmpeg version/source: ffmpeg-3.1-kodi 20:31:52.473 T:139721881167872 NOTICE: Host CPU: Intel(R) Celeron(R) CPU J1900 @ 1.99GHz, 4 cores available 20:31:52.473 T:139721881167872 NOTICE: special://xbmc/ is mapped to: /opt/Kodi17/share/kodi 20:31:52.473 T:139721881167872 NOTICE: special://xbmcbin/ is mapped to: /share/CACHEDEV1_DATA/.qpkg/Kodi17/opt/lib/kodi 20:31:52.473 T:139721881167872 NOTICE: special://xbmcbinaddons/ is mapped to: /share/CACHEDEV1_DATA/.qpkg/Kodi17/opt/lib/kodi/addons 20:31:52.473 T:139721881167872 NOTICE: special://masterprofile/ is mapped to: /opt/Kodi17/.kodi/userdata 20:31:52.473 T:139721881167872 NOTICE: special://envhome/ is mapped to: /opt/Kodi17 20:31:52.473 T:139721881167872 NOTICE: special://home/ is mapped to: /opt/Kodi17/.kodi 20:31:52.473 T:139721881167872 NOTICE: special://temp/ is mapped to: /opt/Kodi17/.kodi/temp 20:31:52.473 T:139721881167872 NOTICE: special://logpath/ is mapped to: /opt/Kodi17/.kodi/temp 20:31:52.473 T:139721881167872 NOTICE: The executable running is: /share/CACHEDEV1_DATA/.qpkg/Kodi17/opt/lib/kodi/kodi.bin 20:31:52.473 T:139721881167872 NOTICE: Local hostname: NASJML 20:31:52.473 T:139721881167872 NOTICE: Log File is located: /opt/Kodi17/.kodi/temp//kodi.log 20:31:52.473 T:139721881167872 NOTICE: ----------------------------------------------------------------------- 20:31:52.638 T:139721881167872 DEBUG: ConsoleKit.Manager: org.freedesktop.DBus.Error.ServiceUnknown - The name org.freedesktop.ConsoleKit was not provided by any .service files 20:31:52.638 T:139721881167872 DEBUG: UPower: org.freedesktop.DBus.Error.ServiceUnknown - The name org.freedesktop.UPower was not provided by any .service files 20:31:52.638 T:139721881167872 DEBUG: ConsoleKit.Manager: org.freedesktop.DBus.Error.ServiceUnknown - The name org.freedesktop.ConsoleKit was not provided by any .service files 20:31:52.638 T:139721881167872 DEBUG: DeviceKit.Power: org.freedesktop.DBus.Error.ServiceUnknown - The name org.freedesktop.DeviceKit.Disks was not provided by any .service files 20:31:52.639 T:139721881167872 DEBUG: UPower: org.freedesktop.DBus.Error.ServiceUnknown - The name org.freedesktop.UPower was not provided by any .service files 20:31:52.639 T:139721881167872 NOTICE: load settings... 20:31:52.706 T:139721881167872 DEBUG: CSettings: loaded settings definition from special://xbmc/system/settings/settings.xml 20:31:52.747 T:139721881167872 DEBUG: CSettings: loaded settings definition from special://xbmc/system/settings/linux.xml 20:31:52.980 T:139721482024704 DEBUG: Thread FDEventMonitor start, auto delete: false 20:31:53.156 T:139721881167872 NOTICE: Found 1 Lists of Devices 20:31:53.156 T:139721881167872 NOTICE: Enumerated ALSA devices: 20:31:53.156 T:139721881167872 NOTICE: Device 1 20:31:53.156 T:139721881167872 NOTICE: m_deviceName : default 20:31:53.156 T:139721881167872 NOTICE: m_displayName : Playback/recording through the PulseAudio sound server 20:31:53.156 T:139721881167872 NOTICE: m_displayNameExtra: 20:31:53.156 T:139721881167872 NOTICE: m_deviceType : AE_DEVTYPE_PCM 20:31:53.156 T:139721881167872 NOTICE: m_channels : FL,FR,BL,BR,FC,LFE,SL,SR,UNKNOWN1,UNKNOWN2,UNKNOWN3,UNKNOWN4,UNKNOWN5,UNKNOWN6,UNKNOWN7,UNKNOWN8 20:31:53.156 T:139721881167872 NOTICE: m_sampleRates : 5512,8000,11025,16000,22050,32000,44100,48000,64000,88200,96000,176400,192000 20:31:53.156 T:139721881167872 NOTICE: m_dataFormats : AE_FMT_FLOAT,AE_FMT_S32NE,AE_FMT_S16NE,AE_FMT_S16LE,AE_FMT_S16BE,AE_FMT_U8 20:31:53.156 T:139721881167872 NOTICE: m_streamTypes : No passthrough capabilities 20:31:53.156 T:139721881167872 NOTICE: Device 2 20:31:53.156 T:139721881167872 NOTICE: m_deviceName : pulse 20:31:53.156 T:139721881167872 NOTICE: m_displayName : PulseAudio Sound Server 20:31:53.156 T:139721881167872 NOTICE: m_displayNameExtra: 20:31:53.156 T:139721881167872 NOTICE: m_deviceType : AE_DEVTYPE_PCM 20:31:53.156 T:139721881167872 NOTICE: m_channels : FL,FR,BL,BR,FC,LFE,SL,SR,UNKNOWN1,UNKNOWN2,UNKNOWN3,UNKNOWN4,UNKNOWN5,UNKNOWN6,UNKNOWN7,UNKNOWN8 20:31:53.156 T:139721881167872 NOTICE: m_sampleRates : 5512,8000,11025,16000,22050,32000,44100,48000,64000,88200,96000,176400,192000 20:31:53.156 T:139721881167872 NOTICE: m_dataFormats : AE_FMT_FLOAT,AE_FMT_S32NE,AE_FMT_S16NE,AE_FMT_S16LE,AE_FMT_S16BE,AE_FMT_U8 20:31:53.156 T:139721881167872 NOTICE: m_streamTypes : No passthrough capabilities 20:31:53.156 T:139721881167872 NOTICE: Device 3 20:31:53.156 T:139721881167872 NOTICE: m_deviceName : hdmi:CARD=PCH,DEV=0 20:31:53.156 T:139721881167872 NOTICE: m_displayName : HDA Intel PCH 20:31:53.156 T:139721881167872 NOTICE: m_displayNameExtra: SAM SAMSUNG on HDMI 20:31:53.156 T:139721881167872 NOTICE: m_deviceType : AE_DEVTYPE_HDMI 20:31:53.156 T:139721881167872 NOTICE: m_channels : FL,FR 20:31:53.156 T:139721881167872 NOTICE: m_sampleRates : 32000,44100,48000 20:31:53.156 T:139721881167872 NOTICE: m_dataFormats : AE_FMT_RAW,AE_FMT_S32NE,AE_FMT_S16NE,AE_FMT_S16LE,AE_FMT_RAW 20:31:53.156 T:139721881167872 NOTICE: m_streamTypes : STREAM_TYPE_AC3,STREAM_TYPE_DTSHD,STREAM_TYPE_DTSHD_CORE,STREAM_TYPE_DTS_1024,STREAM_TYPE_DTS_2048,STREAM_TYPE_DTS_512,STREAM_TYPE_EAC3,STREAM_TYPE_TRUEHD 20:31:53.161 T:139721881167872 DEBUG: CSkinSettings: no tag found 20:31:53.161 T:139721881167872 NOTICE: No settings file to load (special://xbmc/system/advancedsettings.xml) 20:31:53.203 T:139721881167872 NOTICE: Loaded settings file from special://profile/advancedsettings.xml 20:31:53.204 T:139721881167872 NOTICE: Contents of special://profile/advancedsettings.xml are... 0 /opt/kodi/bin/get_NAS_temperature.sh sed -e 's/000$/ C/' /sys/class/hwmon/hwmon0/device/temp1_input 20:31:53.204 T:139721881167872 NOTICE: Default Video Player: VideoPlayer 20:31:53.204 T:139721881167872 NOTICE: Default Audio Player: paplayer 20:31:53.204 T:139721881167872 NOTICE: Enabled debug logging due to GUI setting (2) 20:31:53.204 T:139721881167872 NOTICE: Log level changed to "LOG_LEVEL_DEBUG_FREEMEM" 20:31:53.204 T:139721881167872 NOTICE: CMediaSourceSettings: loading media sources from special://masterprofile/sources.xml 20:31:53.266 T:139721881167872 NOTICE: Loading player core factory settings from special://xbmc/system/playercorefactory.xml. 20:31:53.325 T:139721881167872 DEBUG: CPlayerCoreConfig::: created player VideoPlayer 20:31:53.325 T:139721881167872 DEBUG: CPlayerCoreConfig::: created player PAPlayer 20:31:53.325 T:139721881167872 DEBUG: CPlayerSelectionRule::Initialize: creating rule: system rules 20:31:53.325 T:139721881167872 DEBUG: CPlayerSelectionRule::Initialize: creating rule: mms/udp 20:31:53.325 T:139721881167872 DEBUG: CPlayerSelectionRule::Initialize: creating rule: lastfm/shout 20:31:53.325 T:139721881167872 DEBUG: CPlayerSelectionRule::Initialize: creating rule: rtmp 20:31:53.325 T:139721881167872 DEBUG: CPlayerSelectionRule::Initialize: creating rule: rtsp 20:31:53.326 T:139721881167872 DEBUG: CPlayerSelectionRule::Initialize: creating rule: streams 20:31:53.326 T:139721881167872 DEBUG: CPlayerSelectionRule::Initialize: creating rule: aacp/sdp 20:31:53.326 T:139721881167872 DEBUG: CPlayerSelectionRule::Initialize: creating rule: mp2 20:31:53.326 T:139721881167872 DEBUG: CPlayerSelectionRule::Initialize: creating rule: dvd 20:31:53.326 T:139721881167872 DEBUG: CPlayerSelectionRule::Initialize: creating rule: dvdimage 20:31:53.326 T:139721881167872 DEBUG: CPlayerSelectionRule::Initialize: creating rule: sdp/asf 20:31:53.326 T:139721881167872 DEBUG: CPlayerSelectionRule::Initialize: creating rule: nsv 20:31:53.326 T:139721881167872 DEBUG: CPlayerSelectionRule::Initialize: creating rule: radio 20:31:53.326 T:139721881167872 NOTICE: Loaded playercorefactory configuration 20:31:53.326 T:139721881167872 NOTICE: Loading player core factory settings from special://masterprofile/playercorefactory.xml. 20:31:53.326 T:139721881167872 NOTICE: special://masterprofile/playercorefactory.xml does not exist. Skipping. 20:31:53.476 T:139721881167872 INFO: creating subdirectories 20:31:53.476 T:139721881167872 INFO: userdata folder: special://masterprofile/ 20:31:53.476 T:139721881167872 INFO: recording folder: 20:31:53.476 T:139721881167872 INFO: screenshots folder: /share/Download/ 20:31:53.501 T:139721881167872 NOTICE: Running database version Addons27 20:31:53.501 T:139721881167872 DEBUG: SECTION:LoadDLL(special://xbmcbin/system/libcpluff-x86_64-linux.so) 20:31:53.501 T:139721881167872 DEBUG: Loading: /share/CACHEDEV1_DATA/.qpkg/Kodi17/opt/lib/kodi/system/libcpluff-x86_64-linux.so 20:31:55.026 T:139721881167872 INFO: ADDON: cpluff: 'Could not read plug-in directory /share/CACHEDEV1_DATA/.qpkg/Kodi17/opt/lib/kodi/addons: No such file or directory' 20:31:55.026 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.stars has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in plugin.video.bild_bundesliga has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in repository.shani has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.nosefart has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in resource.images.weathericons.default has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in repository.podgod has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.octonet has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in webinterface.default has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in visualization.fishbmc has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in weather.yahoo has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in plugin.video.madxtreams has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in kodi.audiodecoder has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.rsxs.euphoria has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in plugin.video.prosport has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in kodi.peripheral has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.argustv has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.rsxs.hyperspace has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in repository.maverickrepo has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.futures has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audioencoder.xbmc.builtin.wma has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in kodi.adsp has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in repository.kodinerds has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.pydes has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.organya has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.beautifulsoup4 has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in metadata.themoviedb.org has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in resource.images.recordlabels.white has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in xbmc.metadata has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in visualization.shadertoy has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in service.xbmc.versioncheck has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.gme has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.dvblink has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.httplib2 has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.myconnpy has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in resource.images.weatherfanart.single has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.rsxs.flux has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.asterwave has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.image.resource.select has been installed.' 20:31:55.027 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.beautifulsoup has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in xbmc.gui has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.common.plugin.cache has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.rsxs.lattice has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.ssf has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.rsxs.solarwinds has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.pctv has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in skin.blackglassnova has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.iptvsimple has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.libmdr has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.video.F4mProxy has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.njoy has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.actionhandler has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.livestreamer has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in visualization.goom has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.vgmstream has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.dateutil has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.stsound has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in metadata.common.htbackdrops.com has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in visualization.spectrum has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.2sf has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.dvbviewer has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in resource.language.en_gb has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.maps.browser has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.stalker has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in plugin.video.MaverickTV has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in metadata.common.musicbrainz.org has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in plugin.video.skygo.de has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.pyro has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in metadata.local has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in xbmc.webinterface has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audioencoder.lame has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in resource.language.de_de has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in metadata.common.themoviedb.org has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in resource.uisounds.kodi has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in plugin.video.nick_de has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in metadata.common.theaudiodb.com has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in repository.kodinerds_Generic_x68_64 has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in plugin.video.SportsDevil has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.filmon has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in plugin.video.kikamediathek has been installed.' 20:31:55.028 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in visualization.waveform has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in repository.mdiptv has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in skin.estuary has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in xbmc.json has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.t0mm0.common has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.qsf has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in resource.images.weathericons.transparent has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in metadata.common.fanart.tv has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.biogenesis has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in xbmc.audioencoder has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.rsxs.flocks has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.openmpt has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.timidity has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.vbox has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.six has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.cryptopy has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in repository.xbmc.org has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.xbmc.builtin.black has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.rsxs.fieldlines has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.modplug has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in kodi.guilib has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.vdr.vnsi has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.asteroids has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audioencoder.vorbis has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in peripheral.joystick has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.mediaportal.tvserver has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.libmediathek3 has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.fluidsynth has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audioencoder.wav has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in game.controller.default has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.simplejson has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.singledispatch has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.xbmc.builtin.dim has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.favourites has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in kodi.game has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.wmc has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audioencoder.flac has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in inputstream.rtmp has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.addon.common has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.gsf has been installed.' 20:31:55.029 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.hdhomerun has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in resource.uisounds.nebula has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.libkika has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.matrixtrails has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in kodi.resource has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.pil has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.rsxs.helios has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.dumb has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in resource.images.languageflags.colour has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.rsxs.skyrocket has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.unidecode has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.skinshortcuts has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in inputstream.adaptive has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in plugin.video.kika_de has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.simple.downloader has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.mythtv has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.vuplus has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in xbmc.core has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.pingpong has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in skin.estouchy has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.cpblobs has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in plugin.video.youtube has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.requests has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.sidplay has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.demo has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in kodi.inputstream has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in xbmc.pvr has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.urlresolver has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in plugin.video.f4mTester has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.nextpvr has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in metadata.album.universal has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.routing has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audioencoder.xbmc.builtin.aac has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.snesapu has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in metadata.tvdb.com has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in metadata.common.allmusic.com has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in plugin.video.sky_mediathek has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in resource.images.studios.white has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.rsxs.cyclone has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.parsedom has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in metadata.artists.universal has been installed.' 20:31:55.030 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in xbmc.python has been installed.' 20:31:55.031 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in metadata.common.imdb.com has been installed.' 20:31:55.031 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.greynetic has been installed.' 20:31:55.031 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in xbmc.addon has been installed.' 20:31:55.031 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.rsxs.plasma has been installed.' 20:31:55.031 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.hts has been installed.' 20:31:55.031 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in xbmc.codec has been installed.' 20:31:55.031 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.metahandler has been installed.' 20:31:55.031 T:139721881167872 DEBUG: ADDON: cpluff: 'Not all directories were successfully scanned.' 20:31:55.299 T:139721471506176 DEBUG: Thread JobWorker start, auto delete: true 20:31:55.308 T:139721881167872 NOTICE: ADDONS: Using repository repository.xbmc.org 20:31:55.308 T:139721881167872 NOTICE: ADDONS: Using repository repository.mdiptv 20:31:55.308 T:139721881167872 NOTICE: ADDONS: Using repository repository.kodinerds 20:31:55.308 T:139721881167872 NOTICE: ADDONS: Using repository repository.shani 20:31:55.308 T:139721881167872 NOTICE: ADDONS: Using repository repository.maverickrepo 20:31:55.308 T:139721881167872 NOTICE: ADDONS: Using repository repository.podgod 20:31:55.308 T:139721881167872 NOTICE: ADDONS: Using repository repository.kodinerds_Generic_x68_64 20:31:55.315 T:139721881167872 DEBUG: ADDON: Dll Initializing - InputStream Adaptive 20:31:55.315 T:139721881167872 DEBUG: SECTION:LoadDLL(/opt/Kodi17/.kodi/addons/inputstream.adaptive/inputstream.adaptive.so.1.0.8) 20:31:55.316 T:139721881167872 DEBUG: Loading: /opt/Kodi17/.kodi/addons/inputstream.adaptive/inputstream.adaptive.so.1.0.8 20:31:55.333 T:139721881167872 DEBUG: AddOnLog: InputStream Adaptive: libXBMC_addon successfully loaded 20:31:55.333 T:139721881167872 DEBUG: AddOnLog: InputStream Adaptive: ADDON_Create() 20:31:55.333 T:139721881167872 DEBUG: AddOnLog: InputStream Adaptive: ADDON_Destroy() 20:31:55.333 T:139721881167872 DEBUG: SECTION:UnloadDll(/opt/Kodi17/.kodi/addons/inputstream.adaptive/inputstream.adaptive.so.1.0.8) 20:31:55.333 T:139721881167872 INFO: ADDON: Dll Destroyed - InputStream Adaptive 20:31:55.345 T:139721258825472 DEBUG: Thread ActiveAE start, auto delete: false 20:31:55.345 T:139721250432768 DEBUG: Thread AESink start, auto delete: false 20:31:55.345 T:139721250432768 INFO: CActiveAESink::OpenSink - initialize sink 20:31:55.345 T:139721250432768 DEBUG: CActiveAESink::OpenSink - trying to open device ALSA:default 20:31:55.345 T:139721250432768 INFO: CAESinkALSA::Initialize - Attempting to open device "default" 20:31:55.347 T:139721250432768 INFO: CAESinkALSA::Initialize - Opened device "default" 20:31:55.347 T:139721250432768 DEBUG: CAESinkALSA::InitializeHW - Request: periodSize 2205, bufferSize 8820 20:31:55.362 T:139721250432768 DEBUG: CAESinkALSA::InitializeHW - Got: periodSize 2205, bufferSize 8820 20:31:55.362 T:139721250432768 DEBUG: CAESinkALSA::InitializeHW - Setting timeout to 200 ms 20:31:55.364 T:139721250432768 DEBUG: CAESinkALSA::GetChannelLayout - Input Channel Count: 2 Output Channel Count: 2 20:31:55.364 T:139721250432768 DEBUG: CAESinkALSA::GetChannelLayout - Requested Layout: FL,FR 20:31:55.364 T:139721250432768 DEBUG: CAESinkALSA::GetChannelLayout - Got Layout: FL,FR (ALSA: none) 20:31:55.364 T:139721250432768 DEBUG: CActiveAESink::OpenSink - ALSA Initialized: 20:31:55.364 T:139721250432768 DEBUG: Output Device : Playback/recording through the PulseAudio sound server 20:31:55.364 T:139721250432768 DEBUG: Sample Rate : 44100 20:31:55.364 T:139721250432768 DEBUG: Sample Format : AE_FMT_FLOAT 20:31:55.364 T:139721250432768 DEBUG: Channel Count : 2 20:31:55.364 T:139721250432768 DEBUG: Channel Layout: FL,FR 20:31:55.364 T:139721250432768 DEBUG: Frames : 2205 20:31:55.364 T:139721250432768 DEBUG: Frame Size : 8 20:31:55.412 T:139721233647360 DEBUG: Thread RemoteControl start, auto delete: false 20:31:55.412 T:139721233647360 INFO: LIRC Process: using: /dev/lircd 20:31:55.413 T:139721233647360 INFO: LIRC Connect: successfully started 20:31:55.413 T:139721233647360 DEBUG: Thread RemoteControl 139721233647360 terminating 20:31:55.514 T:139721881167872 INFO: CKeyboardLayoutManager: loading keyboard layouts from special://xbmc/system/keyboardlayouts... 20:31:55.675 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "Bulgarian ЯВЕРТЪ" successfully loaded 20:31:55.676 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "Bulgarian АБВ" successfully loaded 20:31:55.699 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "Arabic QWERTY" successfully loaded 20:31:55.748 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "Hungarian QWERTZ" successfully loaded 20:31:55.785 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "Chinese BasePY" successfully loaded 20:31:55.785 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "Chinese BaiduPY" successfully loaded 20:31:55.835 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "Croatian QWERTY" successfully loaded 20:31:55.839 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "Czech QWERTZ" successfully loaded 20:31:55.840 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "Danish QWERTY" successfully loaded 20:31:55.844 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "English QWERTY" successfully loaded 20:31:55.845 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "English AZERTY" successfully loaded 20:31:55.845 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "English ABC" successfully loaded 20:31:55.856 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "French AZERTY" successfully loaded 20:31:55.865 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "German QWERTZ" successfully loaded 20:31:55.865 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "German ABC" successfully loaded 20:31:55.866 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "Greek QWERTY" successfully loaded 20:31:55.867 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "Hebrew QWERTY" successfully loaded 20:31:55.867 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "Hebrew ABC" successfully loaded 20:31:55.867 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "Lithuanian AZERTY" successfully loaded 20:31:55.868 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "Lithuanian QWERTY" successfully loaded 20:31:55.924 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "Italian QWERTY" successfully loaded 20:31:55.924 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "Korean ㄱㄴㄷ" successfully loaded 20:31:55.925 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "Norwegian QWERTY" successfully loaded 20:31:55.925 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "Polish QWERTY" successfully loaded 20:31:55.926 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "Portuguese (Portugal) QWERTY" successfully loaded 20:31:55.927 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "Romanian QWERTY" successfully loaded 20:31:55.928 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "Russian ЙЦУКЕН" successfully loaded 20:31:55.928 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "Russian АБВ" successfully loaded 20:31:55.928 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "Silesian QWERTY" successfully loaded 20:31:55.929 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "Slovak QWERTZ" successfully loaded 20:31:55.929 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "Slovak QWERTY" successfully loaded 20:31:55.930 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "Slovak ABC" successfully loaded 20:31:55.930 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "Spanish QWERTY" successfully loaded 20:31:55.931 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "Swedish QWERTY" successfully loaded 20:31:55.931 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "Turkish QWERTY" successfully loaded 20:31:55.936 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "Ukrainian ЙЦУКЕН" successfully loaded 20:31:55.937 T:139721881167872 DEBUG: CKeyboardLayoutManager: keyboard layout "Ukrainian АБВ" successfully loaded 20:31:55.937 T:139721881167872 DEBUG: UDisks: org.freedesktop.DBus.Error.ServiceUnknown - The name org.freedesktop.UDisks was not provided by any .service files 20:31:55.937 T:139721881167872 DEBUG: DeviceKit.Disks: org.freedesktop.DBus.Error.ServiceUnknown - The name org.freedesktop.DeviceKit.Disks was not provided by any .service files 20:31:55.958 T:139721881167872 DEBUG: Selected UDev as storage provider 20:31:56.155 T:139721881167872 INFO: Available videomodes (xrandr): 20:31:56.155 T:139721881167872 INFO: Output 'HDMI1' has 40 modes 20:31:56.155 T:139721881167872 INFO: ID:0xe1 Name:1920x1080 Refresh:60.000000 Width:1920 Height:1080 20:31:56.155 T:139721881167872 INFO: Pixel Ratio: 1.000000 20:31:56.155 T:139721881167872 INFO: ID:0xe2 Name:1920x1080 Refresh:50.000000 Width:1920 Height:1080 20:31:56.155 T:139721881167872 INFO: Pixel Ratio: 1.000000 20:31:56.155 T:139721881167872 INFO: ID:0xe3 Name:1920x1080 Refresh:59.940201 Width:1920 Height:1080 20:31:56.155 T:139721881167872 INFO: Pixel Ratio: 1.000000 20:31:56.155 T:139721881167872 INFO: ID:0xe6 Name:1920x1080 Refresh:30.000000 Width:1920 Height:1080 20:31:56.155 T:139721881167872 INFO: Pixel Ratio: 1.000000 20:31:56.155 T:139721881167872 INFO: ID:0xe7 Name:1920x1080 Refresh:25.000000 Width:1920 Height:1080 20:31:56.155 T:139721881167872 INFO: Pixel Ratio: 1.000000 20:31:56.155 T:139721881167872 INFO: ID:0xe8 Name:1920x1080 Refresh:24.000000 Width:1920 Height:1080 20:31:56.155 T:139721881167872 INFO: Pixel Ratio: 1.000000 20:31:56.155 T:139721881167872 INFO: ID:0xea Name:1920x1080 Refresh:29.970100 Width:1920 Height:1080 20:31:56.155 T:139721881167872 INFO: Pixel Ratio: 1.000000 20:31:56.155 T:139721881167872 INFO: ID:0xeb Name:1920x1080 Refresh:23.976080 Width:1920 Height:1080 20:31:56.155 T:139721881167872 INFO: Pixel Ratio: 1.000000 20:31:56.155 T:139721881167872 INFO: ID:0xe4 Name:1920x1080i Refresh:30.000000 Width:1920 Height:1080 20:31:56.155 T:139721881167872 INFO: Pixel Ratio: 1.000000 20:31:56.155 T:139721881167872 INFO: ID:0xe5 Name:1920x1080i Refresh:25.000000 Width:1920 Height:1080 20:31:56.155 T:139721881167872 INFO: Pixel Ratio: 1.000000 20:31:56.155 T:139721881167872 INFO: ID:0xe9 Name:1920x1080i Refresh:29.970100 Width:1920 Height:1080 20:31:56.155 T:139721881167872 INFO: Pixel Ratio: 1.000000 20:31:56.155 T:139721881167872 INFO: ID:0xec Name:1680x1050 Refresh:59.883251 Width:1680 Height:1050 20:31:56.155 T:139721881167872 INFO: Pixel Ratio: 1.111111 20:31:56.155 T:139721881167872 INFO: ID:0xed Name:1280x1024 Refresh:75.024673 Width:1280 Height:1024 20:31:56.155 T:139721881167872 INFO: Pixel Ratio: 1.422222 20:31:56.155 T:139721881167872 INFO: ID:0xee Name:1280x1024 Refresh:60.019741 Width:1280 Height:1024 20:31:56.155 T:139721881167872 INFO: Pixel Ratio: 1.422222 20:31:56.155 T:139721881167872 INFO: ID:0xef Name:1440x900 Refresh:74.984428 Width:1440 Height:900 20:31:56.155 T:139721881167872 INFO: Pixel Ratio: 1.111111 20:31:56.155 T:139721881167872 INFO: ID:0xf0 Name:1440x900 Refresh:59.901459 Width:1440 Height:900 20:31:56.155 T:139721881167872 INFO: Pixel Ratio: 1.111111 20:31:56.156 T:139721881167872 INFO: ID:0xf1 Name:1280x960 Refresh:60.000000 Width:1280 Height:960 20:31:56.156 T:139721881167872 INFO: Pixel Ratio: 1.333333 20:31:56.156 T:139721881167872 INFO: ID:0xf2 Name:1360x768 Refresh:60.015160 Width:1360 Height:768 20:31:56.156 T:139721881167872 INFO: Pixel Ratio: 1.003922 20:31:56.156 T:139721881167872 INFO: ID:0xf3 Name:1280x800 Refresh:59.909550 Width:1280 Height:800 20:31:56.156 T:139721881167872 INFO: Pixel Ratio: 1.111111 20:31:56.156 T:139721881167872 INFO: ID:0xf4 Name:1152x864 Refresh:75.000000 Width:1152 Height:864 20:31:56.156 T:139721881167872 INFO: Pixel Ratio: 1.333333 20:31:56.156 T:139721881167872 INFO: ID:0xf5 Name:1280x720 Refresh:60.000000 Width:1280 Height:720 20:31:56.156 T:139721881167872 INFO: Pixel Ratio: 1.000000 20:31:56.156 T:139721881167872 INFO: ID:0xf6 Name:1280x720 Refresh:50.000000 Width:1280 Height:720 20:31:56.156 T:139721881167872 INFO: Pixel Ratio: 1.000000 20:31:56.156 T:139721881167872 INFO: ID:0xf7 Name:1280x720 Refresh:59.940201 Width:1280 Height:720 20:31:56.156 T:139721881167872 INFO: Pixel Ratio: 1.000000 20:31:56.156 T:139721881167872 INFO: ID:0xf8 Name:1024x768 Refresh:75.076218 Width:1024 Height:768 20:31:56.156 T:139721881167872 INFO: Pixel Ratio: 1.333333 20:31:56.156 T:139721881167872 INFO: ID:0xf9 Name:1024x768 Refresh:70.069359 Width:1024 Height:768 20:31:56.156 T:139721881167872 INFO: Pixel Ratio: 1.333333 20:31:56.156 T:139721881167872 INFO: ID:0xfa Name:1024x768 Refresh:60.003841 Width:1024 Height:768 20:31:56.156 T:139721881167872 INFO: Pixel Ratio: 1.333333 20:31:56.156 T:139721881167872 INFO: ID:0xfb Name:832x624 Refresh:74.551270 Width:832 Height:624 20:31:56.156 T:139721881167872 INFO: Pixel Ratio: 1.333333 20:31:56.156 T:139721881167872 INFO: ID:0xfc Name:800x600 Refresh:72.187569 Width:800 Height:600 20:31:56.156 T:139721881167872 INFO: Pixel Ratio: 1.333333 20:31:56.156 T:139721881167872 INFO: ID:0xfd Name:800x600 Refresh:75.000000 Width:800 Height:600 20:31:56.156 T:139721881167872 INFO: Pixel Ratio: 1.333333 20:31:56.156 T:139721881167872 INFO: ID:0x47 Name:800x600 Refresh:60.316540 Width:800 Height:600 20:31:56.156 T:139721881167872 INFO: Pixel Ratio: 1.333333 20:31:56.156 T:139721881167872 INFO: ID:0xfe Name:800x600 Refresh:59.950260 Width:800 Height:600 20:31:56.156 T:139721881167872 INFO: Pixel Ratio: 1.333333 20:31:56.156 T:139721881167872 INFO: ID:0xff Name:720x576 Refresh:50.000000 Width:720 Height:576 20:31:56.156 T:139721881167872 INFO: Pixel Ratio: 1.422222 20:31:56.156 T:139721881167872 INFO: ID:0x100 Name:720x480 Refresh:60.000000 Width:720 Height:480 20:31:56.156 T:139721881167872 INFO: Pixel Ratio: 1.185185 20:31:56.156 T:139721881167872 INFO: ID:0x101 Name:720x480 Refresh:59.940060 Width:720 Height:480 20:31:56.156 T:139721881167872 INFO: Pixel Ratio: 1.185185 20:31:56.156 T:139721881167872 INFO: ID:0x102 Name:640x480 Refresh:75.000000 Width:640 Height:480 20:31:56.156 T:139721881167872 INFO: Pixel Ratio: 1.333333 20:31:56.156 T:139721881167872 INFO: ID:0x103 Name:640x480 Refresh:72.808800 Width:640 Height:480 20:31:56.156 T:139721881167872 INFO: Pixel Ratio: 1.333333 20:31:56.156 T:139721881167872 INFO: ID:0x104 Name:640x480 Refresh:66.666672 Width:640 Height:480 20:31:56.156 T:139721881167872 INFO: Pixel Ratio: 1.333333 20:31:56.156 T:139721881167872 INFO: ID:0x105 Name:640x480 Refresh:60.000000 Width:640 Height:480 20:31:56.157 T:139721881167872 INFO: Pixel Ratio: 1.333333 20:31:56.157 T:139721881167872 INFO: ID:0x106 Name:640x480 Refresh:59.940479 Width:640 Height:480 20:31:56.157 T:139721881167872 INFO: Pixel Ratio: 1.333333 20:31:56.157 T:139721881167872 INFO: ID:0x107 Name:720x400 Refresh:70.081657 Width:720 Height:400 20:31:56.157 T:139721881167872 INFO: Pixel Ratio: 0.987654 20:31:56.157 T:139721881167872 NOTICE: Checking resolution 16 20:31:56.327 T:139721881167872 DEBUG: Window Manager Name: Openbox 20:31:56.749 T:139721881167872 NOTICE: Using visual 0x20 20:31:56.755 T:139721881167872 INFO: GL: Maximum texture width: 8192 20:31:56.755 T:139721881167872 DEBUG: EGL_EXTENSIONS: EGL_CHROMIUM_sync_control EGL_EXT_create_context_robustness EGL_EXT_image_dma_buf_import EGL_KHR_create_context EGL_KHR_fence_sync EGL_KHR_get_all_proc_addresses EGL_KHR_gl_renderbuffer_image EGL_KHR_gl_texture_2D_image EGL_KHR_gl_texture_cubemap_image EGL_KHR_image EGL_KHR_image_base EGL_KHR_image_pixmap EGL_KHR_reusable_sync EGL_KHR_surfaceless_context EGL_KHR_wait_sync EGL_MESA_configless_context EGL_MESA_drm_image EGL_MESA_image_dma_buf_export EGL_NOK_swap_region EGL_NOK_texture_from_pixmap EGL_NV_post_sub_buffer EGL_WL_bind_wayland_display 20:31:56.755 T:139721881167872 NOTICE: GL_VENDOR = Intel Open Source Technology Center 20:31:56.755 T:139721881167872 NOTICE: GL_RENDERER = Mesa DRI Intel(R) Bay Trail 20:31:56.755 T:139721881167872 NOTICE: GL_VERSION = 3.0 Mesa 12.0.1 20:31:56.755 T:139721881167872 NOTICE: GL_SHADING_LANGUAGE_VERSION = 1.30 20:31:56.755 T:139721881167872 NOTICE: GL_EXTENSIONS = GL_ARB_multisample GL_EXT_abgr GL_EXT_bgra GL_EXT_blend_color GL_EXT_blend_minmax GL_EXT_blend_subtract GL_EXT_copy_texture GL_EXT_polygon_offset GL_EXT_subtexture GL_EXT_texture_object GL_EXT_vertex_array GL_EXT_compiled_vertex_array GL_EXT_texture GL_EXT_texture3D GL_IBM_rasterpos_clip GL_ARB_point_parameters GL_EXT_draw_range_elements GL_EXT_packed_pixels GL_EXT_point_parameters GL_EXT_rescale_normal GL_EXT_separate_specular_color GL_EXT_texture_edge_clamp GL_SGIS_generate_mipmap GL_SGIS_texture_border_clamp GL_SGIS_texture_edge_clamp GL_SGIS_texture_lod GL_ARB_framebuffer_sRGB GL_ARB_multitexture GL_EXT_framebuffer_sRGB GL_IBM_multimode_draw_arrays GL_IBM_texture_mirrored_repeat GL_3DFX_texture_compression_FXT1 GL_ARB_texture_cube_map GL_ARB_texture_env_add GL_ARB_transpose_matrix GL_EXT_blend_func_separate GL_EXT_fog_coord GL_EXT_multi_draw_arrays GL_EXT_secondary_color GL_EXT_texture_env_add GL_EXT_texture_filter_anisotropic GL_EXT_texture_lod_bias GL_INGR_blend_func_separate GL_NV_blend_square GL_NV_light_max_exponent GL_NV_texgen_reflection GL_NV_texture_env_combine4 GL_S3_s3tc GL_SUN_multi_draw_arrays GL_ARB_texture_border_clamp GL_ARB_texture_compression GL_EXT_framebuffer_object GL_EXT_texture_env_combine GL_EXT_texture_env_dot3 GL_MESA_window_pos GL_NV_packed_depth_stencil GL_NV_texture_rectangle GL_ARB_depth_texture GL_ARB_occlusion_query GL_ARB_shadow GL_ARB_texture_env_combine GL_ARB_texture_env_crossbar GL_ARB_texture_env_dot3 GL_ARB_texture_mirrored_repeat GL_ARB_window_pos GL_EXT_stencil_two_side GL_EXT_texture_cube_map GL_NV_depth_clamp GL_APPLE_packed_pixels GL_APPLE_vertex_array_object GL_ARB_draw_buffers GL_ARB_fragment_program GL_ARB_fragment_shader GL_ARB_shader_objects GL_ARB_vertex_program GL_ARB_vertex_shader GL_ATI_draw_buffers GL_ATI_texture_env_combine3 GL_ATI_texture_float GL_EXT_shadow_funcs GL_EXT_stencil_wrap GL_MESA_pack_invert GL_NV_primitive_restart GL_ARB_depth_clamp GL_ARB_fragment_program_shadow GL_ARB_half_float_pixel GL_ARB_occlusion_query2 GL_ARB_point_sprite GL_ARB_shading_language_100 GL_ARB_sync GL_ARB_texture_non_power_of_two GL_ARB_vertex_buffer_object GL_ATI_blend_equation_separate GL_EXT_blend_equation_separate GL_OES_read_format GL_ARB_color_buffer_float GL_ARB_pixel_buffer_object GL_ARB_texture_compression_rgtc GL_ARB_texture_float GL_ARB_texture_rectangle GL_EXT_packed_float GL_EXT_pixel_buffer_object GL_EXT_texture_compression_dxt1 GL_EXT_texture_compression_rgtc GL_EXT_texture_rectangle GL_EXT_texture_sRGB GL_EXT_texture_shared_exponent GL_ARB_framebuffer_object GL_EXT_framebuffer_blit GL_EXT_framebuffer_multisample GL_EXT_packed_depth_stencil GL_APPLE_object_purgeable GL_ARB_vertex_array_object GL_ATI_separate_stencil GL_EXT_draw_buffers2 GL_EXT_draw_instanced GL_EXT_gpu_program_parameters GL_EXT_texture_array GL_EXT_texture_integer GL_EXT_texture_sRGB_decode GL_EXT_timer_query GL_OES_EGL_image GL_AMD_performance_monitor GL_ARB_copy_buffer GL_ARB_depth_buffer_float GL_ARB_draw_instanced GL_ARB_half_float_vertex GL_ARB_instanced_arrays GL_ARB_map_buffer_range GL_ARB_texture_rg GL_ARB_texture_swizzle GL_ARB_vertex_array_bgra GL_EXT_texture_swizzle GL_EXT_vertex_array_bgra GL_NV_conditional_render GL_AMD_conservative_depth GL_AMD_draw_buffers_blend GL_AMD_seamless_cubemap_per_texture GL_ARB_ES2_compatibility GL_ARB_blend_func_extended GL_ARB_debug_output GL_ARB_draw_buffers_blend GL_ARB_draw_elements_base_vertex GL_ARB_explicit_attrib_location GL_ARB_fragment_coord_conventions GL_ARB_provoking_vertex GL_ARB_sample_shading GL_ARB_sampler_objects GL_ARB_seamless_cube_map GL_ARB_shader_texture_lod GL_ARB_texture_cube_map_array GL_ARB_texture_gather GL_ARB_texture_multisample GL_ARB_texture_query_lod GL_ARB_texture_rgb10_a2ui GL_ARB_uniform_buffer_object GL_ARB_vertex_type_2_10_10_10_rev GL_EXT_provoking_vertex GL_EXT_texture_snorm GL_MESA_texture_signed_rgba GL_NV_texture_barrier GL_ARB_get_program_binary GL_ARB_robustness GL_ARB_separate_shader_objects GL_ARB_shader_bit_encoding GL_ARB_texture_compression_bptc GL_ARB_timer_query GL_ARB_transform_feedback2 GL_ARB_transform_feedback3 GL_ANGLE_texture_compression_dxt3 GL_ANGLE_texture_compression_dxt5 GL_ARB_compressed_texture_pixel_storage GL_ARB_conservative_depth GL_ARB_internalformat_query GL_ARB_map_buffer_alignment GL_ARB_shader_atomic_counters GL_ARB_shader_image_load_store GL_ARB_shading_language_420pack GL_ARB_shading_language_packing GL_ARB_texture_storage GL_ARB_transform_feedback_instanced GL_EXT_framebuffer_multisample_blit_scaled GL_EXT_transform_feedback GL_AMD_shader_trinary_minmax GL_ARB_ES3_compatibility GL_ARB_arrays_of_arrays GL_ARB_clear_buffer_object GL_ARB_copy_image GL_ARB_explicit_uniform_location GL_ARB_framebuffer_no_attachments GL_ARB_invalidate_subdata GL_ARB_program_interface_query GL_ARB_robust_buffer_access_behavior GL_ARB_shader_image_size GL_ARB_shader_storage_buffer_object GL_ARB_texture_query_levels GL_ARB_texture_storage_multisample GL_ARB_texture_view GL_ARB_vertex_attrib_binding GL_KHR_debug GL_KHR_robustness GL_ARB_buffer_storage GL_ARB_clear_texture GL_ARB_internalformat_query2 GL_ARB_multi_bind GL_ARB_seamless_cubemap_per_texture GL_ARB_shader_draw_parameters GL_ARB_texture_mirror_clamp_to_edge GL_ARB_vertex_type_10f_11f_11f_rev GL_EXT_shader_integer_mix GL_INTEL_performance_query GL_ARB_clip_control GL_ARB_conditional_render_inverted GL_ARB_cull_distance GL_ARB_derivative_control GL_ARB_get_texture_sub_image GL_ARB_pipeline_statistics_query GL_ARB_shader_texture_image_samples GL_ARB_texture_barrier GL_EXT_polygon_offset_clamp GL_KHR_context_flush_control GL_KHR_robust_buffer_access_behavior GL_ARB_shader_clock GL_EXT_shader_samples_identical 20:31:56.756 T:139721881167872 INFO: GL: Maximum texture width: 8192 20:31:56.940 T:139721881167872 INFO: GL: Enabling VSYNC 20:31:56.951 T:139721881167872 INFO: load keymapping 20:31:57.013 T:139721881167872 INFO: Loading special://xbmc/system/keymaps/appcommand.xml 20:31:57.023 T:139721881167872 INFO: Loading special://xbmc/system/keymaps/customcontroller.AppleRemote.xml 20:31:57.027 T:139721881167872 INFO: Loading special://xbmc/system/keymaps/customcontroller.Harmony.xml 20:31:57.031 T:139721881167872 INFO: Loading special://xbmc/system/keymaps/gamepad.xml 20:31:57.039 T:139721881167872 INFO: Loading special://xbmc/system/keymaps/joystick.xml 20:31:57.042 T:139721881167872 INFO: Loading special://xbmc/system/keymaps/keyboard.xml 20:31:57.051 T:139721881167872 INFO: Loading special://xbmc/system/keymaps/mouse.xml 20:31:57.052 T:139721881167872 INFO: Loading special://xbmc/system/keymaps/remote.xml 20:31:57.059 T:139721881167872 INFO: Loading special://xbmc/system/keymaps/touchscreen.xml 20:31:57.257 T:139721881167872 INFO: Loading special://masterprofile/keymaps/keymap.xml 20:31:57.271 T:139721881167872 INFO: Loading special://profile/keymaps/keymap.xml 20:31:57.272 T:139721881167872 INFO: Loading special://xbmc/system/Lircmap.xml 20:31:57.279 T:139721881167872 INFO: * Adding remote mapping for device 'mceusb' 20:31:57.279 T:139721881167872 INFO: * Adding remote mapping for device 'XboxDVDDongle' 20:31:57.279 T:139721881167872 INFO: * Adding remote mapping for device 'Microsoft_Xbox' 20:31:57.279 T:139721881167872 INFO: * Adding remote mapping for device 'PinnacleSysPCTVRemote' 20:31:57.279 T:139721881167872 INFO: * Adding remote mapping for device 'anysee' 20:31:57.279 T:139721881167872 INFO: * Adding remote mapping for device 'iMON-PAD' 20:31:57.279 T:139721881167872 INFO: * Adding remote mapping for device 'Antec_Veris_RM200' 20:31:57.279 T:139721881167872 INFO: * Adding remote mapping for device 'MCE_via_iMON' 20:31:57.279 T:139721881167872 INFO: * Adding remote mapping for device 'TwinHanRemote' 20:31:57.279 T:139721881167872 INFO: * Adding remote mapping for device 'linux-input-layer' 20:31:57.279 T:139721881167872 INFO: * Linking remote mapping for 'linux-input-layer' to 'cx23885_remote' 20:31:57.279 T:139721881167872 INFO: * Adding remote mapping for device 'mediacenter' 20:31:57.279 T:139721881167872 INFO: * Adding remote mapping for device 'devinput' 20:31:57.280 T:139721881167872 DEBUG: CButtonTranslator::Load - no userdata Lircmap.xml found, skipping 20:31:57.280 T:139721881167872 INFO: GUI format 1280x1024, Display 1280x1024@ 60.02 - Full Screen 20:31:57.280 T:139721881167872 DEBUG: guilib: Fill viewport on change for solving rendering passes 20:31:57.280 T:139721881167872 INFO: CLangInfo: loading resource.language.de_de language information... 20:31:57.308 T:139721881167872 DEBUG: trying to set locale to de_DE.UTF-8 20:31:57.623 T:139721881167872 INFO: global locale set to C 20:31:57.623 T:139721881167872 INFO: CLangInfo: loading resource.language.de_de language strings... 20:31:57.674 T:139721881167872 DEBUG: LocalizeStrings: loaded 3768 strings from file resource://resource.language.de_de/strings.po 20:31:57.716 T:139721881167872 DEBUG: POParser: id:24096 was recently re-used in the English string file, which is not yet changed in the translated file. Using the English string instead 20:31:57.719 T:139721881167872 DEBUG: LocalizeStrings: loaded 7 strings from file resource://resource.language.en_gb/strings.po 20:31:57.760 T:139721881167872 DEBUG: LocalizeStrings: loaded 1 strings from file /opt/Kodi17/share/kodi/addons/audiodecoder.fluidsynth/resources/language/English/strings.po 20:31:57.783 T:139721881167872 DEBUG: LocalizeStrings: loaded 1 strings from file /opt/Kodi17/share/kodi/addons/audiodecoder.timidity/resources/language/English/strings.po 20:31:57.804 T:139721881167872 DEBUG: LocalizeStrings: loaded 1 strings from file /opt/Kodi17/share/kodi/addons/audioencoder.flac/resources/language/English/strings.po 20:31:57.805 T:139721881167872 DEBUG: LocalizeStrings: loaded 6 strings from file /opt/Kodi17/share/kodi/addons/audioencoder.lame/resources/language/English/strings.po 20:31:57.806 T:139721881167872 DEBUG: LocalizeStrings: loaded 6 strings from file /opt/Kodi17/share/kodi/addons/audioencoder.vorbis/resources/language/English/strings.po 20:31:57.818 T:139721881167872 DEBUG: LocalizeStrings: loaded 1 strings from file /opt/Kodi17/share/kodi/addons/audioencoder.xbmc.builtin.aac/resources/language/English/strings.po 20:31:57.819 T:139721881167872 DEBUG: LocalizeStrings: loaded 1 strings from file /opt/Kodi17/share/kodi/addons/audioencoder.xbmc.builtin.wma/resources/language/English/strings.po 20:31:57.820 T:139721881167872 DEBUG: LocalizeStrings: loaded 18 strings from file /opt/Kodi17/share/kodi/addons/game.controller.default/resources/language/resource.language.en_gb/strings.po 20:31:57.838 T:139721881167872 DEBUG: LocalizeStrings: loaded 7 strings from file /opt/Kodi17/.kodi/addons/inputstream.adaptive/resources/language/resource.language.en_gb/strings.po 20:31:57.871 T:139721881167872 DEBUG: LocalizeStrings: loaded 11 strings from file /opt/Kodi17/.kodi/addons/metadata.album.universal/resources/language/German/strings.po 20:31:57.904 T:139721881167872 DEBUG: LocalizeStrings: loaded 2 strings from file /opt/Kodi17/.kodi/addons/metadata.album.universal/resources/language/English/strings.po 20:31:57.952 T:139721881167872 DEBUG: LocalizeStrings: loaded 23 strings from file /opt/Kodi17/.kodi/addons/metadata.artists.universal/resources/language/German/strings.po 20:31:58.068 T:139721881167872 DEBUG: LocalizeStrings: loaded 3 strings from file /opt/Kodi17/.kodi/addons/metadata.artists.universal/resources/language/English/strings.po 20:31:58.204 T:139721881167872 DEBUG: LocalizeStrings: loaded 7 strings from file /opt/Kodi17/.kodi/addons/metadata.themoviedb.org/resources/language/German/strings.po 20:31:58.214 T:139721881167872 DEBUG: LocalizeStrings: loaded 0 strings from file /opt/Kodi17/.kodi/addons/metadata.themoviedb.org/resources/language/English/strings.po 20:31:58.215 T:139721881167872 DEBUG: LocalizeStrings: loaded 5 strings from file /opt/Kodi17/.kodi/addons/metadata.tvdb.com/resources/language/German/strings.po 20:31:58.223 T:139721881167872 DEBUG: LocalizeStrings: loaded 2 strings from file /opt/Kodi17/.kodi/addons/metadata.tvdb.com/resources/language/English/strings.po 20:31:58.287 T:139721881167872 DEBUG: LocalizeStrings: loaded 8 strings from file /opt/Kodi17/share/kodi/addons/pvr.argustv/resources/language/resource.language.de_de/strings.po 20:31:58.299 T:139721881167872 DEBUG: LocalizeStrings: loaded 0 strings from file /opt/Kodi17/share/kodi/addons/pvr.argustv/resources/language/resource.language.en_gb/strings.po 20:31:58.321 T:139721881167872 DEBUG: LocalizeStrings: loaded 67 strings from file /opt/Kodi17/share/kodi/addons/pvr.dvblink/resources/language/resource.language.de_de/strings.po 20:31:58.322 T:139721881167872 DEBUG: LocalizeStrings: loaded 0 strings from file /opt/Kodi17/share/kodi/addons/pvr.dvblink/resources/language/resource.language.en_gb/strings.po 20:31:58.350 T:139721881167872 DEBUG: LocalizeStrings: loaded 34 strings from file /opt/Kodi17/share/kodi/addons/pvr.dvbviewer/resources/language/resource.language.de_de/strings.po 20:31:58.356 T:139721881167872 DEBUG: LocalizeStrings: loaded 0 strings from file /opt/Kodi17/share/kodi/addons/pvr.dvbviewer/resources/language/resource.language.en_gb/strings.po 20:31:58.360 T:139721881167872 DEBUG: LocalizeStrings: loaded 3 strings from file /opt/Kodi17/share/kodi/addons/pvr.filmon/resources/language/resource.language.de_de/strings.po 20:31:58.360 T:139721881167872 DEBUG: LocalizeStrings: loaded 0 strings from file /opt/Kodi17/share/kodi/addons/pvr.filmon/resources/language/resource.language.en_gb/strings.po 20:31:58.367 T:139721881167872 DEBUG: LocalizeStrings: loaded 5 strings from file /opt/Kodi17/share/kodi/addons/pvr.hdhomerun/resources/language/resource.language.de_de/strings.po 20:31:58.368 T:139721881167872 DEBUG: LocalizeStrings: loaded 0 strings from file /opt/Kodi17/share/kodi/addons/pvr.hdhomerun/resources/language/resource.language.en_gb/strings.po 20:31:58.537 T:139721881167872 DEBUG: LocalizeStrings: loaded 68 strings from file /opt/Kodi17/share/kodi/addons/pvr.hts/resources/language/resource.language.de_de/strings.po 20:31:58.572 T:139721881167872 DEBUG: LocalizeStrings: loaded 6 strings from file /opt/Kodi17/share/kodi/addons/pvr.hts/resources/language/resource.language.en_gb/strings.po 20:31:58.615 T:139721881167872 DEBUG: LocalizeStrings: loaded 22 strings from file /opt/Kodi17/share/kodi/addons/pvr.iptvsimple/resources/language/resource.language.de_de/strings.po 20:31:58.616 T:139721881167872 DEBUG: LocalizeStrings: loaded 0 strings from file /opt/Kodi17/share/kodi/addons/pvr.iptvsimple/resources/language/resource.language.en_gb/strings.po 20:31:58.648 T:139721881167872 DEBUG: LocalizeStrings: loaded 71 strings from file /opt/Kodi17/share/kodi/addons/pvr.mediaportal.tvserver/resources/language/resource.language.de_de/strings.po 20:31:58.659 T:139721881167872 DEBUG: LocalizeStrings: loaded 0 strings from file /opt/Kodi17/share/kodi/addons/pvr.mediaportal.tvserver/resources/language/resource.language.en_gb/strings.po 20:31:58.667 T:139721881167872 DEBUG: LocalizeStrings: loaded 92 strings from file /opt/Kodi17/share/kodi/addons/pvr.mythtv/resources/language/resource.language.de_de/strings.po 20:31:58.669 T:139721881167872 DEBUG: LocalizeStrings: loaded 9 strings from file /opt/Kodi17/share/kodi/addons/pvr.mythtv/resources/language/resource.language.en_gb/strings.po 20:31:58.673 T:139721881167872 DEBUG: LocalizeStrings: loaded 28 strings from file /opt/Kodi17/share/kodi/addons/pvr.nextpvr/resources/language/resource.language.de_de/strings.po 20:31:58.673 T:139721881167872 DEBUG: LocalizeStrings: loaded 0 strings from file /opt/Kodi17/share/kodi/addons/pvr.nextpvr/resources/language/resource.language.en_gb/strings.po 20:31:58.689 T:139721881167872 DEBUG: LocalizeStrings: loaded 2 strings from file /opt/Kodi17/share/kodi/addons/pvr.njoy/resources/language/resource.language.de_de/strings.po 20:31:58.689 T:139721881167872 DEBUG: LocalizeStrings: loaded 0 strings from file /opt/Kodi17/share/kodi/addons/pvr.njoy/resources/language/resource.language.en_gb/strings.po 20:31:58.692 T:139721881167872 DEBUG: LocalizeStrings: loaded 2 strings from file /opt/Kodi17/share/kodi/addons/pvr.octonet/resources/language/resource.language.en_gb/strings.po 20:31:58.707 T:139721881167872 DEBUG: LocalizeStrings: loaded 8 strings from file /opt/Kodi17/share/kodi/addons/pvr.pctv/resources/language/resource.language.de_de/strings.po 20:31:58.716 T:139721881167872 DEBUG: LocalizeStrings: loaded 0 strings from file /opt/Kodi17/share/kodi/addons/pvr.pctv/resources/language/resource.language.en_gb/strings.po 20:31:58.732 T:139721881167872 DEBUG: LocalizeStrings: loaded 43 strings from file /opt/Kodi17/share/kodi/addons/pvr.stalker/resources/language/resource.language.de_de/strings.po 20:31:58.733 T:139721881167872 DEBUG: LocalizeStrings: loaded 0 strings from file /opt/Kodi17/share/kodi/addons/pvr.stalker/resources/language/resource.language.en_gb/strings.po 20:31:58.753 T:139721881167872 DEBUG: LocalizeStrings: loaded 15 strings from file /opt/Kodi17/share/kodi/addons/pvr.vbox/resources/language/resource.language.de_de/strings.po 20:31:58.754 T:139721881167872 DEBUG: LocalizeStrings: loaded 10 strings from file /opt/Kodi17/share/kodi/addons/pvr.vbox/resources/language/resource.language.en_gb/strings.po 20:31:58.770 T:139721881167872 DEBUG: LocalizeStrings: loaded 69 strings from file /opt/Kodi17/share/kodi/addons/pvr.vdr.vnsi/resources/language/resource.language.de_de/strings.po 20:31:58.775 T:139721881167872 DEBUG: LocalizeStrings: loaded 1 strings from file /opt/Kodi17/share/kodi/addons/pvr.vdr.vnsi/resources/language/resource.language.en_gb/strings.po 20:31:58.776 T:139721881167872 DEBUG: LocalizeStrings: loaded 27 strings from file /opt/Kodi17/share/kodi/addons/pvr.vuplus/resources/language/resource.language.de_de/strings.po 20:31:58.776 T:139721881167872 DEBUG: LocalizeStrings: loaded 0 strings from file /opt/Kodi17/share/kodi/addons/pvr.vuplus/resources/language/resource.language.en_gb/strings.po 20:31:58.787 T:139721881167872 DEBUG: LocalizeStrings: loaded 70 strings from file /opt/Kodi17/share/kodi/addons/pvr.wmc/resources/language/resource.language.de_de/strings.po 20:31:58.795 T:139721881167872 DEBUG: LocalizeStrings: loaded 0 strings from file /opt/Kodi17/share/kodi/addons/pvr.wmc/resources/language/resource.language.en_gb/strings.po 20:31:58.819 T:139721881167872 DEBUG: LocalizeStrings: loaded 8 strings from file /opt/Kodi17/share/kodi/addons/screensaver.biogenesis/resources/language/English/strings.po 20:31:58.824 T:139721881167872 DEBUG: LocalizeStrings: loaded 16 strings from file /opt/Kodi17/share/kodi/addons/screensaver.greynetic/resources/language/English/strings.po 20:31:58.839 T:139721881167872 DEBUG: LocalizeStrings: loaded 2 strings from file /opt/Kodi17/share/kodi/addons/screensaver.matrixtrails/resources/language/English/strings.po 20:31:58.851 T:139721881167872 DEBUG: LocalizeStrings: loaded 10 strings from file /opt/Kodi17/share/kodi/addons/screensaver.pingpong/resources/language/English/strings.po 20:31:58.863 T:139721881167872 DEBUG: LocalizeStrings: loaded 9 strings from file /opt/Kodi17/share/kodi/addons/screensaver.rsxs.cyclone/resources/language/English/strings.po 20:31:58.894 T:139721881167872 DEBUG: LocalizeStrings: loaded 13 strings from file /opt/Kodi17/share/kodi/addons/screensaver.rsxs.euphoria/resources/language/English/strings.po 20:31:58.899 T:139721881167872 DEBUG: LocalizeStrings: loaded 7 strings from file /opt/Kodi17/share/kodi/addons/screensaver.rsxs.fieldlines/resources/language/English/strings.po 20:31:58.904 T:139721881167872 DEBUG: LocalizeStrings: loaded 9 strings from file /opt/Kodi17/share/kodi/addons/screensaver.rsxs.flocks/resources/language/English/strings.po 20:31:58.906 T:139721881167872 DEBUG: LocalizeStrings: loaded 14 strings from file /opt/Kodi17/share/kodi/addons/screensaver.rsxs.flux/resources/language/English/strings.po 20:31:58.907 T:139721881167872 DEBUG: LocalizeStrings: loaded 9 strings from file /opt/Kodi17/share/kodi/addons/screensaver.rsxs.helios/resources/language/English/strings.po 20:31:58.908 T:139721881167872 DEBUG: LocalizeStrings: loaded 7 strings from file /opt/Kodi17/share/kodi/addons/screensaver.rsxs.hyperspace/resources/language/English/strings.po 20:31:58.909 T:139721881167872 DEBUG: LocalizeStrings: loaded 7 strings from file /opt/Kodi17/share/kodi/addons/screensaver.rsxs.lattice/resources/language/English/strings.po 20:31:58.910 T:139721881167872 DEBUG: LocalizeStrings: loaded 4 strings from file /opt/Kodi17/share/kodi/addons/screensaver.rsxs.plasma/resources/language/English/strings.po 20:31:58.923 T:139721881167872 DEBUG: LocalizeStrings: loaded 12 strings from file /opt/Kodi17/share/kodi/addons/screensaver.rsxs.skyrocket/resources/language/English/strings.po 20:31:58.935 T:139721881167872 DEBUG: LocalizeStrings: loaded 12 strings from file /opt/Kodi17/share/kodi/addons/screensaver.rsxs.solarwinds/resources/language/English/strings.po 20:31:58.936 T:139721881167872 DEBUG: LocalizeStrings: loaded 6 strings from file /opt/Kodi17/share/kodi/addons/screensaver.stars/resources/language/English/strings.po 20:31:58.937 T:139721881167872 DEBUG: LocalizeStrings: loaded 1 strings from file /opt/Kodi17/share/kodi/addons/screensaver.xbmc.builtin.dim/resources/language/resource.language.de_de/strings.po 20:31:58.938 T:139721881167872 DEBUG: LocalizeStrings: loaded 0 strings from file /opt/Kodi17/share/kodi/addons/screensaver.xbmc.builtin.dim/resources/language/resource.language.en_gb/strings.po 20:31:58.966 T:139721881167872 DEBUG: LocalizeStrings: loaded 21 strings from file /opt/Kodi17/.kodi/addons/service.xbmc.versioncheck/resources/language/German/strings.po 20:31:58.979 T:139721881167872 DEBUG: LocalizeStrings: loaded 0 strings from file /opt/Kodi17/.kodi/addons/service.xbmc.versioncheck/resources/language/English/strings.po 20:31:59.026 T:139721881167872 DEBUG: LocalizeStrings: loaded 12 strings from file /opt/Kodi17/share/kodi/addons/visualization.fishbmc/resources/language/German/strings.po 20:31:59.037 T:139721881167872 DEBUG: LocalizeStrings: loaded 0 strings from file /opt/Kodi17/share/kodi/addons/visualization.fishbmc/resources/language/English/strings.po 20:31:59.052 T:139721881167872 DEBUG: LocalizeStrings: loaded 15 strings from file /opt/Kodi17/share/kodi/addons/visualization.spectrum/resources/language/German/strings.po 20:31:59.056 T:139721881167872 DEBUG: LocalizeStrings: loaded 0 strings from file /opt/Kodi17/share/kodi/addons/visualization.spectrum/resources/language/English/strings.po 20:31:59.085 T:139721881167872 DEBUG: LocalizeStrings: loaded 3 strings from file /opt/Kodi17/.kodi/addons/script.favourites/resources/language/German/strings.po 20:31:59.098 T:139721881167872 DEBUG: LocalizeStrings: loaded 0 strings from file /opt/Kodi17/.kodi/addons/script.favourites/resources/language/English/strings.po 20:31:59.155 T:139721881167872 DEBUG: LocalizeStrings: loaded 115 strings from file /opt/Kodi17/.kodi/addons/script.skinshortcuts/resources/language/German/strings.po 20:31:59.169 T:139721881167872 DEBUG: LocalizeStrings: loaded 5 strings from file /opt/Kodi17/.kodi/addons/script.skinshortcuts/resources/language/English/strings.po 20:31:59.179 T:139721881167872 DEBUG: LocalizeStrings: loaded 4 strings from file /opt/Kodi17/.kodi/addons/weather.yahoo/resources/language/German/strings.po 20:31:59.187 T:139721881167872 DEBUG: LocalizeStrings: loaded 2 strings from file /opt/Kodi17/.kodi/addons/weather.yahoo/resources/language/English/strings.po 20:31:59.200 T:139721881167872 DEBUG: LocalizeStrings: loaded 10 strings from file /opt/Kodi17/.kodi/addons/plugin.video.nick_de/resources/language/German/strings.xml 20:31:59.209 T:139721881167872 DEBUG: LocalizeStrings: loaded 1 strings from file /opt/Kodi17/.kodi/addons/plugin.video.nick_de/resources/language/English/strings.xml 20:31:59.230 T:139721881167872 DEBUG: LocalizeStrings: loaded 130 strings from file /opt/Kodi17/.kodi/addons/script.maps.browser/resources/language/English/strings.po 20:31:59.240 T:139721881167872 DEBUG: LocalizeStrings: loaded 7 strings from file /opt/Kodi17/.kodi/addons/script.common.plugin.cache/resources/language/English/strings.xml 20:31:59.253 T:139721881167872 DEBUG: LocalizeStrings: loaded 18 strings from file /opt/Kodi17/.kodi/addons/script.module.simple.downloader/resources/language/English/strings.xml 20:31:59.303 T:139721881167872 DEBUG: LocalizeStrings: loaded 1 strings from file /opt/Kodi17/.kodi/addons/plugin.video.bild_bundesliga/resources/language/German/strings.xml 20:31:59.317 T:139721881167872 DEBUG: LocalizeStrings: loaded 0 strings from file /opt/Kodi17/.kodi/addons/plugin.video.bild_bundesliga/resources/language/English/strings.xml 20:31:59.332 T:139721881167872 DEBUG: LocalizeStrings: loaded 2 strings from file /opt/Kodi17/.kodi/addons/plugin.video.f4mTester/resources/language/english/strings.xml 20:31:59.346 T:139721881167872 DEBUG: LocalizeStrings: loaded 107 strings from file /opt/Kodi17/.kodi/addons/plugin.video.youtube/resources/language/German/strings.po 20:31:59.347 T:139721881167872 DEBUG: POParser: id:30200 was recently re-used in the English string file, which is not yet changed in the translated file. Using the English string instead 20:31:59.347 T:139721881167872 DEBUG: LocalizeStrings: loaded 52 strings from file /opt/Kodi17/.kodi/addons/plugin.video.youtube/resources/language/English/strings.po 20:31:59.376 T:139721881167872 DEBUG: LocalizeStrings: loaded 81 strings from file /opt/Kodi17/.kodi/addons/plugin.video.SportsDevil/resources/language/German/strings.xml 20:31:59.383 T:139721881167872 DEBUG: LocalizeStrings: loaded 0 strings from file /opt/Kodi17/.kodi/addons/plugin.video.SportsDevil/resources/language/English/strings.xml 20:31:59.425 T:139721881167872 DEBUG: LocalizeStrings: loaded 42 strings from file /opt/Kodi17/.kodi/addons/script.module.urlresolver/resources/language/German/strings.po 20:31:59.426 T:139721881167872 DEBUG: LocalizeStrings: loaded 0 strings from file /opt/Kodi17/.kodi/addons/script.module.urlresolver/resources/language/English/strings.po 20:31:59.473 T:139721881167872 DEBUG: LocalizeStrings: loaded 1 strings from file /opt/Kodi17/.kodi/addons/plugin.video.sky_mediathek/resources/language/German/strings.xml 20:31:59.474 T:139721881167872 DEBUG: LocalizeStrings: loaded 0 strings from file /opt/Kodi17/.kodi/addons/plugin.video.sky_mediathek/resources/language/English/strings.xml 20:31:59.509 T:139721881167872 DEBUG: LocalizeStrings: loaded 11 strings from file /opt/Kodi17/.kodi/addons/plugin.video.kika_de/resources/language/German/strings.xml 20:31:59.510 T:139721881167872 DEBUG: LocalizeStrings: loaded 1 strings from file /opt/Kodi17/.kodi/addons/plugin.video.kika_de/resources/language/English/strings.xml 20:31:59.527 T:139721881167872 DEBUG: LocalizeStrings: loaded 32 strings from file /opt/Kodi17/.kodi/addons/script.module.libmediathek3/resources/language/German/strings.po 20:31:59.530 T:139721881167872 DEBUG: LocalizeStrings: loaded 0 strings from file /opt/Kodi17/.kodi/addons/script.module.libmediathek3/resources/language/English/strings.po 20:31:59.547 T:139721881167872 DEBUG: LocalizeStrings: loaded 10 strings from file /opt/Kodi17/.kodi/addons/script.module.libmdr/resources/language/German/strings.po 20:31:59.557 T:139721881167872 DEBUG: LocalizeStrings: loaded 0 strings from file /opt/Kodi17/.kodi/addons/script.module.libmdr/resources/language/English/strings.po 20:31:59.572 T:139721881167872 DEBUG: LoadMappings - loaded node "Motorola Nyxboard Hybrid" 20:31:59.573 T:139721881167872 DEBUG: LoadMappings - loaded node "CEC Adapter" 20:31:59.573 T:139721881167872 DEBUG: LoadMappings - loaded node "Pulse-Eight CEC Adapter" 20:31:59.573 T:139721881167872 DEBUG: LoadMappings - loaded node "iMON HID device" 20:31:59.573 T:139721881167872 DEBUG: LoadMappings - loaded node "WETEK Play remote" 20:31:59.573 T:139721881167872 DEBUG: LoadMappings - loaded node "" 20:31:59.573 T:139721881167872 DEBUG: CPeripheralBusUSB - initialised udev monitor 20:31:59.573 T:139721881167872 DEBUG: SECTION:LoadDLL(libcec.so.4) 20:31:59.593 T:139721881167872 DEBUG: Loading: libcec.so.4 20:31:59.594 T:139721881167872 ERROR: Unable to load libcec.so.4, reason: libcec.so.4: cannot open shared object file: No such file or directory 20:31:59.594 T:139721881167872 DEBUG: Dll libcec.so.4 was not found in path 20:31:59.597 T:139721881167872 DEBUG: Add-on bus: Registering add-on peripheral.joystick 20:31:59.597 T:139721881167872 DEBUG: PERIPHERAL - CreateAddon - creating peripheral add-on instance 'Joystick Support' 20:31:59.597 T:139721881167872 DEBUG: ADDON: Dll Initializing - Joystick Support 20:31:59.597 T:139721881167872 DEBUG: SECTION:LoadDLL(/share/CACHEDEV1_DATA/.qpkg/Kodi17/opt/lib/kodi/addons/peripheral.joystick/peripheral.joystick.so.1.2.1) 20:31:59.597 T:139721881167872 DEBUG: Loading: /share/CACHEDEV1_DATA/.qpkg/Kodi17/opt/lib/kodi/addons/peripheral.joystick/peripheral.joystick.so.1.2.1 20:31:59.623 T:139721881167872 DEBUG: AddOnLog: Joystick Support: Loaded 14 joystick families with 97 total joysticks 20:31:59.624 T:139721881167872 DEBUG: Calling TransferSettings for: Joystick Support 20:31:59.624 T:139721233647360 DEBUG: Thread PeripBusUSBUdev start, auto delete: false 20:31:59.624 T:139720893875968 DEBUG: Thread PeripBusCEC start, auto delete: false 20:31:59.624 T:139720893875968 DEBUG: Thread PeripBusCEC 139720893875968 terminating 20:31:59.624 T:139720885483264 DEBUG: Thread PeripBusAddon start, auto delete: false 20:31:59.624 T:139721881167872 DEBUG: SECTION:LoadDLL(libcurl.so.4) 20:31:59.625 T:139721881167872 DEBUG: Loading: libcurl.so.4 20:31:59.626 T:139720893875968 DEBUG: Thread PeripEventScanner start, auto delete: false 20:31:59.976 T:139721471506176 NOTICE: Running database version Addons27 20:31:59.976 T:139721471506176 DEBUG: Initialize, updating databases... 20:31:59.996 T:139721471506176 NOTICE: Running database version ViewModes6 20:31:59.997 T:139721471506176 NOTICE: Running database version Textures13 20:32:00.081 T:139721471506176 NOTICE: Running database version MyMusic60 20:32:00.093 T:139721471506176 NOTICE: Running database version MyVideos107 20:32:00.110 T:139721471506176 NOTICE: Running database version TV29 20:32:00.111 T:139721471506176 NOTICE: Running database version Epg11 20:32:00.112 T:139721471506176 DEBUG: Initialize, updating databases... DONE 20:32:00.120 T:139721881167872 NOTICE: start dvd mediatype detection 20:32:00.120 T:139721881093888 DEBUG: Thread DetectDVDMedia start, auto delete: false 20:32:00.120 T:139721881093888 DEBUG: Compiled with libcdio Version 0.83 20:32:00.120 T:139721881167872 DEBUG: DPMS: supported power-saving modes: SUSPEND OFF STANDBY 20:32:00.121 T:139721881093888 DEBUG: Thread DetectDVDMedia 139721881093888 terminating 20:32:00.141 T:139721490417408 DEBUG: CAnnouncementManager - Announcement: OnClear from xbmc 20:32:00.141 T:139721490417408 DEBUG: GOT ANNOUNCEMENT, type: 2, from xbmc, message OnClear 20:32:00.157 T:139721881167872 INFO: Unloading old skin ... 20:32:00.203 T:139721881167872 INFO: load skin from: /opt/Kodi17/share/kodi/addons/skin.estuary (version: 1.9.10) 20:32:00.203 T:139721881167872 INFO: load fonts for skin... 20:32:00.283 T:139721881167872 INFO: Loading fonts from /opt/Kodi17/share/kodi/addons/skin.estuary/xml/Font.xml 20:32:00.718 T:139721881167872 DEBUG: LocalizeStrings: loaded 131 strings from file /opt/Kodi17/share/kodi/addons/skin.estuary/language/resource.language.de_de/strings.po 20:32:00.719 T:139721881167872 DEBUG: LocalizeStrings: loaded 1 strings from file /opt/Kodi17/share/kodi/addons/skin.estuary/language/resource.language.en_gb/strings.po 20:32:00.719 T:139721881167872 INFO: Loading skin includes from /opt/Kodi17/share/kodi/addons/skin.estuary/xml/Includes.xml 20:32:00.998 T:139721881167872 INFO: load new skin... 20:32:00.999 T:139721881167872 INFO: Loading user windows, path /opt/Kodi17/share/kodi/addons/skin.estuary/xml 20:32:01.136 T:139721881167872 DEBUG: Load Skin XML: 137.45ms 20:32:01.136 T:139721881167872 INFO: initialize new skin... 20:32:01.136 T:139721881167872 DEBUG: guilib: Fill viewport on change for solving rendering passes 20:32:01.136 T:139721881167872 INFO: Loading skin file: Pointer.xml, load type: LOAD_ON_GUI_INIT 20:32:01.137 T:139721881167872 DEBUG: Load Pointer.xml: 0.82ms 20:32:01.149 T:139721881167872 DEBUG: OpenBundle - Opened bundle /opt/Kodi17/share/kodi/addons/skin.estuary/media/Textures.xbt 20:32:01.158 T:139721881167872 DEBUG: Alloc resources: 22.30ms (0.88 ms skin load) 20:32:01.158 T:139721881167872 INFO: Loading skin file: DialogVolumeBar.xml, load type: LOAD_ON_GUI_INIT 20:32:01.160 T:139721881167872 DEBUG: Load DialogVolumeBar.xml: 1.67ms 20:32:01.160 T:139721881167872 DEBUG: Alloc resources: 1.82ms (1.73 ms skin load) 20:32:01.160 T:139721881167872 INFO: Loading skin file: DialogNotification.xml, load type: LOAD_ON_GUI_INIT 20:32:01.173 T:139721881167872 DEBUG: Load DialogNotification.xml: 12.91ms 20:32:01.173 T:139721881167872 DEBUG: Alloc resources: 12.98ms (12.97 ms skin load) 20:32:01.173 T:139721881167872 INFO: Loading skin file: DialogSeekBar.xml, load type: LOAD_ON_GUI_INIT 20:32:01.201 T:139721881167872 DEBUG: Load DialogSeekBar.xml: 27.71ms 20:32:01.201 T:139721881167872 DEBUG: Alloc resources: 28.06ms (27.78 ms skin load) 20:32:01.201 T:139721881167872 INFO: Loading skin file: DialogBusy.xml, load type: LOAD_ON_GUI_INIT 20:32:01.203 T:139721881167872 DEBUG: Load DialogBusy.xml: 1.58ms 20:32:01.203 T:139721881167872 DEBUG: Alloc resources: 1.64ms (1.63 ms skin load) 20:32:01.203 T:139721881167872 INFO: Loading skin file: DialogExtendedProgressBar.xml, load type: LOAD_ON_GUI_INIT 20:32:01.205 T:139721881167872 DEBUG: Load DialogExtendedProgressBar.xml: 2.11ms 20:32:01.205 T:139721881167872 DEBUG: Alloc resources: 2.17ms (2.16 ms skin load) 20:32:01.205 T:139721881167872 DEBUG: Alloc resources: 0.00ms (0.00 ms skin load) 20:32:01.206 T:139721881167872 INFO: Loading resource://resource.uisounds.kodi/sounds.xml 20:32:01.369 T:139721881167872 INFO: skin loaded... 20:32:01.369 T:139721881167872 DEBUG: Activating window ID: 12997 20:32:01.369 T:139721881167872 DEBUG: ------ Window Init () ------ 20:32:01.369 T:139721881167872 DEBUG: Alloc resources: 0.00ms (0.00 ms skin load) 20:32:01.369 T:139721881167872 INFO: load splash image: /opt/Kodi17/share/kodi/media/Splash.png 20:32:01.388 T:139721881167872 DEBUG: JSONRPC: JSON schema type definition references an unknown type Setting.Details.Setting 20:32:01.388 T:139721881167872 WARNING: JSONRPC: Could not parse type "Setting.Details.SettingList" 20:32:01.388 T:139721881167872 INFO: JSONRPC: Adding type "Setting.Details.SettingList" to list of incomplete definitions (waiting for "Setting.Details.Setting") 20:32:01.389 T:139721881167872 INFO: JSONRPC: Resolving incomplete types/methods referencing Setting.Details.Setting 20:32:01.419 T:139721881167872 INFO: JSONRPC v8.0.0: Successfully initialized 20:32:01.420 T:139721881167872 DEBUG: ADDON: Starting service addons. 20:32:01.423 T:139720651486976 DEBUG: Thread LanguageInvoker start, auto delete: false 20:32:01.423 T:139720651486976 DEBUG: Previous line repeats 1 times. 20:32:01.423 T:139720651486976 INFO: initializing python engine. 20:32:01.423 T:139721881167872 DEBUG: Activating window ID: 12999 20:32:01.423 T:139720643094272 INFO: initializing python engine. 20:32:01.423 T:139721881167872 DEBUG: ------ Window Init (Startup.xml) ------ 20:32:01.423 T:139721881167872 INFO: Loading skin file: Startup.xml, load type: LOAD_EVERY_TIME 20:32:01.424 T:139721881167872 DEBUG: Load Startup.xml: 0.36ms 20:32:01.424 T:139721881167872 DEBUG: Alloc resources: 0.40ms (0.40 ms skin load) 20:32:01.424 T:139721881167872 DEBUG: Activating window ID: 10000 20:32:01.424 T:139721881167872 DEBUG: ------ Window Deinit (Startup.xml) ------ 20:32:01.424 T:139721881167872 DEBUG: ------ Window Init (Home.xml) ------ 20:32:01.424 T:139721881167872 INFO: Loading skin file: Home.xml, load type: KEEP_IN_MEMORY 20:32:01.656 T:139720651486976 DEBUG: CPythonInvoker(0, /opt/Kodi17/.kodi/addons/service.xbmc.versioncheck/service.py): start processing 20:32:01.656 T:139720643094272 DEBUG: CPythonInvoker(1, /opt/Kodi17/.kodi/addons/script.module.simple.downloader/default.py): start processing 20:32:01.734 T:139720651486976 DEBUG: -->Python Interpreter Initialized<-- 20:32:01.734 T:139720651486976 DEBUG: CPythonInvoker(0, /opt/Kodi17/.kodi/addons/service.xbmc.versioncheck/service.py): the source file to load is "/opt/Kodi17/.kodi/addons/service.xbmc.versioncheck/service.py" 20:32:01.748 T:139720651486976 DEBUG: CPythonInvoker(0, /opt/Kodi17/.kodi/addons/service.xbmc.versioncheck/service.py): setting the Python path to /opt/Kodi17/.kodi/addons/service.xbmc.versioncheck:/usr/lib/python2.7:/usr/lib/python2.7/plat-x86_64-linux-gnu:/usr/lib/python2.7/lib-tk:/usr/lib/python2.7/lib-old:/usr/lib/python2.7/lib-dynload:/usr/local/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages/PILcompat:/usr/lib/python2.7/dist-packages/gtk-2.0 20:32:01.748 T:139720651486976 DEBUG: CPythonInvoker(0, /opt/Kodi17/.kodi/addons/service.xbmc.versioncheck/service.py): entering source directory /opt/Kodi17/.kodi/addons/service.xbmc.versioncheck 20:32:01.748 T:139720643094272 DEBUG: -->Python Interpreter Initialized<-- 20:32:01.748 T:139720643094272 DEBUG: CPythonInvoker(1, /opt/Kodi17/.kodi/addons/script.module.simple.downloader/default.py): the source file to load is "/opt/Kodi17/.kodi/addons/script.module.simple.downloader/default.py" 20:32:01.748 T:139720643094272 DEBUG: CPythonInvoker(1, /opt/Kodi17/.kodi/addons/script.module.simple.downloader/default.py): setting the Python path to /opt/Kodi17/.kodi/addons/script.module.simple.downloader:/opt/Kodi17/.kodi/addons/script.common.plugin.cache/lib:/opt/Kodi17/.kodi/addons/script.module.parsedom/lib:/usr/lib/python2.7:/usr/lib/python2.7/plat-x86_64-linux-gnu:/usr/lib/python2.7/lib-tk:/usr/lib/python2.7/lib-old:/usr/lib/python2.7/lib-dynload:/usr/local/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages/PILcompat:/usr/lib/python2.7/dist-packages/gtk-2.0 20:32:01.748 T:139720643094272 DEBUG: CPythonInvoker(1, /opt/Kodi17/.kodi/addons/script.module.simple.downloader/default.py): entering source directory /opt/Kodi17/.kodi/addons/script.module.simple.downloader 20:32:01.748 T:139720651486976 DEBUG: CPythonInvoker(0, /opt/Kodi17/.kodi/addons/service.xbmc.versioncheck/service.py): instantiating addon using automatically obtained id of "service.xbmc.versioncheck" dependent on version 2.1.0 of the xbmc.python api 20:32:01.921 T:139720643094272 DEBUG: CPythonInvoker(1, /opt/Kodi17/.kodi/addons/script.module.simple.downloader/default.py): instantiating addon using automatically obtained id of "script.module.simple.downloader" dependent on version 2.1.0 of the xbmc.python api 20:32:02.056 T:139720651486976 DEBUG: Version Check: Version 0.3.23 started 20:32:02.245 T:139721881167872 DEBUG: Load Home.xml: 819.41ms 20:32:02.245 T:139721881167872 DEBUG: CDirectoryProvider[library://video/movies/]: refreshing.. 20:32:02.245 T:139721881167872 DEBUG: CDirectoryProvider[special://skin/playlists/inprogress_movies.xsp]: refreshing.. 20:32:02.245 T:139721881167872 DEBUG: CDirectoryProvider[special://skin/playlists/recent_unwatched_movies.xsp]: refreshing.. 20:32:02.245 T:139721881167872 DEBUG: CDirectoryProvider[special://skin/playlists/unwatched_movies.xsp]: refreshing.. 20:32:02.245 T:139720624047872 DEBUG: Thread JobWorker start, auto delete: true 20:32:02.245 T:139721881167872 DEBUG: CDirectoryProvider[special://skin/playlists/random_movies.xsp]: refreshing.. 20:32:02.245 T:139721881167872 DEBUG: CDirectoryProvider[videodb://movies/genres/]: refreshing.. 20:32:02.245 T:139721881167872 DEBUG: CDirectoryProvider[videodb://movies/sets/]: refreshing.. 20:32:02.245 T:139721881167872 DEBUG: CDirectoryProvider[library://video/tvshows/]: refreshing.. 20:32:02.245 T:139721881167872 DEBUG: CDirectoryProvider[videodb://inprogresstvshows]: refreshing.. 20:32:02.245 T:139721881167872 DEBUG: CDirectoryProvider[special://skin/playlists/recent_unwatched_episodes.xsp]: refreshing.. 20:32:02.245 T:139721881167872 DEBUG: CDirectoryProvider[special://skin/playlists/unwatched_tvshows.xsp]: refreshing.. 20:32:02.245 T:139721881167872 DEBUG: CDirectoryProvider[videodb://tvshows/genres/]: refreshing.. 20:32:02.245 T:139721881167872 DEBUG: CDirectoryProvider[videodb://tvshows/studios/]: refreshing.. 20:32:02.245 T:139721881167872 DEBUG: CDirectoryProvider[library://music/]: refreshing.. 20:32:02.245 T:139720615655168 DEBUG: Thread JobWorker start, auto delete: true 20:32:02.245 T:139721881167872 DEBUG: CDirectoryProvider[musicdb://recentlyplayedalbums]: refreshing.. 20:32:02.245 T:139721881167872 DEBUG: CDirectoryProvider[musicdb://recentlyaddedalbums/]: refreshing.. 20:32:02.245 T:139721881167872 DEBUG: CDirectoryProvider[special://skin/playlists/random_albums.xsp]: refreshing.. 20:32:02.245 T:139721881167872 DEBUG: CDirectoryProvider[special://skin/playlists/random_artists.xsp]: refreshing.. 20:32:02.246 T:139721881167872 DEBUG: CDirectoryProvider[special://skin/playlists/unplayed_albums.xsp]: refreshing.. 20:32:02.246 T:139721881167872 DEBUG: CDirectoryProvider[special://skin/playlists/mostplayed_albums.xsp]: refreshing.. 20:32:02.246 T:139721881167872 DEBUG: CDirectoryProvider[addons://sources/video/]: refreshing.. 20:32:02.246 T:139721881167872 DEBUG: CDirectoryProvider[addons://sources/audio/]: refreshing.. 20:32:02.246 T:139721881167872 DEBUG: CDirectoryProvider[addons://sources/executable/]: refreshing.. 20:32:02.246 T:139721881167872 DEBUG: CDirectoryProvider[addons://sources/image/]: refreshing.. 20:32:02.251 T:139721881167872 DEBUG: CDirectoryProvider[library://video/]: refreshing.. 20:32:02.251 T:139721881167872 DEBUG: CDirectoryProvider[sources://video/]: refreshing.. 20:32:02.251 T:139721881167872 DEBUG: CDirectoryProvider[special://videoplaylists/]: refreshing.. 20:32:02.251 T:139721881167872 DEBUG: CDirectoryProvider[favourites://]: refreshing.. 20:32:02.251 T:139721881167872 DEBUG: CDirectoryProvider[sources://pictures/]: refreshing.. 20:32:02.406 T:139720624047872 DEBUG: RunQuery took 112 ms for 0 items query: select * from movie_view WHERE (movie_view.idFile IN (SELECT DISTINCT idFile FROM bookmark WHERE type = 1)) 20:32:02.534 T:139721881167872 DEBUG: Alloc resources: 1109.65ms (820.62 ms skin load) 20:32:02.537 T:139721881167872 DEBUG: ContextMenuManager: addon menus reloaded. 20:32:02.538 T:139721881167872 INFO: removing tempfiles 20:32:02.538 T:139721881167872 NOTICE: UpdateLibraries: Starting video library startup scan 20:32:02.538 T:139721881167872 NOTICE: UpdateLibraries: Starting music library startup scan 20:32:02.541 T:139721881167872 DEBUG: ADDON: Starting service addons. 20:32:02.541 T:139720607000320 DEBUG: Thread MusicInfoScanner start, auto delete: false 20:32:02.541 T:139721490417408 DEBUG: CAnnouncementManager - Announcement: OnScanStarted from xbmc 20:32:02.541 T:139721490417408 DEBUG: GOT ANNOUNCEMENT, type: 32, from xbmc, message OnScanStarted 20:32:02.544 T:139720598607616 DEBUG: Thread LanguageInvoker start, auto delete: false 20:32:02.545 T:139720598607616 INFO: initializing python engine. 20:32:02.545 T:139720598607616 DEBUG: CPythonInvoker(2, /opt/Kodi17/.kodi/addons/script.common.plugin.cache/default.py): start processing 20:32:02.582 T:139720643094272 INFO: CPythonInvoker(1, /opt/Kodi17/.kodi/addons/script.module.simple.downloader/default.py): script successfully run 20:32:02.586 T:139720252192512 DEBUG: Thread LanguageInvoker start, auto delete: false 20:32:02.586 T:139720252192512 INFO: initializing python engine. 20:32:02.586 T:139720252192512 DEBUG: CPythonInvoker(3, /opt/Kodi17/.kodi/addons/plugin.video.youtube/resources/lib/startup.py): start processing 20:32:02.592 T:139720643094272 INFO: Python script stopped 20:32:02.592 T:139720643094272 DEBUG: Thread LanguageInvoker 139720643094272 terminating 20:32:02.606 T:139720598607616 DEBUG: -->Python Interpreter Initialized<-- 20:32:02.606 T:139720598607616 DEBUG: CPythonInvoker(2, /opt/Kodi17/.kodi/addons/script.common.plugin.cache/default.py): the source file to load is "/opt/Kodi17/.kodi/addons/script.common.plugin.cache/default.py" 20:32:02.608 T:139720643094272 DEBUG: Thread LanguageInvoker start, auto delete: false 20:32:02.608 T:139720643094272 INFO: initializing python engine. 20:32:02.608 T:139720643094272 DEBUG: CPythonInvoker(4, /opt/Kodi17/.kodi/addons/plugin.video.SportsDevil/service/proxy_service.py): start processing 20:32:02.609 T:139720598607616 DEBUG: CPythonInvoker(2, /opt/Kodi17/.kodi/addons/script.common.plugin.cache/default.py): setting the Python path to /opt/Kodi17/.kodi/addons/script.common.plugin.cache:/usr/lib/python2.7:/usr/lib/python2.7/plat-x86_64-linux-gnu:/usr/lib/python2.7/lib-tk:/usr/lib/python2.7/lib-old:/usr/lib/python2.7/lib-dynload:/usr/local/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages/PILcompat:/usr/lib/python2.7/dist-packages/gtk-2.0 20:32:02.609 T:139720598607616 DEBUG: CPythonInvoker(2, /opt/Kodi17/.kodi/addons/script.common.plugin.cache/default.py): entering source directory /opt/Kodi17/.kodi/addons/script.common.plugin.cache 20:32:02.615 T:139721881167872 DEBUG: CRepositoryUpdater: previous update at 21.08.2017 11:11:21, next at 22.08.2017 11:11:21 20:32:02.615 T:139721881167872 NOTICE: initialize done 20:32:02.615 T:139721881167872 NOTICE: Running the application... 20:32:02.615 T:139721881167872 DEBUG: no profile autoexec.py (/opt/Kodi17/.kodi/userdata/autoexec.py) found, skipping 20:32:02.615 T:139721881167872 DEBUG: NetworkMessage - Starting network services 20:32:02.616 T:139720598607616 DEBUG: CPythonInvoker(2, /opt/Kodi17/.kodi/addons/script.common.plugin.cache/default.py): instantiating addon using automatically obtained id of "script.common.plugin.cache" dependent on version 2.24.0 of the xbmc.python api 20:32:02.618 T:139721881167872 DEBUG: CZeroconfAvahi::clientCallback: client is up and running 20:32:02.618 T:139721881167872 NOTICE: starting zeroconf publishing 20:32:02.619 T:139720243799808 DEBUG: Thread Timer start, auto delete: false 20:32:02.656 T:139721881167872 NOTICE: CWebServer[8189]: Started 20:32:02.656 T:139721881167872 NOTICE: starting upnp client 20:32:02.658 T:139721881167872 ERROR: JSONRPC Server: Failed to connect to sdpd 20:32:02.658 T:139719891470080 DEBUG: Thread EventServer start, auto delete: false 20:32:02.658 T:139719891470080 NOTICE: ES: Starting UDP Event server on port 9777 20:32:02.662 T:139721881167872 INFO: JSONRPC Server: Successfully initialized 20:32:02.662 T:139721881167872 DEBUG: ------ Window Init (DialogExtendedProgressBar.xml) ------ 20:32:02.662 T:139721881167872 DEBUG: Window DialogExtendedProgressBar.xml was already loaded 20:32:02.662 T:139721881167872 DEBUG: Alloc resources: 0.01ms 20:32:02.662 T:139719581103872 DEBUG: Thread TCPServer start, auto delete: false 20:32:02.662 T:139719891470080 NOTICE: UDP: Listening on port 9777 (ipv6 : false) 20:32:02.662 T:139720607000320 DEBUG: Process - Starting scan 20:32:02.664 T:139719572711168 DEBUG: Thread MusicFileCounter start, auto delete: false 20:32:02.683 T:139720252192512 DEBUG: -->Python Interpreter Initialized<-- 20:32:02.683 T:139720252192512 DEBUG: CPythonInvoker(3, /opt/Kodi17/.kodi/addons/plugin.video.youtube/resources/lib/startup.py): the source file to load is "/opt/Kodi17/.kodi/addons/plugin.video.youtube/resources/lib/startup.py" 20:32:02.700 T:139720252192512 DEBUG: CPythonInvoker(3, /opt/Kodi17/.kodi/addons/plugin.video.youtube/resources/lib/startup.py): setting the Python path to /opt/Kodi17/.kodi/addons/plugin.video.youtube/resources/lib:/opt/Kodi17/.kodi/addons/script.module.requests/lib:/usr/lib/python2.7:/usr/lib/python2.7/plat-x86_64-linux-gnu:/usr/lib/python2.7/lib-tk:/usr/lib/python2.7/lib-old:/usr/lib/python2.7/lib-dynload:/usr/local/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages/PILcompat:/usr/lib/python2.7/dist-packages/gtk-2.0 20:32:02.700 T:139720252192512 DEBUG: CPythonInvoker(3, /opt/Kodi17/.kodi/addons/plugin.video.youtube/resources/lib/startup.py): entering source directory /opt/Kodi17/.kodi/addons/plugin.video.youtube/resources/lib 20:32:02.816 T:139720624047872 DEBUG: RunQuery took 359 ms for 18 items query: select * from movie_view WHERE ((movie_view.playCount IS NULL OR movie_view.playCount = 0)) 20:32:02.816 T:139720615655168 DEBUG: RunQuery took 537 ms for 18 items query: select * from movie_view WHERE ((movie_view.dateAdded > '1900-01-01')) AND ((movie_view.playCount IS NULL OR movie_view.playCount < 1)) 20:32:02.838 T:139720252192512 DEBUG: CPythonInvoker(3, /opt/Kodi17/.kodi/addons/plugin.video.youtube/resources/lib/startup.py): instantiating addon using automatically obtained id of "plugin.video.youtube" dependent on version 2.19.0 of the xbmc.python api 20:32:03.070 T:139720643094272 DEBUG: -->Python Interpreter Initialized<-- 20:32:03.070 T:139720643094272 DEBUG: CPythonInvoker(4, /opt/Kodi17/.kodi/addons/plugin.video.SportsDevil/service/proxy_service.py): the source file to load is "/opt/Kodi17/.kodi/addons/plugin.video.SportsDevil/service/proxy_service.py" 20:32:03.140 T:139720624047872 DEBUG: RunQuery took 4 ms for 18 items query: select * from movie_view 20:32:03.141 T:139721471506176 DEBUG: RunQuery took 2 ms for 2 items query: select * from movie_view JOIN sets ON movie_view.idSet = sets.idSet ORDER BY sets.idSet 20:32:03.207 T:139720615655168 DEBUG: RunQuery took 73 ms for 11 items query: SELECT genre.genre_id, genre.name, count(1), count(files.playCount) FROM genre JOIN genre_link ON genre.genre_id = genre_link.genre_id JOIN movie_view ON genre_link.media_id = movie_view.idMovie AND genre_link.media_type='movie' JOIN files ON files.idFile = movie_view.idFile GROUP BY genre.genre_id 20:32:03.235 T:139721881167872 DEBUG: ------ Window Init () ------ 20:32:03.235 T:139721881167872 DEBUG: Alloc resources: 0.00ms (0.00 ms skin load) 20:32:03.313 T:139719866291968 DEBUG: Thread JobWorker start, auto delete: true 20:32:03.519 T:139721471506176 DEBUG: RunQuery took 285 ms for 5 items query: SELECT * FROM tvshow_view WHERE ((tvshow_view.watchedcount = 0)) AND ((tvshow_view.totalCount > 0)) 20:32:03.519 T:139720624047872 DEBUG: RunQuery took 359 ms for 3 items query: SELECT * FROM tvshow_view WHERE watchedCount != 0 AND totalCount != watchedCount ORDER BY c00 20:32:03.520 T:139720615655168 DEBUG: RunQuery took 298 ms for 372 items query: select * from episode_view WHERE ((episode_view.dateAdded > '1900-01-01')) AND ((episode_view.playCount IS NULL OR episode_view.playCount < 1)) 20:32:03.860 T:139720624047872 DEBUG: DoWork - took 104 ms to load special://masterprofile/Thumbnails/0/0f460d42.jpg 20:32:04.216 T:139721471506176 DEBUG: RunQuery took 7 ms for 9 items query: SELECT genre.genre_id, genre.name FROM genre JOIN genre_link ON genre.genre_id = genre_link.genre_id JOIN tvshow_view ON genre_link.media_id = tvshow_view.idShow AND genre_link.media_type='tvshow' GROUP BY genre.genre_id 20:32:04.221 T:139720615655168 DEBUG: RunQuery took 6 ms for 7 items query: SELECT studio.studio_id, studio.name FROM studio JOIN studio_link ON studio.studio_id = studio_link.studio_id JOIN tvshow_view ON studio_link.media_id = tvshow_view.idShow AND studio_link.media_type='tvshow' GROUP BY studio.studio_id 20:32:04.222 T:139719866291968 DEBUG: DoWork - took 125 ms to load special://masterprofile/Thumbnails/4/4a501159.jpg 20:32:04.243 T:139721471506176 DEBUG: GetRecentlyAddedAlbums query: SELECT albumview.*, albumartistview.* FROM (SELECT idAlbum FROM album WHERE strAlbum != '' ORDER BY idAlbum DESC LIMIT 25) AS recentalbums JOIN albumview ON albumview.idAlbum = recentalbums.idAlbum JOIN albumartistview ON albumview.idAlbum = albumartistview.idAlbum ORDER BY albumview.idAlbum desc, albumartistview.iOrder 20:32:04.247 T:139720615655168 DEBUG: GetRecentlyPlayedAlbums query: SELECT albumview.*, albumartistview.* FROM (SELECT idAlbum FROM albumview WHERE albumview.lastplayed IS NOT NULL AND albumview.strReleaseType = 'album' ORDER BY albumview.lastplayed DESC LIMIT 25) as playedalbums JOIN albumview ON albumview.idAlbum = playedalbums.idAlbum JOIN albumartistview ON albumview.idAlbum = albumartistview.idAlbum ORDER BY albumview.lastplayed DESC, albumartistview.iorder 20:32:04.565 T:139719866291968 DEBUG: GetAlbumsByWhere query: SELECT albumview.* FROM albumview WHERE albumview.strReleaseType = 'album' 20:32:04.714 T:139719866291968 DEBUG: GetAlbumsByWhere - query took 150 ms 20:32:04.820 T:139720615655168 DEBUG: GetArtistsByWhere query: SELECT artistview.* FROM artistview WHERE ((EXISTS (SELECT 1 FROM song_artist WHERE song_artist.idArtist = artistview.idArtist AND song_artist.idRole = 1) OR EXISTS (SELECT 1 FROM album_artist WHERE album_artist.idArtist = artistview.idArtist)) AND (artistview.strArtist != '')) AND (artistview.strArtist <> 'Verschiedene Interpreten') 20:32:05.071 T:139719866291968 DEBUG: GetAlbumsByWhere query: SELECT albumview.* FROM albumview WHERE (((CAST(albumview.iTimesPlayed as DECIMAL(5,1)) = 0))) AND (albumview.strReleaseType = 'album') 20:32:05.196 T:139719866291968 DEBUG: GetAlbumsByWhere - query took 124 ms 20:32:05.279 T:139720607000320 DEBUG: DoScan Skipping dir '/share/Multimedia/MUSIK/' due to no change 20:32:05.571 T:139720607000320 DEBUG: DoScan Skipping dir '/share/Multimedia/MUSIK/@Recycle/' due to no change 20:32:05.638 T:139720607000320 DEBUG: DoScan Skipping dir '/share/Multimedia/MUSIK/@Recycle/MP3/' due to no change 20:32:05.639 T:139720607000320 DEBUG: DoScan Skipping dir '/share/Multimedia/MUSIK/Playliste/' due to no change 20:32:05.652 T:139720607000320 DEBUG: DoScan Skipping dir '/share/Multimedia/MUSIK/Playliste/Janine 30er/' due to no change 20:32:05.691 T:139719866291968 DEBUG: GetAlbumsByWhere query: SELECT albumview.* FROM albumview WHERE (((CAST(albumview.iTimesPlayed as DECIMAL(5,1)) > 0))) AND (albumview.strReleaseType = 'album') 20:32:05.713 T:139720607000320 DEBUG: DoScan Skipping dir '/share/Multimedia/MUSIK/Playliste/Lenny Mix/' due to no change 20:32:05.724 T:139719866291968 DEBUG: GetAlbumsByWhere - query took 33 ms 20:32:06.014 T:139720607000320 DEBUG: DoScan Skipping dir '/share/Multimedia/MUSIK/Playliste/Markus Bday/' due to no change 20:32:06.188 T:139720607000320 NOTICE: My Music: Scanning for music info using worker thread, operation took 00:03 20:32:06.188 T:139719572711168 DEBUG: Thread MusicFileCounter 139719572711168 terminating 20:32:06.189 T:139720607000320 DEBUG: Process - Finished scan 20:32:06.189 T:139721490417408 DEBUG: CAnnouncementManager - Announcement: OnScanFinished from xbmc 20:32:06.189 T:139721490417408 DEBUG: GOT ANNOUNCEMENT, type: 32, from xbmc, message OnScanFinished 20:32:06.226 T:139720607000320 DEBUG: Thread MusicInfoScanner 139720607000320 terminating 20:32:06.438 T:139719866291968 DEBUG: CMultiPathDirectory::GetDirectory(multipath://special%3a%2f%2fprofile%2fplaylists%2fvideo/special%3a%2f%2fprofile%2fplaylists%2fmixed/) 20:32:06.438 T:139719866291968 DEBUG: Getting Directory (special://profile/playlists/video) 20:32:06.464 T:139719866291968 DEBUG: Getting Directory (special://profile/playlists/mixed) 20:32:06.464 T:139719866291968 DEBUG: CMultiPathDirectory::MergeItems, items = 0 20:32:06.465 T:139719866291968 DEBUG: CFavourites::Load - no system favourites found, skipping 20:32:06.472 T:139721881167872 DEBUG: ------ Window Deinit (DialogExtendedProgressBar.xml) ------ 20:32:06.491 T:139719866291968 WARNING: CreateLoader - unsupported protocol(activatewindow(10025,"smb) in activatewindow(10025,"smb://192.168.178.154/filme/filme/",return).tbn 20:32:06.817 T:139720252192512 DEBUG: [plugin.video.youtube] YouTube settings startup initialization... 20:32:06.817 T:139720643094272 DEBUG: CPythonInvoker(4, /opt/Kodi17/.kodi/addons/plugin.video.SportsDevil/service/proxy_service.py): setting the Python path to /opt/Kodi17/.kodi/addons/plugin.video.SportsDevil/service:/opt/Kodi17/.kodi/addons/script.module.dateutil/lib:/opt/Kodi17/.kodi/addons/script.module.futures/lib:/opt/Kodi17/.kodi/addons/script.module.livestreamer/lib:/opt/Kodi17/.kodi/addons/script.module.requests/lib:/opt/Kodi17/.kodi/addons/script.module.simplejson/lib:/opt/Kodi17/.kodi/addons/script.module.singledispatch/lib:/opt/Kodi17/.kodi/addons/script.module.six/lib:/usr/lib/python2.7:/usr/lib/python2.7/plat-x86_64-linux-gnu:/usr/lib/python2.7/lib-tk:/usr/lib/python2.7/lib-old:/usr/lib/python2.7/lib-dynload:/usr/local/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages/PILcompat:/usr/lib/python2.7/dist-packages/gtk-2.0 20:32:06.817 T:139720643094272 DEBUG: CPythonInvoker(4, /opt/Kodi17/.kodi/addons/plugin.video.SportsDevil/service/proxy_service.py): entering source directory /opt/Kodi17/.kodi/addons/plugin.video.SportsDevil/service 20:32:06.818 T:139720598607616 DEBUG: StorageServer Module loaded RUN 20:32:06.818 T:139720598607616 DEBUG: StorageClient-2.5.4 Starting server 20:32:06.818 T:139720643094272 DEBUG: CPythonInvoker(4, /opt/Kodi17/.kodi/addons/plugin.video.SportsDevil/service/proxy_service.py): instantiating addon using automatically obtained id of "plugin.video.SportsDevil" dependent on version 2.14.0 of the xbmc.python api 20:32:07.051 T:139720615655168 DEBUG: Time to retrieve artists from dataset = 2233 20:32:07.058 T:139720615655168 DEBUG: CRecentlyAddedJob::UpdateMusic() - Running RecentlyAdded home screen update 20:32:07.063 T:139720615655168 DEBUG: GetRecentlyAddedAlbumSongs() query: SELECT songview.*, songartistview.* FROM (SELECT idAlbum FROM album ORDER BY idAlbum DESC LIMIT 10) AS recentalbums JOIN songview ON songview.idAlbum = recentalbums.idAlbum JOIN songartistview ON songview.idSong = songartistview.idSong ORDER BY songview.idAlbum DESC, songview.idSong, songartistview.idRole, songartistview.iOrder 20:32:07.160 T:139720615655168 DEBUG: GetRecentlyAddedAlbums query: SELECT albumview.*, albumartistview.* FROM (SELECT idAlbum FROM album WHERE strAlbum != '' ORDER BY idAlbum DESC LIMIT 10) AS recentalbums JOIN albumview ON albumview.idAlbum = recentalbums.idAlbum JOIN albumartistview ON albumview.idAlbum = albumartistview.idAlbum ORDER BY albumview.idAlbum desc, albumartistview.iOrder 20:32:07.166 T:139720615655168 DEBUG: CRecentlyAddedJob::UpdateVideos() - Running RecentlyAdded home screen update 20:32:07.176 T:139720615655168 DEBUG: RunQuery took 2 ms for 10 items query: select * from movie_view ORDER BY dateAdded desc, idMovie desc LIMIT 10 20:32:07.195 T:139720615655168 DEBUG: RunQuery took 12 ms for 10 items query: select * from episode_view ORDER BY dateAdded desc, idEpisode desc LIMIT 10 20:32:07.208 T:139720615655168 DEBUG: RunQuery took 1 ms for 0 items query: select * from musicvideo_view ORDER BY dateAdded desc, idMVideo desc LIMIT 10 20:32:07.209 T:139720615655168 DEBUG: CRecentlyAddedJob::UpdateTotal() - Running RecentlyAdded home screen update 20:32:07.212 T:139720615655168 DEBUG: GetArtistsByWhere query: SELECT COUNT(DISTINCT artistview.idArtist) FROM artistview WHERE ((EXISTS (SELECT 1 FROM song_artist WHERE song_artist.idArtist = artistview.idArtist AND song_artist.idRole = 1) OR EXISTS (SELECT 1 FROM album_artist WHERE album_artist.idArtist = artistview.idArtist)) AND (artistview.strArtist != '')) AND (artistview.strArtist <> 'Verschiedene Interpreten') 20:32:07.213 T:139720252192512 NOTICE: [plugin.video.youtube] Startup: detected Krypton (Kodi-17.0), setting DASH_SUPPORT_BUILTIN = False, DASH_SUPPORT_ADDON = True 20:32:07.213 T:139720252192512 INFO: CPythonInvoker(3, /opt/Kodi17/.kodi/addons/plugin.video.youtube/resources/lib/startup.py): script successfully run 20:32:07.311 T:139720252192512 INFO: Python script stopped 20:32:07.311 T:139720252192512 DEBUG: Thread LanguageInvoker 139720252192512 terminating 20:32:07.324 T:139721881167872 DEBUG: ------ Window Init (DialogExtendedProgressBar.xml) ------ 20:32:07.324 T:139721881167872 DEBUG: Window DialogExtendedProgressBar.xml was already loaded 20:32:07.324 T:139721881167872 DEBUG: Alloc resources: 0.03ms 20:32:07.329 T:139720615655168 NOTICE: VideoInfoScanner: Starting scan .. 20:32:07.329 T:139721490417408 DEBUG: CAnnouncementManager - Announcement: OnScanStarted from xbmc 20:32:07.329 T:139721490417408 DEBUG: GOT ANNOUNCEMENT, type: 16, from xbmc, message OnScanStarted 20:32:08.344 T:139720651486976 DEBUG: Version Check: Version installed {u'major': 17, u'tag': u'stable', u'minor': 0, u'revision': u'Unknown'} 20:32:08.344 T:139720651486976 DEBUG: Version Check: Version available {u'major': u'17', u'extrainfo': u'final', u'tagversion': u'', u'tag': u'stable', u'addon_support': u'yes', u'minor': u'3', u'revision': u'20170524-147cec4'} 20:32:08.344 T:139720651486976 DEBUG: Version Check: You are running an older minor version 20:32:11.745 T:139719866291968 DEBUG: CZeroconfAvahi::doPublishService identifier: servers.webserver type: _http._tcp name:Kodi (NASJML) port:8189 20:32:11.745 T:139719866291968 DEBUG: CZeroconfAvahi::addService() named: Kodi (NASJML) type: _http._tcp port:8189 20:32:11.775 T:139719866291968 DEBUG: CZeroconfAvahi::doPublishService identifier: servers.jsonrpc-http type: _xbmc-jsonrpc-h._tcp name:Kodi (NASJML) port:8189 20:32:11.775 T:139719866291968 DEBUG: CZeroconfAvahi::addService() named: Kodi (NASJML) type: _xbmc-jsonrpc-h._tcp port:8189 20:32:11.777 T:139719866291968 DEBUG: CZeroconfAvahi::doPublishService identifier: servers.jsonrpc-tpc type: _xbmc-jsonrpc._tcp name:Kodi (NASJML) port:9090 20:32:11.777 T:139719866291968 DEBUG: CZeroconfAvahi::addService() named: Kodi (NASJML) type: _xbmc-jsonrpc._tcp port:9090 20:32:11.779 T:139719866291968 DEBUG: CZeroconfAvahi::doPublishService identifier: servers.eventserver type: _xbmc-events._udp name:Kodi (NASJML) port:9777 20:32:11.779 T:139719866291968 DEBUG: CZeroconfAvahi::addService() named: Kodi (NASJML) type: _xbmc-events._udp port:9777 20:32:11.781 T:139719866291968 INFO: WEATHER: Downloading weather 20:32:11.782 T:139720252192512 DEBUG: Thread LanguageInvoker start, auto delete: false 20:32:11.782 T:139720252192512 INFO: initializing python engine. 20:32:11.782 T:139720252192512 DEBUG: CPythonInvoker(5, /opt/Kodi17/.kodi/addons/weather.yahoo/default.py): start processing 20:32:11.828 T:139720252192512 DEBUG: -->Python Interpreter Initialized<-- 20:32:11.828 T:139720252192512 DEBUG: CPythonInvoker(5, /opt/Kodi17/.kodi/addons/weather.yahoo/default.py): the source file to load is "/opt/Kodi17/.kodi/addons/weather.yahoo/default.py" 20:32:11.829 T:139720252192512 DEBUG: CPythonInvoker(5, /opt/Kodi17/.kodi/addons/weather.yahoo/default.py): setting the Python path to /opt/Kodi17/.kodi/addons/weather.yahoo:/usr/lib/python2.7:/usr/lib/python2.7/plat-x86_64-linux-gnu:/usr/lib/python2.7/lib-tk:/usr/lib/python2.7/lib-old:/usr/lib/python2.7/lib-dynload:/usr/local/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages/PILcompat:/usr/lib/python2.7/dist-packages/gtk-2.0 20:32:11.829 T:139720252192512 DEBUG: CPythonInvoker(5, /opt/Kodi17/.kodi/addons/weather.yahoo/default.py): entering source directory /opt/Kodi17/.kodi/addons/weather.yahoo 20:32:11.829 T:139720252192512 DEBUG: CPythonInvoker(5, /opt/Kodi17/.kodi/addons/weather.yahoo/default.py): instantiating addon using automatically obtained id of "weather.yahoo" dependent on version 2.25.0 of the xbmc.python api 20:32:11.857 T:139720615655168 WARNING: Process directory 'smb://192.168.178.154/filme/filme/' does not exist - skipping scan. 20:32:11.858 T:139721471506176 DEBUG: CRecentlyAddedJob::UpdateMusic() - Running RecentlyAdded home screen update 20:32:11.858 T:139720615655168 WARNING: Process directory 'smb://192.168.178.154/filme/filme/Bad Moms/' does not exist - skipping scan. 20:32:11.859 T:139720615655168 WARNING: Process directory 'smb://192.168.178.154/filme/filme/Bridget Jones' Baby/' does not exist - skipping scan. 20:32:11.860 T:139720615655168 WARNING: Process directory 'smb://192.168.178.154/filme/filme/Die Jones - Spione Von Nebenan/' does not exist - skipping scan. 20:32:11.861 T:139720615655168 WARNING: Process directory 'smb://192.168.178.154/filme/filme/Dirty Grandpa/' does not exist - skipping scan. 20:32:11.862 T:139720615655168 WARNING: Process directory 'smb://192.168.178.154/filme/filme/Feuerwehrmann Sam - Helden im Sturm/' does not exist - skipping scan. 20:32:11.862 T:139720615655168 WARNING: Process directory 'smb://192.168.178.154/filme/filme/Fifty Shades of Grey - Gefährliche Liebe/' does not exist - skipping scan. 20:32:11.863 T:139720615655168 WARNING: Process directory 'smb://192.168.178.154/filme/filme/How to Be Single/' does not exist - skipping scan. 20:32:11.864 T:139720615655168 WARNING: Process directory 'smb://192.168.178.154/filme/filme/La La Land/' does not exist - skipping scan. 20:32:11.865 T:139720615655168 WARNING: Process directory 'smb://192.168.178.154/filme/filme/Mother's Day - Liebe ist kein Kinderspiel/' does not exist - skipping scan. 20:32:11.865 T:139721471506176 DEBUG: GetRecentlyAddedAlbumSongs() query: SELECT songview.*, songartistview.* FROM (SELECT idAlbum FROM album ORDER BY idAlbum DESC LIMIT 10) AS recentalbums JOIN songview ON songview.idAlbum = recentalbums.idAlbum JOIN songartistview ON songview.idSong = songartistview.idSong ORDER BY songview.idAlbum DESC, songview.idSong, songartistview.idRole, songartistview.iOrder 20:32:11.866 T:139720615655168 WARNING: Process directory 'smb://192.168.178.154/filme/filme/Männerhort/' does not exist - skipping scan. 20:32:11.866 T:139720615655168 WARNING: Process directory 'smb://192.168.178.154/filme/filme/Männertag/' does not exist - skipping scan. 20:32:11.867 T:139720615655168 WARNING: Process directory 'smb://192.168.178.154/filme/filme/Nerve/' does not exist - skipping scan. 20:32:11.868 T:139720615655168 WARNING: Process directory 'smb://192.168.178.154/filme/filme/Plötzlich Papa/' does not exist - skipping scan. 20:32:11.869 T:139720615655168 WARNING: Process directory 'smb://192.168.178.154/filme/filme/SMS für Dich/' does not exist - skipping scan. 20:32:11.869 T:139720615655168 WARNING: Process directory 'smb://192.168.178.154/filme/filme/Sausage Party/' does not exist - skipping scan. 20:32:11.870 T:139720615655168 WARNING: Process directory 'smb://192.168.178.154/filme/filme/Störche - Abenteuer Im Anflug/' does not exist - skipping scan. 20:32:11.871 T:139720615655168 WARNING: Process directory 'smb://192.168.178.154/filme/filme/Verborgene Schönheit/' does not exist - skipping scan. 20:32:11.871 T:139720615655168 WARNING: Process directory 'smb://192.168.178.154/filme/filme/Willkommen bei den Hartmanns/' does not exist - skipping scan. 20:32:11.907 T:139721471506176 DEBUG: GetRecentlyAddedAlbums query: SELECT albumview.*, albumartistview.* FROM (SELECT idAlbum FROM album WHERE strAlbum != '' ORDER BY idAlbum DESC LIMIT 10) AS recentalbums JOIN albumview ON albumview.idAlbum = recentalbums.idAlbum JOIN albumartistview ON albumview.idAlbum = albumartistview.idAlbum ORDER BY albumview.idAlbum desc, albumartistview.iOrder 20:32:11.912 T:139721471506176 DEBUG: CRecentlyAddedJob::UpdateTotal() - Running RecentlyAdded home screen update 20:32:11.915 T:139721471506176 DEBUG: GetArtistsByWhere query: SELECT COUNT(DISTINCT artistview.idArtist) FROM artistview WHERE ((EXISTS (SELECT 1 FROM song_artist WHERE song_artist.idArtist = artistview.idArtist AND song_artist.idRole = 1) OR EXISTS (SELECT 1 FROM album_artist WHERE album_artist.idArtist = artistview.idArtist)) AND (artistview.strArtist != '')) AND (artistview.strArtist <> 'Verschiedene Interpreten') 20:32:12.054 T:139720252192512 DEBUG: weather.yahoo: version 4.3.1 started: ['/opt/Kodi17/.kodi/addons/weather.yahoo/default.py', '1'] 20:32:12.083 T:139720252192512 DEBUG: weather.yahoo: weather location: 650437 20:32:12.378 T:139720615655168 DEBUG: VideoInfoScanner: Skipping dir 'smb://nasjml/Filme/Serien/Game of Thrones/' due to no change 20:32:12.389 T:139720615655168 DEBUG: VideoInfoScanner: Skipping dir 'smb://nasjml/Filme/Serien/Super Wings/' due to no change 20:32:12.404 T:139720615655168 DEBUG: VideoInfoScanner: Skipping dir 'smb://nasjml/Filme/Serien/The Hills/' due to no change 20:32:12.476 T:139720615655168 DEBUG: VideoInfoScanner: Skipping dir 'smb://nasjml/Filme/Serien/Feuerwehrmann Sam/' due to no change 20:32:12.502 T:139720615655168 DEBUG: VideoInfoScanner: Skipping dir 'smb://nasjml/Filme/Serien/PAW Patrol/' due to no change 20:32:12.514 T:139720615655168 DEBUG: VideoInfoScanner: Skipping dir 'smb://nasjml/Filme/Serien/The City/' due to no change 20:32:12.524 T:139720615655168 DEBUG: VideoInfoScanner: Skipping dir 'smb://nasjml/Filme/Serien/PJ Masks/' due to no change 20:32:12.531 T:139720615655168 DEBUG: VideoInfoScanner: Skipping dir 'smb://nasjml/Filme/Serien/Secrets & Lies/' due to no change 20:32:12.671 T:139720235407104 DEBUG: CZeroconfAvahi::groupCallback: Service successfully established 20:32:12.697 T:139720615655168 DEBUG: Previous line repeats 3 times. 20:32:12.697 T:139720615655168 WARNING: Process directory 'smb://nasjml/filme/serien/' does not exist - skipping scan. 20:32:12.731 T:139720252192512 DEBUG: weather.yahoo: forecast data: {"query":{"count":1,"created":"2017-08-21T18:34:58Z","lang":"en-US","results":{"channel":{"units":{"distance":"km","pressure":"mb","speed":"km/h","temperature":"C"},"title":"Yahoo! Weather - Freiburg im Breisgau, BW, DE","link":"http://us.rd.yahoo.com/dailynews/rss/weather/Country__Country/*https://weather.yahoo.com/country/state/city-650437/","description":"Yahoo! Weather for Freiburg im Breisgau, BW, DE","language":"en-us","lastBuildDate":"Mon, 21 Aug 2017 08:34 PM CEST","ttl":"60","location":{"city":"Freiburg im Breisgau","country":"Germany","region":" BW"},"wind":{"chill":"72","direction":"335","speed":"6.44"},"atmosphere":{"humidity":"39","pressure":"32983.44","rising":"0","visibility":"25.91"},"astronomy":{"sunrise":"6:32 am","sunset":"8:30 pm"},"image":{"title":"Yahoo! Weather","width":"142","height":"18","link":"http://weather.yahoo.com","url":"http://l.yimg.com/a/i/brand/purplelogo//uh/us/news-wea.gif"},"item":{"title":"Conditions for Freiburg im Breisgau, BW, DE at 07:00 PM CEST","lat":"47.998539","long":"7.84966","link":"http://us.rd.yahoo.com/dailynews/rss/weather/Country__Country/*https://weather.yahoo.com/country/state/city-650437/","pubDate":"Mon, 21 Aug 2017 07:00 PM CEST","condition":{"code":"30","date":"Mon, 21 Aug 2017 07:00 PM CEST","temp":"21","text":"Partly Cloudy"},"forecast":[{"code":"39","date":"21 Aug 2017","day":"Mon","high":"22","low":"10","text":"Scattered Showers"},{"code":"34","date":"22 Aug 2017","day":"Tue","high":"25","low":"12","text":"Mostly Sunny"},{"code":"30","date":"23 Aug 2017","day":"Wed","high":"29","low":"13","text":"Partly Cloudy"},{"code":"4","date":"24 Aug 2017","day":"Thu","high":"27","low":"17","text":"Thunderstorms"},{"code":"30","date":"25 Aug 2017","day":"Fri","high":"26","low":"18","text":"Partly Cloudy"},{"code":"30","date":"26 Aug 2017","day":"Sat","high":"26","low":"17","text":"Partly Cloudy"},{"code":"30","date":"27 Aug 2017","day":"Sun","high":"26","low":"17","text":"Partly Cloudy"},{"code":"30","date":"28 Aug 2017","day":"Mon","high":"24","low":"16","text":"Partly Cloudy"},{"code":"30","date":"29 Aug 2017","day":"Tue","high":"23","low":"15","text":"Partly Cloudy"},{"code":"30","date":"30 Aug 2017","day":"Wed","high":"23","low":"15","text":"Partly Cloudy"}],"description":"\n
\nCurrent Conditions:\n
Partly Cloudy\n
\n
\nForecast:\n
Mon - Scattered Showers. High: 22Low: 10\n
Tue - Mostly Sunny. High: 25Low: 12\n
Wed - Partly Cloudy. High: 29Low: 13\n
Thu - Thunderstorms. High: 27Low: 17\n
Fri - Partly Cloudy. High: 26Low: 18\n
\n
\nFull Forecast at Yahoo! Weather\n
\n
\n
\n]]>","guid":{"isPermaLink":"false"}}}}}} 20:32:12.737 T:139720252192512 DEBUG: weather.yahoo: available locations: 1 20:32:12.737 T:139720252192512 DEBUG: weather.yahoo: finished 20:32:12.737 T:139720252192512 INFO: CPythonInvoker(5, /opt/Kodi17/.kodi/addons/weather.yahoo/default.py): script successfully run 20:32:12.779 T:139720252192512 INFO: Python script stopped 20:32:12.779 T:139720252192512 DEBUG: Thread LanguageInvoker 139720252192512 terminating 20:32:12.791 T:139719866291968 DEBUG: POParser: loaded 130 weather tokens 20:32:12.926 T:139719866291968 DEBUG: GetImageHash - unable to stat url /opt/Kodi17/.kodi/addons/plugin.video.SportsDevil/resources/images/channels/Bundesliga 2 20:32:12.969 T:139721881167872 DEBUG: ------ Window Init (Pointer.xml) ------ 20:32:13.136 T:139720615655168 NOTICE: VideoInfoScanner: Finished scan. Scanning for video info took 00:05 20:32:13.136 T:139721490417408 DEBUG: CAnnouncementManager - Announcement: OnScanFinished from xbmc 20:32:13.136 T:139721490417408 DEBUG: GOT ANNOUNCEMENT, type: 16, from xbmc, message OnScanFinished 20:32:13.154 T:139719866291968 DEBUG: CRecentlyAddedJob::UpdateVideos() - Running RecentlyAdded home screen update 20:32:13.165 T:139719866291968 DEBUG: RunQuery took 3 ms for 10 items query: select * from movie_view ORDER BY dateAdded desc, idMovie desc LIMIT 10 20:32:13.176 T:139721881167872 DEBUG: CDirectoryProvider[special://skin/playlists/recent_unwatched_movies.xsp]: refreshing.. 20:32:13.176 T:139721881167872 DEBUG: CDirectoryProvider[special://skin/playlists/unwatched_movies.xsp]: refreshing.. 20:32:13.176 T:139721881167872 DEBUG: CDirectoryProvider[special://skin/playlists/random_movies.xsp]: refreshing.. 20:32:13.176 T:139721881167872 DEBUG: CDirectoryProvider[videodb://movies/genres/]: refreshing.. 20:32:13.203 T:139719866291968 DEBUG: RunQuery took 29 ms for 10 items query: select * from episode_view ORDER BY dateAdded desc, idEpisode desc LIMIT 10 20:32:13.211 T:139721471506176 DEBUG: DoWork - took 151 ms to load special://masterprofile/Thumbnails/e/e7f66129.jpg 20:32:13.214 T:139719866291968 DEBUG: RunQuery took 1 ms for 0 items query: select * from musicvideo_view ORDER BY dateAdded desc, idMVideo desc LIMIT 10 20:32:13.220 T:139719866291968 DEBUG: CRecentlyAddedJob::UpdateTotal() - Running RecentlyAdded home screen update 20:32:13.226 T:139721471506176 DEBUG: RunQuery took 3 ms for 18 items query: select * from movie_view WHERE ((movie_view.dateAdded > '1900-01-01')) AND ((movie_view.playCount IS NULL OR movie_view.playCount < 1)) 20:32:13.226 T:139719866291968 DEBUG: GetArtistsByWhere query: SELECT COUNT(DISTINCT artistview.idArtist) FROM artistview WHERE ((EXISTS (SELECT 1 FROM song_artist WHERE song_artist.idArtist = artistview.idArtist AND song_artist.idRole = 1) OR EXISTS (SELECT 1 FROM album_artist WHERE album_artist.idArtist = artistview.idArtist)) AND (artistview.strArtist != '')) AND (artistview.strArtist <> 'Verschiedene Interpreten') 20:32:13.260 T:139721471506176 DEBUG: RunQuery took 3 ms for 18 items query: select * from movie_view 20:32:13.261 T:139720624047872 DEBUG: RunQuery took 2 ms for 18 items query: select * from movie_view WHERE ((movie_view.playCount IS NULL OR movie_view.playCount = 0)) 20:32:13.296 T:139721471506176 DEBUG: RunQuery took 2 ms for 11 items query: SELECT genre.genre_id, genre.name, count(1), count(files.playCount) FROM genre JOIN genre_link ON genre.genre_id = genre_link.genre_id JOIN movie_view ON genre_link.media_id = movie_view.idMovie AND genre_link.media_type='movie' JOIN files ON files.idFile = movie_view.idFile GROUP BY genre.genre_id 20:32:13.314 T:139721471506176 DEBUG: DoWork - trying to extract filestream details from video file smb://192.168.178.154/filme/filme/SMS für Dich/SMS Für Dich.mp4 20:32:13.326 T:139721471506176 DEBUG: CSMBFile::Open - opened smb://192.168.178.154/filme/filme/SMS für Dich/SMS Für Dich.mp4, fd=-1 20:32:13.326 T:139721471506176 INFO: SMBFile->Open: Unable to open file : 'smb://USERNAME:PASSWORD@192.168.178.154/filme/filme/SMS%20f%c3%bcr%20Dich/SMS%20F%c3%bcr%20Dich.mp4' unix_err:'2' error : 'No such file or directory' 20:32:13.434 T:139721881167872 DEBUG: ------ Window Deinit (DialogExtendedProgressBar.xml) ------ 20:32:18.345 T:139720651486976 DEBUG: Version Check: Already notified one time for upgrading. 20:32:18.345 T:139720651486976 INFO: CPythonInvoker(0, /opt/Kodi17/.kodi/addons/service.xbmc.versioncheck/service.py): script successfully run 20:32:18.410 T:139720651486976 INFO: Python script stopped 20:32:18.410 T:139720651486976 DEBUG: Thread LanguageInvoker 139720651486976 terminating 20:32:20.389 T:139721881167872 DEBUG: ------ Window Deinit (Pointer.xml) ------ 20:32:20.431 T:139721881167872 DEBUG: ProcessMouse: trying mouse action leftclick 20:32:20.432 T:139721881167872 DEBUG: Activating window ID: 10025 20:32:20.433 T:139721881167872 DEBUG: ------ Window Init (Pointer.xml) ------ 20:32:20.746 T:139721881167872 DEBUG: ------ Window Deinit (Home.xml) ------ 20:32:20.767 T:139721881167872 DEBUG: ------ Window Init (MyVideoNav.xml) ------ 20:32:20.767 T:139721881167872 INFO: Loading skin file: MyVideoNav.xml, load type: KEEP_IN_MEMORY 20:32:20.897 T:139721881167872 DEBUG: Load MyVideoNav.xml: 129.29ms 20:32:20.898 T:139721881167872 DEBUG: CDirectoryProvider[]: refreshing.. 20:32:20.898 T:139719866291968 DEBUG: Previous line repeats 1 times. 20:32:20.898 T:139719866291968 ERROR: GetDirectory - Error getting 20:32:20.898 T:139721881167872 DEBUG: CDirectoryProvider[]: refreshing.. 20:32:20.898 T:139721471506176 DEBUG: Previous line repeats 1 times. 20:32:20.898 T:139721471506176 ERROR: GetDirectory - Error getting 20:32:20.898 T:139721881167872 DEBUG: CDirectoryProvider[]: refreshing.. 20:32:20.898 T:139720624047872 DEBUG: Previous line repeats 1 times. 20:32:20.898 T:139720624047872 ERROR: GetDirectory - Error getting 20:32:20.898 T:139721881167872 DEBUG: CDirectoryProvider[]: refreshing.. 20:32:20.898 T:139721471506176 ERROR: GetDirectory - Error getting 20:32:20.902 T:139721881167872 ERROR: Previous line repeats 3 times. 20:32:20.902 T:139721881167872 DEBUG: Alloc resources: 134.11ms (129.94 ms skin load) 20:32:20.914 T:139721881167872 DEBUG: ------ Window Deinit (Pointer.xml) ------ 20:32:20.924 T:139721881167872 DEBUG: CGUIMediaWindow::GetDirectory (plugin://plugin.video.skygo.de/) 20:32:20.924 T:139721881167872 DEBUG: ParentPath = [plugin://plugin.video.skygo.de/] 20:32:21.299 T:139720615655168 DEBUG: CAddonDatabase::SetLastUsed[plugin.video.skygo.de] took 375 ms 20:32:21.299 T:139720624047872 DEBUG: StartScript - calling plugin Sky Go('plugin://plugin.video.skygo.de/','1','') 20:32:21.299 T:139720651486976 DEBUG: Thread LanguageInvoker start, auto delete: false 20:32:21.299 T:139720651486976 INFO: initializing python engine. 20:32:21.299 T:139720651486976 DEBUG: CPythonInvoker(6, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): start processing 20:32:21.314 T:139720651486976 DEBUG: -->Python Interpreter Initialized<-- 20:32:21.314 T:139720651486976 DEBUG: CPythonInvoker(6, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): the source file to load is "/opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py" 20:32:21.315 T:139720651486976 DEBUG: CPythonInvoker(6, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): setting the Python path to /opt/Kodi17/.kodi/addons/plugin.video.skygo.de:/opt/Kodi17/.kodi/addons/script.common.plugin.cache/lib:/opt/Kodi17/.kodi/addons/script.module.cryptopy/lib:/opt/Kodi17/.kodi/addons/script.module.pydes/lib:/opt/Kodi17/.kodi/addons/script.module.requests/lib:/opt/Kodi17/.kodi/addons/script.module.routing/lib:/usr/lib/python2.7:/usr/lib/python2.7/plat-x86_64-linux-gnu:/usr/lib/python2.7/lib-tk:/usr/lib/python2.7/lib-old:/usr/lib/python2.7/lib-dynload:/usr/local/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages/PILcompat:/usr/lib/python2.7/dist-packages/gtk-2.0 20:32:21.315 T:139720651486976 DEBUG: CPythonInvoker(6, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): entering source directory /opt/Kodi17/.kodi/addons/plugin.video.skygo.de 20:32:21.315 T:139720651486976 DEBUG: CPythonInvoker(6, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): instantiating addon using automatically obtained id of "plugin.video.skygo.de" dependent on version 2.1.0 of the xbmc.python api 20:32:21.425 T:139721881167872 DEBUG: ------ Window Init (DialogBusy.xml) ------ 20:32:21.425 T:139721881167872 DEBUG: Window DialogBusy.xml was already loaded 20:32:21.425 T:139721881167872 DEBUG: Alloc resources: 0.01ms 20:32:21.825 T:139721881167872 DEBUG: ------ Window Init (Pointer.xml) ------ 20:32:22.262 T:139720651486976 DEBUG: false 20:32:22.714 T:139720651486976 DEBUG: ['plugin://plugin.video.skygo.de/', '1', ''] 20:32:22.974 T:139720651486976 INFO: CPythonInvoker(6, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): script successfully run 20:32:23.008 T:139721881167872 DEBUG: Saving fileitems [plugin://plugin.video.skygo.de/] 20:32:23.012 T:139720252192512 DEBUG: Thread BackgroundLoader start, auto delete: false 20:32:23.021 T:139720651486976 INFO: Python script stopped 20:32:23.021 T:139720651486976 DEBUG: Thread LanguageInvoker 139720651486976 terminating 20:32:23.026 T:139720252192512 DEBUG: Thread BackgroundLoader 139720252192512 terminating 20:32:23.303 T:139721881167872 DEBUG: ------ Window Deinit (DialogBusy.xml) ------ 20:32:25.498 T:139721881167872 DEBUG: ------ Window Deinit (Pointer.xml) ------ 20:32:25.585 T:139721881167872 DEBUG: ProcessMouse: trying mouse action leftclick 20:32:25.586 T:139721881167872 DEBUG: CGUIMediaWindow::GetDirectory (plugin://plugin.video.skygo.de/?action=listLiveTvChannelDirs) 20:32:25.586 T:139721881167872 DEBUG: ParentPath = [plugin://plugin.video.skygo.de/] 20:32:25.749 T:139720615655168 DEBUG: CAddonDatabase::SetLastUsed[plugin.video.skygo.de] took 163 ms 20:32:25.750 T:139721471506176 DEBUG: StartScript - calling plugin Sky Go('plugin://plugin.video.skygo.de/','2','?action=listLiveTvChannelDirs') 20:32:25.750 T:139720252192512 DEBUG: Thread LanguageInvoker start, auto delete: false 20:32:25.750 T:139720252192512 INFO: initializing python engine. 20:32:25.750 T:139720252192512 DEBUG: CPythonInvoker(7, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): start processing 20:32:25.763 T:139720252192512 DEBUG: -->Python Interpreter Initialized<-- 20:32:25.763 T:139720252192512 DEBUG: CPythonInvoker(7, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): the source file to load is "/opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py" 20:32:25.764 T:139720252192512 DEBUG: CPythonInvoker(7, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): setting the Python path to /opt/Kodi17/.kodi/addons/plugin.video.skygo.de:/opt/Kodi17/.kodi/addons/script.common.plugin.cache/lib:/opt/Kodi17/.kodi/addons/script.module.cryptopy/lib:/opt/Kodi17/.kodi/addons/script.module.pydes/lib:/opt/Kodi17/.kodi/addons/script.module.requests/lib:/opt/Kodi17/.kodi/addons/script.module.routing/lib:/usr/lib/python2.7:/usr/lib/python2.7/plat-x86_64-linux-gnu:/usr/lib/python2.7/lib-tk:/usr/lib/python2.7/lib-old:/usr/lib/python2.7/lib-dynload:/usr/local/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages/PILcompat:/usr/lib/python2.7/dist-packages/gtk-2.0 20:32:25.764 T:139720252192512 DEBUG: CPythonInvoker(7, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): entering source directory /opt/Kodi17/.kodi/addons/plugin.video.skygo.de 20:32:25.764 T:139720252192512 DEBUG: CPythonInvoker(7, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): instantiating addon using automatically obtained id of "plugin.video.skygo.de" dependent on version 2.1.0 of the xbmc.python api 20:32:25.969 T:139720252192512 DEBUG: false 20:32:26.087 T:139721881167872 DEBUG: ------ Window Init (DialogBusy.xml) ------ 20:32:26.087 T:139721881167872 DEBUG: Window DialogBusy.xml was already loaded 20:32:26.087 T:139721881167872 DEBUG: Alloc resources: 0.03ms 20:32:26.167 T:139720252192512 DEBUG: {'action': 'listLiveTvChannelDirs'} 20:32:26.283 T:139720252192512 ERROR: /opt/Kodi17/.kodi/addons/script.module.requests/lib/requests/packages/urllib3/util/ssl_.py:334: SNIMissingWarning: An HTTPS request has been made, but the SNI (Subject Name Indication) extension to TLS is not available on this platform. This may cause the server to present an incorrect TLS certificate, which can cause validation failures. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings SNIMissingWarning 20:32:26.283 T:139720252192512 ERROR: /opt/Kodi17/.kodi/addons/script.module.requests/lib/requests/packages/urllib3/util/ssl_.py:132: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings InsecurePlatformWarning 20:32:26.440 T:139720252192512 INFO: CPythonInvoker(7, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): script successfully run 20:32:26.460 T:139720651486976 DEBUG: Thread BackgroundLoader start, auto delete: false 20:32:26.471 T:139720651486976 DEBUG: Thread BackgroundLoader 139720651486976 terminating 20:32:26.500 T:139720252192512 INFO: Python script stopped 20:32:26.500 T:139720252192512 DEBUG: Thread LanguageInvoker 139720252192512 terminating 20:32:26.820 T:139721881167872 DEBUG: ------ Window Deinit (DialogBusy.xml) ------ 20:32:27.371 T:139721881167872 DEBUG: ------ Window Init (Pointer.xml) ------ 20:32:28.370 T:139721881167872 DEBUG: ------ Window Deinit (Pointer.xml) ------ 20:32:28.470 T:139721881167872 DEBUG: ProcessMouse: trying mouse action leftclick 20:32:28.471 T:139721881167872 DEBUG: CGUIMediaWindow::GetDirectory (plugin://plugin.video.skygo.de/?action=listLiveTvChannels&channeldir_name=cinema) 20:32:28.471 T:139721881167872 DEBUG: ParentPath = [plugin://plugin.video.skygo.de/?action=listLiveTvChannelDirs] 20:32:28.617 T:139720615655168 DEBUG: CAddonDatabase::SetLastUsed[plugin.video.skygo.de] took 145 ms 20:32:28.617 T:139720624047872 DEBUG: StartScript - calling plugin Sky Go('plugin://plugin.video.skygo.de/','3','?action=listLiveTvChannels&channeldir_name=cinema') 20:32:28.617 T:139720252192512 DEBUG: Thread LanguageInvoker start, auto delete: false 20:32:28.617 T:139720252192512 INFO: initializing python engine. 20:32:28.617 T:139720252192512 DEBUG: CPythonInvoker(8, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): start processing 20:32:28.631 T:139720252192512 DEBUG: -->Python Interpreter Initialized<-- 20:32:28.631 T:139720252192512 DEBUG: CPythonInvoker(8, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): the source file to load is "/opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py" 20:32:28.631 T:139720252192512 DEBUG: CPythonInvoker(8, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): setting the Python path to /opt/Kodi17/.kodi/addons/plugin.video.skygo.de:/opt/Kodi17/.kodi/addons/script.common.plugin.cache/lib:/opt/Kodi17/.kodi/addons/script.module.cryptopy/lib:/opt/Kodi17/.kodi/addons/script.module.pydes/lib:/opt/Kodi17/.kodi/addons/script.module.requests/lib:/opt/Kodi17/.kodi/addons/script.module.routing/lib:/usr/lib/python2.7:/usr/lib/python2.7/plat-x86_64-linux-gnu:/usr/lib/python2.7/lib-tk:/usr/lib/python2.7/lib-old:/usr/lib/python2.7/lib-dynload:/usr/local/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages/PILcompat:/usr/lib/python2.7/dist-packages/gtk-2.0 20:32:28.631 T:139720252192512 DEBUG: CPythonInvoker(8, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): entering source directory /opt/Kodi17/.kodi/addons/plugin.video.skygo.de 20:32:28.632 T:139720252192512 DEBUG: CPythonInvoker(8, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): instantiating addon using automatically obtained id of "plugin.video.skygo.de" dependent on version 2.1.0 of the xbmc.python api 20:32:28.835 T:139720252192512 DEBUG: false 20:32:28.972 T:139721881167872 DEBUG: ------ Window Init (DialogBusy.xml) ------ 20:32:28.972 T:139721881167872 DEBUG: Window DialogBusy.xml was already loaded 20:32:28.972 T:139721881167872 DEBUG: Alloc resources: 0.03ms 20:32:28.977 T:139721881167872 DEBUG: ------ Window Init (Pointer.xml) ------ 20:32:29.051 T:139720252192512 DEBUG: {'action': 'listLiveTvChannels', 'channeldir_name': 'cinema'} 20:32:29.090 T:139720252192512 ERROR: /opt/Kodi17/.kodi/addons/script.module.requests/lib/requests/packages/urllib3/util/ssl_.py:334: SNIMissingWarning: An HTTPS request has been made, but the SNI (Subject Name Indication) extension to TLS is not available on this platform. This may cause the server to present an incorrect TLS certificate, which can cause validation failures. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings SNIMissingWarning 20:32:29.091 T:139720252192512 ERROR: /opt/Kodi17/.kodi/addons/script.module.requests/lib/requests/packages/urllib3/util/ssl_.py:132: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings InsecurePlatformWarning 20:32:29.388 T:139720252192512 INFO: CPythonInvoker(8, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): script successfully run 20:32:29.412 T:139721881167872 DEBUG: RunQuery took 0 ms for 1 items query: SELECT files.strFilename, files.playCount, bookmark.timeInSeconds, bookmark.totalTimeInSeconds FROM files LEFT JOIN bookmark ON files.idFile = bookmark.idFile AND bookmark.type = 1 WHERE files.idPath=215 20:32:29.413 T:139720651486976 DEBUG: Thread BackgroundLoader start, auto delete: false 20:32:29.430 T:139720651486976 DEBUG: Thread BackgroundLoader 139720651486976 terminating 20:32:29.444 T:139720252192512 INFO: Python script stopped 20:32:29.444 T:139720252192512 DEBUG: Thread LanguageInvoker 139720252192512 terminating 20:32:29.820 T:139721881167872 DEBUG: ------ Window Deinit (DialogBusy.xml) ------ 20:32:30.517 T:139721471506176 INFO: easy_aquire - Created session to https://www.skygo.sky.de 20:32:30.776 T:139721471506176 DEBUG: CCurlFile::GetMimeType - https://www.skygo.sky.de/sg/bin/EPGEvent/ipad/event_3465737.png -> image/png 20:32:30.777 T:139721471506176 DEBUG: CurlFile::Open(0x7f1368059b30) https://www.skygo.sky.de/sg/bin/EPGEvent/ipad/event_3465737.png 20:32:30.870 T:139719866291968 INFO: easy_aquire - Created session to https://www.skygo.sky.de 20:32:31.007 T:139719866291968 DEBUG: CCurlFile::GetMimeType - https://www.skygo.sky.de/sg/bin/EPGEvent/ipad/event_3465730.png -> image/png 20:32:31.008 T:139719866291968 DEBUG: CurlFile::Open(0x7f12dc01ced0) https://www.skygo.sky.de/sg/bin/EPGEvent/ipad/event_3465730.png 20:32:31.101 T:139721471506176 DEBUG: Caching image 'https://www.skygo.sky.de/sg/bin/EPGEvent/ipad/event_3465737.png' to '5/5d5ee870.jpg': 20:32:31.101 T:139721471506176 DEBUG: cached image 'special://masterprofile/Thumbnails/5/5d5ee870.jpg' size 404x227 20:32:31.308 T:139719866291968 DEBUG: ffmpeg[7F1310FF9700]: [png] Broken zTXt chunk 20:32:31.315 T:139719866291968 DEBUG: Previous line repeats 3 times. 20:32:31.315 T:139719866291968 DEBUG: Caching image 'https://www.skygo.sky.de/sg/bin/EPGEvent/ipad/event_3465730.png' to 'a/a6bdc364.jpg': 20:32:31.315 T:139719866291968 DEBUG: cached image 'special://masterprofile/Thumbnails/a/a6bdc364.jpg' size 404x227 20:32:31.861 T:139721881167872 DEBUG: ------ Window Deinit (Pointer.xml) ------ 20:32:31.970 T:139721881167872 DEBUG: ProcessMouse: trying mouse action leftclick 20:32:31.981 T:139721881167872 DEBUG: OnPlayMedia plugin://plugin.video.skygo.de/?action=playVod&vod_id=768370&parental_rating=12&infolabels=%7B%27plot%27%3A+u%27Folge%3A+Fantasyfilm%27%2C+%27title%27%3A+u%27%5BCOLOR+blue%5DSky+Cinema+%2B24+HD+%7C+%5B%2FCOLOR%5DDie+Insel+der+besonderen+Kinder%27%2C+%27originaltitle%27%3A+%27%27%2C+%27cast%27%3A+%5B%5D%2C+%27duration%27%3A+7500%2C+%27genre%27%3A+%27%27%7D 20:32:31.984 T:139721881167872 DEBUG: StartScript - calling plugin Sky Go('plugin://plugin.video.skygo.de/','4','?action=playVod&vod_id=768370&parental_rating=12&infolabels=%7B%27plot%27%3A+u%27Folge%3A+Fantasyfilm%27%2C+%27title%27%3A+u%27%5BCOLOR+blue%5DSky+Cinema+%2B24+HD+%7C+%5B%2FCOLOR%5DDie+Insel+der+besonderen+Kinder%27%2C+%27originaltitle%27%3A+%27%27%2C+%27cast%27%3A+%5B%5D%2C+%27duration%27%3A+7500%2C+%27genre%27%3A+%27%27%7D') 20:32:31.985 T:139720252192512 DEBUG: Thread LanguageInvoker start, auto delete: false 20:32:31.985 T:139720252192512 INFO: initializing python engine. 20:32:31.985 T:139720252192512 DEBUG: CPythonInvoker(9, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): start processing 20:32:31.991 T:139721490417408 DEBUG: CAnnouncementManager - Announcement: OnAdd from xbmc 20:32:31.991 T:139721490417408 DEBUG: GOT ANNOUNCEMENT, type: 2, from xbmc, message OnAdd 20:32:32.001 T:139720252192512 DEBUG: -->Python Interpreter Initialized<-- 20:32:32.001 T:139720252192512 DEBUG: CPythonInvoker(9, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): the source file to load is "/opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py" 20:32:32.002 T:139720252192512 DEBUG: CPythonInvoker(9, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): setting the Python path to /opt/Kodi17/.kodi/addons/plugin.video.skygo.de:/opt/Kodi17/.kodi/addons/script.common.plugin.cache/lib:/opt/Kodi17/.kodi/addons/script.module.cryptopy/lib:/opt/Kodi17/.kodi/addons/script.module.pydes/lib:/opt/Kodi17/.kodi/addons/script.module.requests/lib:/opt/Kodi17/.kodi/addons/script.module.routing/lib:/usr/lib/python2.7:/usr/lib/python2.7/plat-x86_64-linux-gnu:/usr/lib/python2.7/lib-tk:/usr/lib/python2.7/lib-old:/usr/lib/python2.7/lib-dynload:/usr/local/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages/PILcompat:/usr/lib/python2.7/dist-packages/gtk-2.0 20:32:32.002 T:139720252192512 DEBUG: CPythonInvoker(9, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): entering source directory /opt/Kodi17/.kodi/addons/plugin.video.skygo.de 20:32:32.002 T:139720252192512 DEBUG: CPythonInvoker(9, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): instantiating addon using automatically obtained id of "plugin.video.skygo.de" dependent on version 2.1.0 of the xbmc.python api 20:32:32.004 T:139720651486976 DEBUG: Thread scriptobs start, auto delete: false 20:32:32.204 T:139721881167872 DEBUG: ------ Window Init (DialogBusy.xml) ------ 20:32:32.204 T:139721881167872 DEBUG: Window DialogBusy.xml was already loaded 20:32:32.204 T:139721881167872 DEBUG: Alloc resources: 0.04ms 20:32:32.219 T:139720252192512 DEBUG: false 20:32:32.312 T:139720252192512 DEBUG: {'action': 'playVod', 'parental_rating': '12', 'vod_id': '768370', 'infolabels': "{'plot': u'Folge: Fantasyfilm', 'title': u'[COLOR blue]Sky Cinema +24 HD | [/COLOR]Die Insel der besonderen Kinder', 'originaltitle': '', 'cast': [], 'duration': 7500, 'genre': ''}"} 20:32:32.616 T:139720252192512 ERROR: /opt/Kodi17/.kodi/addons/script.module.requests/lib/requests/packages/urllib3/util/ssl_.py:334: SNIMissingWarning: An HTTPS request has been made, but the SNI (Subject Name Indication) extension to TLS is not available on this platform. This may cause the server to present an incorrect TLS certificate, which can cause validation failures. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings SNIMissingWarning 20:32:32.616 T:139720252192512 ERROR: /opt/Kodi17/.kodi/addons/script.module.requests/lib/requests/packages/urllib3/util/ssl_.py:132: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings InsecurePlatformWarning 20:32:32.950 T:139720252192512 DEBUG: {u'resultCode': u'S_218', u'resultMessage': u'KO'} 20:32:32.950 T:139720252192512 DEBUG: User not logged in or Session on other device 20:32:32.950 T:139720252192512 DEBUG: Session invalid - Customer Code not found in SilkCache 20:32:33.224 T:139720252192512 DEBUG: {u'gender': u'M', u'tcFlag': u'Y', u'mktgFlag': u'Y', u'firstName': u'ROLF', u'country': u'DE', u'age': u'62', u'extraCustFlag': u'N', u'resultMessage': u'OK', u'privacyFlag': u'Y', u'resultCode': u'T_100', u'cancellationDate': u'2017/09/30', u'customerCode': u'3945808607', u'flagTEF': u'N', u'cableSubFlag': u'N', u'skygoSessionId': u'SG-a5ab6911-8923-4ce6-8459-81dc7f40d3de', u'lastName': u'JAUCH', u'entitlements': [u'SHDE', u'OOHD', u'OOSF', u'OOSP', u'OFBP', u'OOSW', u'KIDS', u'OFBS', u'OFEH', u'OFES', u'OOWE', u'OSFH', u'OSPS', u'OWEH', u'OWFS', u'OWHE'], u'bookmarkFlag': u'Y', u'accountCreated': u'2010/10/08', u'presentation': u'HERR', u'email': u'Timo.Jauch@gmail.com'} 20:32:33.290 T:139720252192512 DEBUG: {u'tcFlag': u'Y', u'email': u'Timo.Jauch@gmail.com', u'customerCode': u'3945808607', u'resultCode': u'S_100', u'privacyFlag': u'Y', u'extraCustFlag': u'N', u'bookmarkFlag': u'Y', u'skygoSessionId': u'SG-a5ab6911-8923-4ce6-8459-81dc7f40d3de', u'entitlements': [u'SHDE', u'OOHD', u'OOSF', u'OOSP', u'OFBP', u'OOSW', u'KIDS', u'OFBS', u'OFEH', u'OFES', u'OOWE', u'OSFH', u'OSPS', u'OWEH', u'OWFS', u'OWHE'], u'presentation': u'HERR', u'cancellationDate': u'2017/09/30', u'accountCreated': u'2010/10/08', u'flagTEF': u'N', u'doubleOptInFlag': u'N', u'mktgFlag': u'Y', u'firstName': u'ROLF', u'gender': u'M', u'age': u'62', u'lastName': u'JAUCH', u'resultMessage': u'OK', u'cableSubFlag': u'N', u'country': u'DE'} 20:32:33.290 T:139720252192512 DEBUG: User still logged in 20:32:33.294 T:139720252192512 INFO: CPythonInvoker(9, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): script successfully run 20:32:33.310 T:139720651486976 DEBUG: Thread scriptobs 139720651486976 terminating 20:32:33.310 T:139721881167872 INFO: easy_aquire - Created session to http://skywebvod-s.akamaihd.net 20:32:33.360 T:139720252192512 INFO: Python script stopped 20:32:33.360 T:139720252192512 DEBUG: Thread LanguageInvoker 139720252192512 terminating 20:32:33.433 T:139721881167872 DEBUG: CCurlFile::GetMimeType - http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30051206____100332001/F30051206____100332001.ism/Manifest -> text/xml 20:32:33.439 T:139721881167872 DEBUG: Loading settings for http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30051206____100332001/F30051206____100332001.ism/Manifest 20:32:33.443 T:139721881167872 DEBUG: CPlayerCoreFactory::GetPlayers(http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30051206____100332001/F30051206____100332001.ism/Manifest) 20:32:33.443 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: system rules 20:32:33.443 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: matches rule: system rules 20:32:33.443 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: mms/udp 20:32:33.443 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: lastfm/shout 20:32:33.443 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: rtmp 20:32:33.443 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: rtsp 20:32:33.443 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: streams 20:32:33.443 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: matches rule: streams 20:32:33.443 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: aacp/sdp 20:32:33.443 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: mp2 20:32:33.443 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: dvd 20:32:33.443 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: dvdimage 20:32:33.443 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: sdp/asf 20:32:33.443 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: nsv 20:32:33.443 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: radio 20:32:33.443 T:139721881167872 DEBUG: CPlayerCoreFactory::GetPlayers: matched 0 rules with players 20:32:33.443 T:139721881167872 DEBUG: CPlayerCoreFactory::GetPlayers: adding videodefaultplayer (VideoPlayer) 20:32:33.443 T:139721881167872 DEBUG: CPlayerCoreFactory::GetPlayers: for video=1, audio=0 20:32:33.443 T:139721881167872 DEBUG: CPlayerCoreFactory::GetPlayers: for video=1, audio=1 20:32:33.443 T:139721881167872 DEBUG: CPlayerCoreFactory::GetPlayers: added 1 players 20:32:33.465 T:139721881167872 DEBUG: Radio UECP (RDS) Processor - new CDVDRadioRDSData 20:32:33.572 T:139721881167872 NOTICE: VideoPlayer: Opening: http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30051206____100332001/F30051206____100332001.ism/Manifest 20:32:33.572 T:139721881167872 WARNING: CDVDMessageQueue(player)::Put MSGQ_NOT_INITIALIZED 20:32:33.594 T:139721881167872 DEBUG: CCurlFile::GetMimeType - http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30051206____100332001/F30051206____100332001.ism/Manifest -> text/xml 20:32:33.594 T:139721881167872 DEBUG: LinuxRendererGL: Cleaning up GL resources 20:32:33.594 T:139721881167872 DEBUG: CLinuxRendererGL::PreInit - precision of luminance 16 is 16 20:32:33.594 T:139720651486976 DEBUG: Thread VideoPlayer start, auto delete: false 20:32:33.594 T:139720651486976 NOTICE: Creating InputStream 20:32:33.594 T:139720651486976 DEBUG: ADDON: Dll Initializing - InputStream Adaptive 20:32:33.595 T:139720651486976 DEBUG: SECTION:LoadDLL(/opt/Kodi17/.kodi/addons/inputstream.adaptive/inputstream.adaptive.so.1.0.8) 20:32:33.595 T:139720651486976 DEBUG: Loading: /opt/Kodi17/.kodi/addons/inputstream.adaptive/inputstream.adaptive.so.1.0.8 20:32:33.648 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: libXBMC_addon successfully loaded 20:32:33.683 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: ADDON_Create() 20:32:33.683 T:139720651486976 INFO: AddOnLog: InputStream Adaptive: SetVideoResolution (1280 x 1024) 20:32:33.683 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: Open() 20:32:33.683 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: found inputstream.adaptive.license_data: [not shown] 20:32:33.683 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: found inputstream.adaptive.license_key: [not shown] 20:32:33.683 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: found inputstream.adaptive.license_type: com.widevine.alpha 20:32:33.683 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: found inputstream.adaptive.manifest_type: ism 20:32:33.727 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: Initial bandwidth: 4000000 20:32:33.727 T:139720651486976 DEBUG: CAddonCallbacksAddon - GetAddonSetting - add-on 'InputStream Adaptive' requests setting 'MAXRESOLUTION' 20:32:33.737 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: MAXRESOLUTION selected: 0 20:32:33.737 T:139720651486976 DEBUG: CAddonCallbacksAddon - GetAddonSetting - add-on 'InputStream Adaptive' requests setting 'STREAMSELECTION' 20:32:33.737 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: STREAMSELECTION selected: 0 20:32:33.737 T:139720651486976 DEBUG: CAddonCallbacksAddon - GetAddonSetting - add-on 'InputStream Adaptive' requests setting 'MEDIATYPE' 20:32:33.738 T:139720651486976 DEBUG: CAddonCallbacksAddon - GetAddonSetting - add-on 'InputStream Adaptive' requests setting 'DECRYPTERPATH' 20:32:33.738 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: Searching for decrypters in: /opt/Kodi17/.kodi/cdm 20:32:33.738 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: Supported URN: 20:32:33.739 T:139720651486976 DEBUG: CurlFile::Open(0x7f12e428acb0) http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30051206____100332001/F30051206____100332001.ism/Manifest 20:32:33.983 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: Download http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30051206____100332001/F30051206____100332001.ism/Manifest finished 20:32:33.983 T:139720651486976 INFO: AddOnLog: InputStream Adaptive: Successfully parsed .mpd file. #Streams: 3 Download speed: 0.0000 Bytes/s 20:32:33.984 T:139720651486976 DEBUG: CAddonCallbacksAddon - GetAddonSetting - add-on 'InputStream Adaptive' requests setting 'MINBANDWIDTH' 20:32:33.984 T:139720651486976 DEBUG: CAddonCallbacksAddon - GetAddonSetting - add-on 'InputStream Adaptive' requests setting 'MAXBANDWIDTH' 20:32:33.985 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: GetStreamIds() 20:32:33.985 T:139720651486976 ERROR: CVideoPlayer::OpenInputStream - error opening [http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30051206____100332001/F30051206____100332001.ism/Manifest] 20:32:33.985 T:139720651486976 NOTICE: CVideoPlayer::OnExit() 20:32:33.985 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: Close() 20:32:33.985 T:139720651486976 INFO: ADDON: Dll Stopped - InputStream Adaptive 20:32:33.985 T:139720651486976 DEBUG: OnPlayBackStopped: play state was 1, starting 1 20:32:33.985 T:139720651486976 DEBUG: Thread VideoPlayer 139720651486976 terminating 20:32:33.985 T:139721881167872 DEBUG: OnPlayBackStopped: play state was 3, starting 0 20:32:33.985 T:139721881167872 ERROR: Playlist Player: skipping unplayable item: 0, path [plugin://plugin.video.skygo.de/?action=playVod&vod_id=768370&parental_rating=12&infolabels=%7B%27plot%27%3A+u%27Folge%3A+Fantasyfilm%27%2C+%27title%27%3A+u%27%5BCOLOR+blue%5DSky+Cinema+%2B24+HD+%7C+%5B%2FCOLOR%5DDie+Insel+der+besonderen+Kinder%27%2C+%27originaltitle%27%3A+%27%27%2C+%27cast%27%3A+%5B%5D%2C+%27duration%27%3A+7500%2C+%27genre%27%3A+%27%27%7D] 20:32:33.985 T:139721881167872 DEBUG: Playlist Player: no more playable items... aborting playback 20:32:33.985 T:139720651486976 DEBUG: Thread BackgroundLoader start, auto delete: false 20:32:33.992 T:139721490417408 DEBUG: CAnnouncementManager - Announcement: OnStop from xbmc 20:32:33.992 T:139721490417408 DEBUG: GOT ANNOUNCEMENT, type: 1, from xbmc, message OnStop 20:32:33.994 T:139721881167872 NOTICE: CVideoPlayer::CloseFile() 20:32:33.994 T:139721881167872 NOTICE: VideoPlayer: waiting for threads to exit 20:32:33.994 T:139721881167872 NOTICE: VideoPlayer: finished waiting 20:32:33.994 T:139721881167872 DEBUG: DeleteRenderer - deleting renderer 20:32:33.994 T:139721881167872 DEBUG: LinuxRendererGL: Cleaning up GL resources 20:32:34.002 T:139720651486976 DEBUG: Thread BackgroundLoader 139720651486976 terminating 20:32:34.004 T:139721881167872 NOTICE: CVideoPlayer::CloseFile() 20:32:34.004 T:139721881167872 NOTICE: VideoPlayer: waiting for threads to exit 20:32:34.004 T:139721881167872 NOTICE: VideoPlayer: finished waiting 20:32:34.014 T:139721881167872 DEBUG: Radio UECP (RDS) Processor - delete ~CDVDRadioRDSData 20:32:34.022 T:139721881167872 DEBUG: ------ Window Deinit (DialogBusy.xml) ------ 20:32:35.368 T:139721881167872 DEBUG: ------ Window Init (Pointer.xml) ------ 20:32:35.482 T:139720624047872 DEBUG: CCurlFile::GetMimeType - https://www.skygo.sky.de/sg/bin/EPGEvent/ipad/event_3465942.png -> image/png 20:32:35.482 T:139720624047872 DEBUG: CurlFile::Open(0x7f13340ba820) https://www.skygo.sky.de/sg/bin/EPGEvent/ipad/event_3465942.png 20:32:35.541 T:139720624047872 DEBUG: ffmpeg[7F133E2A0700]: [png] Broken zTXt chunk 20:32:35.548 T:139720624047872 DEBUG: Previous line repeats 3 times. 20:32:35.548 T:139720624047872 DEBUG: Caching image 'https://www.skygo.sky.de/sg/bin/EPGEvent/ipad/event_3465942.png' to 'a/a1743821.jpg': 20:32:35.548 T:139720624047872 DEBUG: cached image 'special://masterprofile/Thumbnails/a/a1743821.jpg' size 404x227 20:32:37.367 T:139721881167872 DEBUG: ------ Window Deinit (Pointer.xml) ------ 20:32:37.432 T:139721881167872 DEBUG: ProcessMouse: trying mouse action leftclick 20:32:37.438 T:139721881167872 DEBUG: OnPlayMedia plugin://plugin.video.skygo.de/?action=playVod&vod_id=768370&parental_rating=12&infolabels=%7B%27plot%27%3A+u%27Folge%3A+Fantasyfilm%27%2C+%27title%27%3A+u%27%5BCOLOR+blue%5DSky+Cinema+%2B24+HD+%7C+%5B%2FCOLOR%5DDie+Insel+der+besonderen+Kinder%27%2C+%27originaltitle%27%3A+%27%27%2C+%27cast%27%3A+%5B%5D%2C+%27duration%27%3A+7500%2C+%27genre%27%3A+%27%27%7D 20:32:37.438 T:139721490417408 DEBUG: CAnnouncementManager - Announcement: OnClear from xbmc 20:32:37.438 T:139721490417408 DEBUG: GOT ANNOUNCEMENT, type: 2, from xbmc, message OnClear 20:32:37.440 T:139721881167872 DEBUG: StartScript - calling plugin Sky Go('plugin://plugin.video.skygo.de/','5','?action=playVod&vod_id=768370&parental_rating=12&infolabels=%7B%27plot%27%3A+u%27Folge%3A+Fantasyfilm%27%2C+%27title%27%3A+u%27%5BCOLOR+blue%5DSky+Cinema+%2B24+HD+%7C+%5B%2FCOLOR%5DDie+Insel+der+besonderen+Kinder%27%2C+%27originaltitle%27%3A+%27%27%2C+%27cast%27%3A+%5B%5D%2C+%27duration%27%3A+7500%2C+%27genre%27%3A+%27%27%7D') 20:32:37.440 T:139720651486976 DEBUG: Thread LanguageInvoker start, auto delete: false 20:32:37.440 T:139720651486976 INFO: initializing python engine. 20:32:37.440 T:139720651486976 DEBUG: CPythonInvoker(10, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): start processing 20:32:37.444 T:139721490417408 DEBUG: CAnnouncementManager - Announcement: OnAdd from xbmc 20:32:37.444 T:139721490417408 DEBUG: GOT ANNOUNCEMENT, type: 2, from xbmc, message OnAdd 20:32:37.455 T:139720651486976 DEBUG: -->Python Interpreter Initialized<-- 20:32:37.455 T:139720651486976 DEBUG: CPythonInvoker(10, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): the source file to load is "/opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py" 20:32:37.455 T:139720651486976 DEBUG: CPythonInvoker(10, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): setting the Python path to /opt/Kodi17/.kodi/addons/plugin.video.skygo.de:/opt/Kodi17/.kodi/addons/script.common.plugin.cache/lib:/opt/Kodi17/.kodi/addons/script.module.cryptopy/lib:/opt/Kodi17/.kodi/addons/script.module.pydes/lib:/opt/Kodi17/.kodi/addons/script.module.requests/lib:/opt/Kodi17/.kodi/addons/script.module.routing/lib:/usr/lib/python2.7:/usr/lib/python2.7/plat-x86_64-linux-gnu:/usr/lib/python2.7/lib-tk:/usr/lib/python2.7/lib-old:/usr/lib/python2.7/lib-dynload:/usr/local/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages/PILcompat:/usr/lib/python2.7/dist-packages/gtk-2.0 20:32:37.455 T:139720651486976 DEBUG: CPythonInvoker(10, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): entering source directory /opt/Kodi17/.kodi/addons/plugin.video.skygo.de 20:32:37.455 T:139720651486976 DEBUG: CPythonInvoker(10, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): instantiating addon using automatically obtained id of "plugin.video.skygo.de" dependent on version 2.1.0 of the xbmc.python api 20:32:37.460 T:139720252192512 DEBUG: Thread scriptobs start, auto delete: false 20:32:37.660 T:139721881167872 DEBUG: ------ Window Init (DialogBusy.xml) ------ 20:32:37.660 T:139721881167872 DEBUG: Window DialogBusy.xml was already loaded 20:32:37.660 T:139721881167872 DEBUG: Alloc resources: 0.04ms 20:32:37.662 T:139720651486976 DEBUG: false 20:32:37.738 T:139720651486976 DEBUG: {'action': 'playVod', 'parental_rating': '12', 'vod_id': '768370', 'infolabels': "{'plot': u'Folge: Fantasyfilm', 'title': u'[COLOR blue]Sky Cinema +24 HD | [/COLOR]Die Insel der besonderen Kinder', 'originaltitle': '', 'cast': [], 'duration': 7500, 'genre': ''}"} 20:32:38.149 T:139720651486976 ERROR: /opt/Kodi17/.kodi/addons/script.module.requests/lib/requests/packages/urllib3/util/ssl_.py:334: SNIMissingWarning: An HTTPS request has been made, but the SNI (Subject Name Indication) extension to TLS is not available on this platform. This may cause the server to present an incorrect TLS certificate, which can cause validation failures. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings SNIMissingWarning 20:32:38.149 T:139720651486976 ERROR: /opt/Kodi17/.kodi/addons/script.module.requests/lib/requests/packages/urllib3/util/ssl_.py:132: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings InsecurePlatformWarning 20:32:38.301 T:139720651486976 DEBUG: {u'resultCode': u'S_218', u'resultMessage': u'KO'} 20:32:38.301 T:139720651486976 DEBUG: User not logged in or Session on other device 20:32:38.301 T:139720651486976 DEBUG: Session invalid - Customer Code not found in SilkCache 20:32:38.433 T:139720651486976 DEBUG: {u'resultCode': u'T_206', u'resultMessage': u'KO', u'skygoSessionId': u'SG-6e899930-8e9e-455b-a111-164a8c67deac'} 20:32:38.436 T:139721881167872 DEBUG: ------ Window Init (DialogConfirm.xml) ------ 20:32:38.437 T:139721881167872 INFO: Loading skin file: DialogConfirm.xml, load type: KEEP_IN_MEMORY 20:32:38.464 T:139721881167872 DEBUG: Load DialogConfirm.xml: 27.83ms 20:32:38.465 T:139721881167872 DEBUG: Alloc resources: 28.42ms (27.91 ms skin load) 20:32:40.679 T:139721881167872 DEBUG: ------ Window Init (Pointer.xml) ------ 20:32:42.501 T:139721881167872 DEBUG: ------ Window Deinit (Pointer.xml) ------ 20:32:42.611 T:139721881167872 DEBUG: ProcessMouse: trying mouse action leftclick 20:32:42.847 T:139721881167872 DEBUG: ------ Window Deinit (DialogConfirm.xml) ------ 20:32:43.036 T:139720651486976 DEBUG: {u'gender': u'M', u'tcFlag': u'Y', u'mktgFlag': u'Y', u'firstName': u'ROLF', u'country': u'DE', u'age': u'62', u'extraCustFlag': u'N', u'resultMessage': u'OK', u'privacyFlag': u'Y', u'resultCode': u'T_100', u'cancellationDate': u'2017/09/30', u'customerCode': u'3945808607', u'flagTEF': u'N', u'cableSubFlag': u'N', u'skygoSessionId': u'SG-987d2967-db98-4cd3-b401-6ac6fdc0dd3e', u'lastName': u'JAUCH', u'entitlements': [u'SHDE', u'OOHD', u'OOSF', u'OOSP', u'OFBP', u'OOSW', u'KIDS', u'OFBS', u'OFEH', u'OFES', u'OOWE', u'OSFH', u'OSPS', u'OWEH', u'OWFS', u'OWHE'], u'bookmarkFlag': u'Y', u'accountCreated': u'2010/10/08', u'presentation': u'HERR', u'email': u'Timo.Jauch@gmail.com'} 20:32:43.097 T:139720651486976 DEBUG: {u'tcFlag': u'Y', u'email': u'Timo.Jauch@gmail.com', u'customerCode': u'3945808607', u'resultCode': u'S_100', u'privacyFlag': u'Y', u'extraCustFlag': u'N', u'bookmarkFlag': u'Y', u'skygoSessionId': u'SG-987d2967-db98-4cd3-b401-6ac6fdc0dd3e', u'entitlements': [u'SHDE', u'OOHD', u'OOSF', u'OOSP', u'OFBP', u'OOSW', u'KIDS', u'OFBS', u'OFEH', u'OFES', u'OOWE', u'OSFH', u'OSPS', u'OWEH', u'OWFS', u'OWHE'], u'presentation': u'HERR', u'cancellationDate': u'2017/09/30', u'accountCreated': u'2010/10/08', u'flagTEF': u'N', u'doubleOptInFlag': u'N', u'mktgFlag': u'Y', u'firstName': u'ROLF', u'gender': u'M', u'age': u'62', u'lastName': u'JAUCH', u'resultMessage': u'OK', u'cableSubFlag': u'N', u'country': u'DE'} 20:32:43.097 T:139720651486976 DEBUG: User still logged in 20:32:43.198 T:139720651486976 INFO: CPythonInvoker(10, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): script successfully run 20:32:43.214 T:139720252192512 DEBUG: Thread scriptobs 139720252192512 terminating 20:32:43.236 T:139721881167872 DEBUG: CCurlFile::GetMimeType - http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30051206____100332001/F30051206____100332001.ism/Manifest -> text/xml 20:32:43.241 T:139721881167872 DEBUG: Loading settings for http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30051206____100332001/F30051206____100332001.ism/Manifest 20:32:43.246 T:139721881167872 DEBUG: CPlayerCoreFactory::GetPlayers(http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30051206____100332001/F30051206____100332001.ism/Manifest) 20:32:43.246 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: system rules 20:32:43.246 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: matches rule: system rules 20:32:43.246 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: mms/udp 20:32:43.246 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: lastfm/shout 20:32:43.246 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: rtmp 20:32:43.246 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: rtsp 20:32:43.247 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: streams 20:32:43.247 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: matches rule: streams 20:32:43.247 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: aacp/sdp 20:32:43.247 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: mp2 20:32:43.247 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: dvd 20:32:43.247 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: dvdimage 20:32:43.247 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: sdp/asf 20:32:43.247 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: nsv 20:32:43.247 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: radio 20:32:43.247 T:139721881167872 DEBUG: CPlayerCoreFactory::GetPlayers: matched 0 rules with players 20:32:43.247 T:139721881167872 DEBUG: CPlayerCoreFactory::GetPlayers: adding videodefaultplayer (VideoPlayer) 20:32:43.247 T:139721881167872 DEBUG: CPlayerCoreFactory::GetPlayers: for video=1, audio=0 20:32:43.247 T:139721881167872 DEBUG: CPlayerCoreFactory::GetPlayers: for video=1, audio=1 20:32:43.247 T:139721881167872 DEBUG: CPlayerCoreFactory::GetPlayers: added 1 players 20:32:43.251 T:139721881167872 DEBUG: Radio UECP (RDS) Processor - new CDVDRadioRDSData 20:32:43.251 T:139721881167872 NOTICE: VideoPlayer: Opening: http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30051206____100332001/F30051206____100332001.ism/Manifest 20:32:43.251 T:139721881167872 WARNING: CDVDMessageQueue(player)::Put MSGQ_NOT_INITIALIZED 20:32:43.260 T:139720651486976 INFO: Python script stopped 20:32:43.261 T:139720651486976 DEBUG: Thread LanguageInvoker 139720651486976 terminating 20:32:43.274 T:139721881167872 DEBUG: CCurlFile::GetMimeType - http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30051206____100332001/F30051206____100332001.ism/Manifest -> text/xml 20:32:43.274 T:139721881167872 DEBUG: LinuxRendererGL: Cleaning up GL resources 20:32:43.274 T:139721881167872 DEBUG: CLinuxRendererGL::PreInit - precision of luminance 16 is 16 20:32:43.274 T:139720651486976 DEBUG: Thread VideoPlayer start, auto delete: false 20:32:43.274 T:139720651486976 NOTICE: Creating InputStream 20:32:43.274 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: ADDON_Destroy() 20:32:43.274 T:139720651486976 DEBUG: SECTION:UnloadDll(/opt/Kodi17/.kodi/addons/inputstream.adaptive/inputstream.adaptive.so.1.0.8) 20:32:43.275 T:139720651486976 INFO: ADDON: Dll Destroyed - InputStream Adaptive 20:32:43.275 T:139720651486976 DEBUG: ADDON: Dll Initializing - InputStream Adaptive 20:32:43.275 T:139720651486976 DEBUG: SECTION:LoadDLL(/opt/Kodi17/.kodi/addons/inputstream.adaptive/inputstream.adaptive.so.1.0.8) 20:32:43.275 T:139720651486976 DEBUG: Loading: /opt/Kodi17/.kodi/addons/inputstream.adaptive/inputstream.adaptive.so.1.0.8 20:32:43.291 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: libXBMC_addon successfully loaded 20:32:43.292 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: ADDON_Create() 20:32:43.292 T:139720651486976 INFO: AddOnLog: InputStream Adaptive: SetVideoResolution (1280 x 1024) 20:32:43.292 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: Open() 20:32:43.292 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: found inputstream.adaptive.license_data: [not shown] 20:32:43.292 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: found inputstream.adaptive.license_key: [not shown] 20:32:43.292 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: found inputstream.adaptive.license_type: com.widevine.alpha 20:32:43.292 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: found inputstream.adaptive.manifest_type: ism 20:32:43.292 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: Initial bandwidth: 4000000 20:32:43.292 T:139720651486976 DEBUG: CAddonCallbacksAddon - GetAddonSetting - add-on 'InputStream Adaptive' requests setting 'MAXRESOLUTION' 20:32:43.293 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: MAXRESOLUTION selected: 0 20:32:43.293 T:139720651486976 DEBUG: CAddonCallbacksAddon - GetAddonSetting - add-on 'InputStream Adaptive' requests setting 'STREAMSELECTION' 20:32:43.293 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: STREAMSELECTION selected: 0 20:32:43.293 T:139720651486976 DEBUG: CAddonCallbacksAddon - GetAddonSetting - add-on 'InputStream Adaptive' requests setting 'MEDIATYPE' 20:32:43.293 T:139720651486976 DEBUG: CAddonCallbacksAddon - GetAddonSetting - add-on 'InputStream Adaptive' requests setting 'DECRYPTERPATH' 20:32:43.293 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: Searching for decrypters in: /opt/Kodi17/.kodi/cdm 20:32:43.294 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: Supported URN: 20:32:43.294 T:139720651486976 DEBUG: CurlFile::Open(0x7f12e40ea050) http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30051206____100332001/F30051206____100332001.ism/Manifest 20:32:43.382 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: Download http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30051206____100332001/F30051206____100332001.ism/Manifest finished 20:32:43.383 T:139720651486976 INFO: AddOnLog: InputStream Adaptive: Successfully parsed .mpd file. #Streams: 3 Download speed: 0.0000 Bytes/s 20:32:43.383 T:139720651486976 DEBUG: CAddonCallbacksAddon - GetAddonSetting - add-on 'InputStream Adaptive' requests setting 'MINBANDWIDTH' 20:32:43.383 T:139720651486976 DEBUG: CAddonCallbacksAddon - GetAddonSetting - add-on 'InputStream Adaptive' requests setting 'MAXBANDWIDTH' 20:32:43.384 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: GetStreamIds() 20:32:43.384 T:139720651486976 ERROR: CVideoPlayer::OpenInputStream - error opening [http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30051206____100332001/F30051206____100332001.ism/Manifest] 20:32:43.384 T:139720651486976 NOTICE: CVideoPlayer::OnExit() 20:32:43.384 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: Close() 20:32:43.384 T:139720651486976 INFO: ADDON: Dll Stopped - InputStream Adaptive 20:32:43.384 T:139720651486976 DEBUG: OnPlayBackStopped: play state was 1, starting 1 20:32:43.384 T:139720651486976 DEBUG: Thread VideoPlayer 139720651486976 terminating 20:32:43.384 T:139721881167872 DEBUG: OnPlayBackStopped: play state was 3, starting 0 20:32:43.384 T:139721881167872 ERROR: Playlist Player: skipping unplayable item: 0, path [plugin://plugin.video.skygo.de/?action=playVod&vod_id=768370&parental_rating=12&infolabels=%7B%27plot%27%3A+u%27Folge%3A+Fantasyfilm%27%2C+%27title%27%3A+u%27%5BCOLOR+blue%5DSky+Cinema+%2B24+HD+%7C+%5B%2FCOLOR%5DDie+Insel+der+besonderen+Kinder%27%2C+%27originaltitle%27%3A+%27%27%2C+%27cast%27%3A+%5B%5D%2C+%27duration%27%3A+7500%2C+%27genre%27%3A+%27%27%7D] 20:32:43.384 T:139721881167872 DEBUG: Playlist Player: no more playable items... aborting playback 20:32:43.385 T:139720651486976 DEBUG: Thread BackgroundLoader start, auto delete: false 20:32:43.391 T:139721490417408 DEBUG: CAnnouncementManager - Announcement: OnStop from xbmc 20:32:43.391 T:139721490417408 DEBUG: GOT ANNOUNCEMENT, type: 1, from xbmc, message OnStop 20:32:43.393 T:139721881167872 NOTICE: CVideoPlayer::CloseFile() 20:32:43.393 T:139721881167872 NOTICE: VideoPlayer: waiting for threads to exit 20:32:43.393 T:139721881167872 NOTICE: VideoPlayer: finished waiting 20:32:43.393 T:139721881167872 DEBUG: DeleteRenderer - deleting renderer 20:32:43.393 T:139721881167872 DEBUG: LinuxRendererGL: Cleaning up GL resources 20:32:43.399 T:139720651486976 DEBUG: Thread BackgroundLoader 139720651486976 terminating 20:32:43.402 T:139721881167872 NOTICE: CVideoPlayer::CloseFile() 20:32:43.402 T:139721881167872 NOTICE: VideoPlayer: waiting for threads to exit 20:32:43.402 T:139721881167872 NOTICE: VideoPlayer: finished waiting 20:32:43.404 T:139721881167872 DEBUG: Radio UECP (RDS) Processor - delete ~CDVDRadioRDSData 20:32:43.469 T:139721881167872 DEBUG: ------ Window Deinit (DialogBusy.xml) ------ 20:32:45.599 T:139721881167872 DEBUG: ------ Window Init (Pointer.xml) ------ 20:32:45.647 T:139721471506176 DEBUG: CCurlFile::GetMimeType - https://www.skygo.sky.de/sg/bin/EPGEvent/ipad/event_3465694.png -> image/png 20:32:45.648 T:139721471506176 DEBUG: CurlFile::Open(0x7f13681678c0) https://www.skygo.sky.de/sg/bin/EPGEvent/ipad/event_3465694.png 20:32:45.723 T:139721471506176 DEBUG: Caching image 'https://www.skygo.sky.de/sg/bin/EPGEvent/ipad/event_3465694.png' to '2/260e59c6.jpg': 20:32:45.723 T:139721471506176 DEBUG: cached image 'special://masterprofile/Thumbnails/2/260e59c6.jpg' size 404x227 20:32:45.739 T:139720615655168 DEBUG: CCurlFile::GetMimeType - https://www.skygo.sky.de/sg/bin/EPGEvent/ipad/event_3465617.png -> image/png 20:32:45.739 T:139720615655168 DEBUG: CurlFile::Open(0x7f1328002bf0) https://www.skygo.sky.de/sg/bin/EPGEvent/ipad/event_3465617.png 20:32:45.790 T:139720615655168 DEBUG: ffmpeg[7F133DA9F700]: [png] Broken zTXt chunk 20:32:45.797 T:139720615655168 DEBUG: Previous line repeats 3 times. 20:32:45.798 T:139720615655168 DEBUG: Caching image 'https://www.skygo.sky.de/sg/bin/EPGEvent/ipad/event_3465617.png' to '2/24599a91.jpg': 20:32:45.798 T:139720615655168 DEBUG: cached image 'special://masterprofile/Thumbnails/2/24599a91.jpg' size 404x227 20:32:46.272 T:139721471506176 INFO: easy_aquire - Created session to https://www.skygo.sky.de 20:32:46.320 T:139719866291968 DEBUG: CCurlFile::GetMimeType - https://www.skygo.sky.de/sg/bin/EPGEvent/ipad/event_3465628.png -> image/png 20:32:46.320 T:139719866291968 DEBUG: CurlFile::Open(0x7f12dc103400) https://www.skygo.sky.de/sg/bin/EPGEvent/ipad/event_3465628.png 20:32:46.320 T:139720624047872 DEBUG: CCurlFile::GetMimeType - https://www.skygo.sky.de/sg/bin/EPGEvent/ipad/event_3465637.png -> image/png 20:32:46.320 T:139720624047872 DEBUG: CurlFile::Open(0x7f133408e280) https://www.skygo.sky.de/sg/bin/EPGEvent/ipad/event_3465637.png 20:32:46.391 T:139720624047872 DEBUG: ffmpeg[7F133E2A0700]: [png] Broken zTXt chunk 20:32:46.398 T:139720624047872 DEBUG: Previous line repeats 3 times. 20:32:46.398 T:139720624047872 DEBUG: Caching image 'https://www.skygo.sky.de/sg/bin/EPGEvent/ipad/event_3465637.png' to '1/12098061.jpg': 20:32:46.398 T:139720624047872 DEBUG: cached image 'special://masterprofile/Thumbnails/1/12098061.jpg' size 404x227 20:32:46.428 T:139719866291968 DEBUG: ffmpeg[7F1310FF9700]: [png] Broken zTXt chunk 20:32:46.434 T:139719866291968 DEBUG: Previous line repeats 3 times. 20:32:46.434 T:139719866291968 DEBUG: Caching image 'https://www.skygo.sky.de/sg/bin/EPGEvent/ipad/event_3465628.png' to 'b/b32ba10b.jpg': 20:32:46.434 T:139719866291968 DEBUG: cached image 'special://masterprofile/Thumbnails/b/b32ba10b.jpg' size 404x227 20:32:46.481 T:139721471506176 DEBUG: CCurlFile::GetMimeType - https://www.skygo.sky.de/sg/bin/EPGEvent/ipad/event_3465574.png -> image/png 20:32:46.481 T:139721471506176 DEBUG: CurlFile::Open(0x7f13680405a0) https://www.skygo.sky.de/sg/bin/EPGEvent/ipad/event_3465574.png 20:32:46.544 T:139721471506176 DEBUG: ffmpeg[7F1370AD3700]: [png] Broken zTXt chunk 20:32:46.550 T:139721471506176 DEBUG: Previous line repeats 3 times. 20:32:46.550 T:139721471506176 DEBUG: Caching image 'https://www.skygo.sky.de/sg/bin/EPGEvent/ipad/event_3465574.png' to '7/7447a525.jpg': 20:32:46.550 T:139721471506176 DEBUG: cached image 'special://masterprofile/Thumbnails/7/7447a525.jpg' size 404x227 20:32:49.096 T:139721881167872 DEBUG: ------ Window Deinit (Pointer.xml) ------ 20:32:49.188 T:139721881167872 DEBUG: ProcessMouse: trying mouse action leftclick 20:32:49.194 T:139721881167872 DEBUG: OnPlayMedia plugin://plugin.video.skygo.de/?action=playVod&vod_id=768370&parental_rating=12&infolabels=%7B%27plot%27%3A+u%27Folge%3A+Fantasyfilm%27%2C+%27title%27%3A+u%27%5BCOLOR+blue%5DSky+Cinema+%2B24+HD+%7C+%5B%2FCOLOR%5DDie+Insel+der+besonderen+Kinder%27%2C+%27originaltitle%27%3A+%27%27%2C+%27cast%27%3A+%5B%5D%2C+%27duration%27%3A+7500%2C+%27genre%27%3A+%27%27%7D 20:32:49.194 T:139721490417408 DEBUG: CAnnouncementManager - Announcement: OnClear from xbmc 20:32:49.194 T:139721490417408 DEBUG: GOT ANNOUNCEMENT, type: 2, from xbmc, message OnClear 20:32:49.195 T:139721881167872 DEBUG: StartScript - calling plugin Sky Go('plugin://plugin.video.skygo.de/','6','?action=playVod&vod_id=768370&parental_rating=12&infolabels=%7B%27plot%27%3A+u%27Folge%3A+Fantasyfilm%27%2C+%27title%27%3A+u%27%5BCOLOR+blue%5DSky+Cinema+%2B24+HD+%7C+%5B%2FCOLOR%5DDie+Insel+der+besonderen+Kinder%27%2C+%27originaltitle%27%3A+%27%27%2C+%27cast%27%3A+%5B%5D%2C+%27duration%27%3A+7500%2C+%27genre%27%3A+%27%27%7D') 20:32:49.196 T:139720651486976 DEBUG: Thread LanguageInvoker start, auto delete: false 20:32:49.196 T:139720651486976 INFO: initializing python engine. 20:32:49.196 T:139720651486976 DEBUG: CPythonInvoker(11, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): start processing 20:32:49.200 T:139721490417408 DEBUG: CAnnouncementManager - Announcement: OnAdd from xbmc 20:32:49.200 T:139721490417408 DEBUG: GOT ANNOUNCEMENT, type: 2, from xbmc, message OnAdd 20:32:49.210 T:139720651486976 DEBUG: -->Python Interpreter Initialized<-- 20:32:49.210 T:139720651486976 DEBUG: CPythonInvoker(11, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): the source file to load is "/opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py" 20:32:49.210 T:139720651486976 DEBUG: CPythonInvoker(11, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): setting the Python path to /opt/Kodi17/.kodi/addons/plugin.video.skygo.de:/opt/Kodi17/.kodi/addons/script.common.plugin.cache/lib:/opt/Kodi17/.kodi/addons/script.module.cryptopy/lib:/opt/Kodi17/.kodi/addons/script.module.pydes/lib:/opt/Kodi17/.kodi/addons/script.module.requests/lib:/opt/Kodi17/.kodi/addons/script.module.routing/lib:/usr/lib/python2.7:/usr/lib/python2.7/plat-x86_64-linux-gnu:/usr/lib/python2.7/lib-tk:/usr/lib/python2.7/lib-old:/usr/lib/python2.7/lib-dynload:/usr/local/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages/PILcompat:/usr/lib/python2.7/dist-packages/gtk-2.0 20:32:49.210 T:139720651486976 DEBUG: CPythonInvoker(11, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): entering source directory /opt/Kodi17/.kodi/addons/plugin.video.skygo.de 20:32:49.210 T:139720651486976 DEBUG: CPythonInvoker(11, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): instantiating addon using automatically obtained id of "plugin.video.skygo.de" dependent on version 2.1.0 of the xbmc.python api 20:32:49.216 T:139720252192512 DEBUG: Thread scriptobs start, auto delete: false 20:32:49.416 T:139721881167872 DEBUG: ------ Window Init (DialogBusy.xml) ------ 20:32:49.416 T:139721881167872 DEBUG: Window DialogBusy.xml was already loaded 20:32:49.416 T:139721881167872 DEBUG: Alloc resources: 0.04ms 20:32:49.416 T:139720651486976 DEBUG: false 20:32:49.493 T:139720651486976 DEBUG: {'action': 'playVod', 'parental_rating': '12', 'vod_id': '768370', 'infolabels': "{'plot': u'Folge: Fantasyfilm', 'title': u'[COLOR blue]Sky Cinema +24 HD | [/COLOR]Die Insel der besonderen Kinder', 'originaltitle': '', 'cast': [], 'duration': 7500, 'genre': ''}"} 20:32:49.655 T:139720651486976 ERROR: /opt/Kodi17/.kodi/addons/script.module.requests/lib/requests/packages/urllib3/util/ssl_.py:334: SNIMissingWarning: An HTTPS request has been made, but the SNI (Subject Name Indication) extension to TLS is not available on this platform. This may cause the server to present an incorrect TLS certificate, which can cause validation failures. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings SNIMissingWarning 20:32:49.655 T:139720651486976 ERROR: /opt/Kodi17/.kodi/addons/script.module.requests/lib/requests/packages/urllib3/util/ssl_.py:132: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings InsecurePlatformWarning 20:32:49.807 T:139720651486976 DEBUG: {u'tcFlag': u'Y', u'email': u'Timo.Jauch@gmail.com', u'customerCode': u'3945808607', u'resultCode': u'S_100', u'privacyFlag': u'Y', u'extraCustFlag': u'N', u'bookmarkFlag': u'Y', u'skygoSessionId': u'SG-987d2967-db98-4cd3-b401-6ac6fdc0dd3e', u'entitlements': [u'SHDE', u'OOHD', u'OOSF', u'OOSP', u'OFBP', u'OOSW', u'KIDS', u'OFBS', u'OFEH', u'OFES', u'OOWE', u'OSFH', u'OSPS', u'OWEH', u'OWFS', u'OWHE'], u'presentation': u'HERR', u'cancellationDate': u'2017/09/30', u'accountCreated': u'2010/10/08', u'flagTEF': u'N', u'doubleOptInFlag': u'N', u'mktgFlag': u'Y', u'firstName': u'ROLF', u'gender': u'M', u'age': u'62', u'lastName': u'JAUCH', u'resultMessage': u'OK', u'cableSubFlag': u'N', u'country': u'DE'} 20:32:49.807 T:139720651486976 DEBUG: User still logged in 20:32:49.818 T:139720651486976 INFO: CPythonInvoker(11, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): script successfully run 20:32:49.838 T:139720252192512 DEBUG: Thread scriptobs 139720252192512 terminating 20:32:49.861 T:139721881167872 DEBUG: CCurlFile::GetMimeType - http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30051206____100332001/F30051206____100332001.ism/Manifest -> text/xml 20:32:49.866 T:139721881167872 DEBUG: Loading settings for http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30051206____100332001/F30051206____100332001.ism/Manifest 20:32:49.870 T:139721881167872 DEBUG: CPlayerCoreFactory::GetPlayers(http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30051206____100332001/F30051206____100332001.ism/Manifest) 20:32:49.870 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: system rules 20:32:49.870 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: matches rule: system rules 20:32:49.870 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: mms/udp 20:32:49.870 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: lastfm/shout 20:32:49.870 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: rtmp 20:32:49.871 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: rtsp 20:32:49.871 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: streams 20:32:49.871 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: matches rule: streams 20:32:49.871 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: aacp/sdp 20:32:49.871 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: mp2 20:32:49.871 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: dvd 20:32:49.871 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: dvdimage 20:32:49.871 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: sdp/asf 20:32:49.871 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: nsv 20:32:49.871 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: radio 20:32:49.871 T:139721881167872 DEBUG: CPlayerCoreFactory::GetPlayers: matched 0 rules with players 20:32:49.871 T:139721881167872 DEBUG: CPlayerCoreFactory::GetPlayers: adding videodefaultplayer (VideoPlayer) 20:32:49.871 T:139721881167872 DEBUG: CPlayerCoreFactory::GetPlayers: for video=1, audio=0 20:32:49.871 T:139721881167872 DEBUG: CPlayerCoreFactory::GetPlayers: for video=1, audio=1 20:32:49.871 T:139721881167872 DEBUG: CPlayerCoreFactory::GetPlayers: added 1 players 20:32:49.874 T:139721881167872 DEBUG: Radio UECP (RDS) Processor - new CDVDRadioRDSData 20:32:49.874 T:139721881167872 NOTICE: VideoPlayer: Opening: http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30051206____100332001/F30051206____100332001.ism/Manifest 20:32:49.874 T:139721881167872 WARNING: CDVDMessageQueue(player)::Put MSGQ_NOT_INITIALIZED 20:32:49.883 T:139720651486976 INFO: Python script stopped 20:32:49.883 T:139720651486976 DEBUG: Thread LanguageInvoker 139720651486976 terminating 20:32:49.897 T:139721881167872 DEBUG: CCurlFile::GetMimeType - http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30051206____100332001/F30051206____100332001.ism/Manifest -> text/xml 20:32:49.897 T:139721881167872 DEBUG: LinuxRendererGL: Cleaning up GL resources 20:32:49.897 T:139721881167872 DEBUG: CLinuxRendererGL::PreInit - precision of luminance 16 is 16 20:32:49.897 T:139720651486976 DEBUG: Thread VideoPlayer start, auto delete: false 20:32:49.897 T:139720651486976 NOTICE: Creating InputStream 20:32:49.897 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: ADDON_Destroy() 20:32:49.898 T:139720651486976 DEBUG: SECTION:UnloadDll(/opt/Kodi17/.kodi/addons/inputstream.adaptive/inputstream.adaptive.so.1.0.8) 20:32:49.898 T:139720651486976 INFO: ADDON: Dll Destroyed - InputStream Adaptive 20:32:49.898 T:139720651486976 DEBUG: ADDON: Dll Initializing - InputStream Adaptive 20:32:49.898 T:139720651486976 DEBUG: SECTION:LoadDLL(/opt/Kodi17/.kodi/addons/inputstream.adaptive/inputstream.adaptive.so.1.0.8) 20:32:49.898 T:139720651486976 DEBUG: Loading: /opt/Kodi17/.kodi/addons/inputstream.adaptive/inputstream.adaptive.so.1.0.8 20:32:49.919 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: libXBMC_addon successfully loaded 20:32:49.919 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: ADDON_Create() 20:32:49.919 T:139720651486976 INFO: AddOnLog: InputStream Adaptive: SetVideoResolution (1280 x 1024) 20:32:49.919 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: Open() 20:32:49.919 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: found inputstream.adaptive.license_data: [not shown] 20:32:49.919 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: found inputstream.adaptive.license_key: [not shown] 20:32:49.919 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: found inputstream.adaptive.license_type: com.widevine.alpha 20:32:49.919 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: found inputstream.adaptive.manifest_type: ism 20:32:49.920 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: Initial bandwidth: 4000000 20:32:49.920 T:139720651486976 DEBUG: CAddonCallbacksAddon - GetAddonSetting - add-on 'InputStream Adaptive' requests setting 'MAXRESOLUTION' 20:32:49.920 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: MAXRESOLUTION selected: 0 20:32:49.921 T:139720651486976 DEBUG: CAddonCallbacksAddon - GetAddonSetting - add-on 'InputStream Adaptive' requests setting 'STREAMSELECTION' 20:32:49.921 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: STREAMSELECTION selected: 0 20:32:49.921 T:139720651486976 DEBUG: CAddonCallbacksAddon - GetAddonSetting - add-on 'InputStream Adaptive' requests setting 'MEDIATYPE' 20:32:49.921 T:139720651486976 DEBUG: CAddonCallbacksAddon - GetAddonSetting - add-on 'InputStream Adaptive' requests setting 'DECRYPTERPATH' 20:32:49.921 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: Searching for decrypters in: /opt/Kodi17/.kodi/cdm 20:32:49.922 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: Supported URN: 20:32:49.922 T:139720651486976 DEBUG: CurlFile::Open(0x7f12e40da5c0) http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30051206____100332001/F30051206____100332001.ism/Manifest 20:32:49.995 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: Download http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30051206____100332001/F30051206____100332001.ism/Manifest finished 20:32:49.996 T:139720651486976 INFO: AddOnLog: InputStream Adaptive: Successfully parsed .mpd file. #Streams: 3 Download speed: 0.0000 Bytes/s 20:32:49.996 T:139720651486976 DEBUG: CAddonCallbacksAddon - GetAddonSetting - add-on 'InputStream Adaptive' requests setting 'MINBANDWIDTH' 20:32:49.996 T:139720651486976 DEBUG: CAddonCallbacksAddon - GetAddonSetting - add-on 'InputStream Adaptive' requests setting 'MAXBANDWIDTH' 20:32:49.997 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: GetStreamIds() 20:32:49.997 T:139720651486976 ERROR: CVideoPlayer::OpenInputStream - error opening [http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30051206____100332001/F30051206____100332001.ism/Manifest] 20:32:49.997 T:139720651486976 NOTICE: CVideoPlayer::OnExit() 20:32:49.997 T:139720651486976 DEBUG: AddOnLog: InputStream Adaptive: Close() 20:32:49.997 T:139720651486976 INFO: ADDON: Dll Stopped - InputStream Adaptive 20:32:49.997 T:139720651486976 DEBUG: OnPlayBackStopped: play state was 1, starting 1 20:32:49.997 T:139721881167872 DEBUG: OnPlayBackStopped: play state was 3, starting 0 20:32:49.997 T:139721881167872 ERROR: Playlist Player: skipping unplayable item: 0, path [plugin://plugin.video.skygo.de/?action=playVod&vod_id=768370&parental_rating=12&infolabels=%7B%27plot%27%3A+u%27Folge%3A+Fantasyfilm%27%2C+%27title%27%3A+u%27%5BCOLOR+blue%5DSky+Cinema+%2B24+HD+%7C+%5B%2FCOLOR%5DDie+Insel+der+besonderen+Kinder%27%2C+%27originaltitle%27%3A+%27%27%2C+%27cast%27%3A+%5B%5D%2C+%27duration%27%3A+7500%2C+%27genre%27%3A+%27%27%7D] 20:32:49.997 T:139721881167872 DEBUG: Playlist Player: no more playable items... aborting playback 20:32:49.998 T:139720252192512 DEBUG: Thread BackgroundLoader start, auto delete: false 20:32:49.999 T:139720651486976 DEBUG: Thread VideoPlayer 139720651486976 terminating 20:32:50.007 T:139721881167872 NOTICE: CVideoPlayer::CloseFile() 20:32:50.007 T:139721881167872 NOTICE: VideoPlayer: waiting for threads to exit 20:32:50.007 T:139721881167872 NOTICE: VideoPlayer: finished waiting 20:32:50.007 T:139721881167872 DEBUG: DeleteRenderer - deleting renderer 20:32:50.007 T:139721881167872 DEBUG: LinuxRendererGL: Cleaning up GL resources 20:32:50.009 T:139721490417408 DEBUG: CAnnouncementManager - Announcement: OnStop from xbmc 20:32:50.009 T:139721490417408 DEBUG: GOT ANNOUNCEMENT, type: 1, from xbmc, message OnStop 20:32:50.012 T:139720252192512 DEBUG: Thread BackgroundLoader 139720252192512 terminating 20:32:50.018 T:139721881167872 NOTICE: CVideoPlayer::CloseFile() 20:32:50.019 T:139721881167872 NOTICE: VideoPlayer: waiting for threads to exit 20:32:50.019 T:139721881167872 NOTICE: VideoPlayer: finished waiting 20:32:50.021 T:139721881167872 DEBUG: Radio UECP (RDS) Processor - delete ~CDVDRadioRDSData 20:32:50.241 T:139721881167872 DEBUG: ------ Window Deinit (DialogBusy.xml) ------ 20:32:51.221 T:139721881167872 DEBUG: ------ Window Init (Pointer.xml) ------ 20:32:54.627 T:139721881167872 DEBUG: ------ Window Deinit (Pointer.xml) ------ 20:32:54.743 T:139721881167872 DEBUG: ProcessMouse: trying mouse action leftclick 20:32:54.749 T:139721881167872 DEBUG: OnPlayMedia plugin://plugin.video.skygo.de/?action=playVod&vod_id=752832&parental_rating=16&infolabels=%7B%27plot%27%3A+u%27Folge%3A+Kriminalfilm%27%2C+%27title%27%3A+u%27%5BCOLOR+blue%5DSky+Cinema+Action+HD+%7C+%5B%2FCOLOR%5DLawless+-+Die+Gesetzlosen%27%2C+%27originaltitle%27%3A+%27%27%2C+%27cast%27%3A+%5B%5D%2C+%27duration%27%3A+7200%2C+%27genre%27%3A+%27%27%7D 20:32:54.749 T:139721490417408 DEBUG: CAnnouncementManager - Announcement: OnClear from xbmc 20:32:54.749 T:139721490417408 DEBUG: GOT ANNOUNCEMENT, type: 2, from xbmc, message OnClear 20:32:54.751 T:139721881167872 DEBUG: StartScript - calling plugin Sky Go('plugin://plugin.video.skygo.de/','7','?action=playVod&vod_id=752832&parental_rating=16&infolabels=%7B%27plot%27%3A+u%27Folge%3A+Kriminalfilm%27%2C+%27title%27%3A+u%27%5BCOLOR+blue%5DSky+Cinema+Action+HD+%7C+%5B%2FCOLOR%5DLawless+-+Die+Gesetzlosen%27%2C+%27originaltitle%27%3A+%27%27%2C+%27cast%27%3A+%5B%5D%2C+%27duration%27%3A+7200%2C+%27genre%27%3A+%27%27%7D') 20:32:54.752 T:139720252192512 DEBUG: Thread LanguageInvoker start, auto delete: false 20:32:54.752 T:139720252192512 INFO: initializing python engine. 20:32:54.752 T:139720252192512 DEBUG: CPythonInvoker(12, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): start processing 20:32:54.755 T:139721490417408 DEBUG: CAnnouncementManager - Announcement: OnAdd from xbmc 20:32:54.755 T:139721490417408 DEBUG: GOT ANNOUNCEMENT, type: 2, from xbmc, message OnAdd 20:32:54.769 T:139720252192512 DEBUG: -->Python Interpreter Initialized<-- 20:32:54.769 T:139720252192512 DEBUG: CPythonInvoker(12, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): the source file to load is "/opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py" 20:32:54.769 T:139720252192512 DEBUG: CPythonInvoker(12, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): setting the Python path to /opt/Kodi17/.kodi/addons/plugin.video.skygo.de:/opt/Kodi17/.kodi/addons/script.common.plugin.cache/lib:/opt/Kodi17/.kodi/addons/script.module.cryptopy/lib:/opt/Kodi17/.kodi/addons/script.module.pydes/lib:/opt/Kodi17/.kodi/addons/script.module.requests/lib:/opt/Kodi17/.kodi/addons/script.module.routing/lib:/usr/lib/python2.7:/usr/lib/python2.7/plat-x86_64-linux-gnu:/usr/lib/python2.7/lib-tk:/usr/lib/python2.7/lib-old:/usr/lib/python2.7/lib-dynload:/usr/local/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages/PILcompat:/usr/lib/python2.7/dist-packages/gtk-2.0 20:32:54.769 T:139720252192512 DEBUG: CPythonInvoker(12, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): entering source directory /opt/Kodi17/.kodi/addons/plugin.video.skygo.de 20:32:54.769 T:139720252192512 DEBUG: CPythonInvoker(12, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): instantiating addon using automatically obtained id of "plugin.video.skygo.de" dependent on version 2.1.0 of the xbmc.python api 20:32:54.772 T:139719547533056 DEBUG: Thread scriptobs start, auto delete: false 20:32:54.972 T:139721881167872 DEBUG: ------ Window Init (DialogBusy.xml) ------ 20:32:54.972 T:139721881167872 DEBUG: Window DialogBusy.xml was already loaded 20:32:54.972 T:139721881167872 DEBUG: Alloc resources: 0.04ms 20:32:54.980 T:139720252192512 DEBUG: false 20:32:55.066 T:139720252192512 DEBUG: {'action': 'playVod', 'parental_rating': '16', 'vod_id': '752832', 'infolabels': "{'plot': u'Folge: Kriminalfilm', 'title': u'[COLOR blue]Sky Cinema Action HD | [/COLOR]Lawless - Die Gesetzlosen', 'originaltitle': '', 'cast': [], 'duration': 7200, 'genre': ''}"} 20:32:55.180 T:139720252192512 ERROR: /opt/Kodi17/.kodi/addons/script.module.requests/lib/requests/packages/urllib3/util/ssl_.py:334: SNIMissingWarning: An HTTPS request has been made, but the SNI (Subject Name Indication) extension to TLS is not available on this platform. This may cause the server to present an incorrect TLS certificate, which can cause validation failures. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings SNIMissingWarning 20:32:55.180 T:139720252192512 ERROR: /opt/Kodi17/.kodi/addons/script.module.requests/lib/requests/packages/urllib3/util/ssl_.py:132: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings InsecurePlatformWarning 20:32:55.484 T:139720252192512 ERROR: Previous line repeats 1 times. 20:32:55.484 T:139720252192512 DEBUG: {u'tcFlag': u'Y', u'email': u'Timo.Jauch@gmail.com', u'customerCode': u'3945808607', u'resultCode': u'S_100', u'privacyFlag': u'Y', u'extraCustFlag': u'N', u'bookmarkFlag': u'Y', u'skygoSessionId': u'SG-987d2967-db98-4cd3-b401-6ac6fdc0dd3e', u'entitlements': [u'SHDE', u'OOHD', u'OOSF', u'OOSP', u'OFBP', u'OOSW', u'KIDS', u'OFBS', u'OFEH', u'OFES', u'OOWE', u'OSFH', u'OSPS', u'OWEH', u'OWFS', u'OWHE'], u'presentation': u'HERR', u'cancellationDate': u'2017/09/30', u'accountCreated': u'2010/10/08', u'flagTEF': u'N', u'doubleOptInFlag': u'N', u'mktgFlag': u'Y', u'firstName': u'ROLF', u'gender': u'M', u'age': u'62', u'lastName': u'JAUCH', u'resultMessage': u'OK', u'cableSubFlag': u'N', u'country': u'DE'} 20:32:55.484 T:139720252192512 DEBUG: User still logged in 20:32:55.499 T:139720252192512 INFO: CPythonInvoker(12, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): script successfully run 20:32:55.518 T:139719547533056 DEBUG: Thread scriptobs 139719547533056 terminating 20:32:55.565 T:139720252192512 INFO: Python script stopped 20:32:55.565 T:139720252192512 DEBUG: Thread LanguageInvoker 139720252192512 terminating 20:32:55.578 T:139721881167872 DEBUG: CCurlFile::GetMimeType - http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30048895____101332002/F30048895____101332002.ism/Manifest -> text/xml 20:32:55.583 T:139721881167872 DEBUG: Loading settings for http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30048895____101332002/F30048895____101332002.ism/Manifest 20:32:55.588 T:139721881167872 DEBUG: CPlayerCoreFactory::GetPlayers(http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30048895____101332002/F30048895____101332002.ism/Manifest) 20:32:55.588 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: system rules 20:32:55.588 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: matches rule: system rules 20:32:55.588 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: mms/udp 20:32:55.588 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: lastfm/shout 20:32:55.588 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: rtmp 20:32:55.588 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: rtsp 20:32:55.588 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: streams 20:32:55.588 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: matches rule: streams 20:32:55.588 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: aacp/sdp 20:32:55.589 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: mp2 20:32:55.589 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: dvd 20:32:55.589 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: dvdimage 20:32:55.589 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: sdp/asf 20:32:55.589 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: nsv 20:32:55.589 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: radio 20:32:55.589 T:139721881167872 DEBUG: CPlayerCoreFactory::GetPlayers: matched 0 rules with players 20:32:55.589 T:139721881167872 DEBUG: CPlayerCoreFactory::GetPlayers: adding videodefaultplayer (VideoPlayer) 20:32:55.589 T:139721881167872 DEBUG: CPlayerCoreFactory::GetPlayers: for video=1, audio=0 20:32:55.589 T:139721881167872 DEBUG: CPlayerCoreFactory::GetPlayers: for video=1, audio=1 20:32:55.589 T:139721881167872 DEBUG: CPlayerCoreFactory::GetPlayers: added 1 players 20:32:55.593 T:139721881167872 DEBUG: Radio UECP (RDS) Processor - new CDVDRadioRDSData 20:32:55.593 T:139721881167872 NOTICE: VideoPlayer: Opening: http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30048895____101332002/F30048895____101332002.ism/Manifest 20:32:55.593 T:139721881167872 WARNING: CDVDMessageQueue(player)::Put MSGQ_NOT_INITIALIZED 20:32:55.616 T:139721881167872 DEBUG: CCurlFile::GetMimeType - http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30048895____101332002/F30048895____101332002.ism/Manifest -> text/xml 20:32:55.617 T:139721881167872 DEBUG: LinuxRendererGL: Cleaning up GL resources 20:32:55.617 T:139721881167872 DEBUG: CLinuxRendererGL::PreInit - precision of luminance 16 is 16 20:32:55.617 T:139720252192512 DEBUG: Thread VideoPlayer start, auto delete: false 20:32:55.617 T:139720252192512 NOTICE: Creating InputStream 20:32:55.617 T:139720252192512 DEBUG: AddOnLog: InputStream Adaptive: ADDON_Destroy() 20:32:55.618 T:139720252192512 DEBUG: SECTION:UnloadDll(/opt/Kodi17/.kodi/addons/inputstream.adaptive/inputstream.adaptive.so.1.0.8) 20:32:55.618 T:139720252192512 INFO: ADDON: Dll Destroyed - InputStream Adaptive 20:32:55.618 T:139720252192512 DEBUG: ADDON: Dll Initializing - InputStream Adaptive 20:32:55.618 T:139720252192512 DEBUG: SECTION:LoadDLL(/opt/Kodi17/.kodi/addons/inputstream.adaptive/inputstream.adaptive.so.1.0.8) 20:32:55.618 T:139720252192512 DEBUG: Loading: /opt/Kodi17/.kodi/addons/inputstream.adaptive/inputstream.adaptive.so.1.0.8 20:32:55.636 T:139720252192512 DEBUG: AddOnLog: InputStream Adaptive: libXBMC_addon successfully loaded 20:32:55.637 T:139720252192512 DEBUG: AddOnLog: InputStream Adaptive: ADDON_Create() 20:32:55.637 T:139720252192512 INFO: AddOnLog: InputStream Adaptive: SetVideoResolution (1280 x 1024) 20:32:55.637 T:139720252192512 DEBUG: AddOnLog: InputStream Adaptive: Open() 20:32:55.637 T:139720252192512 DEBUG: AddOnLog: InputStream Adaptive: found inputstream.adaptive.license_data: [not shown] 20:32:55.637 T:139720252192512 DEBUG: AddOnLog: InputStream Adaptive: found inputstream.adaptive.license_key: [not shown] 20:32:55.637 T:139720252192512 DEBUG: AddOnLog: InputStream Adaptive: found inputstream.adaptive.license_type: com.widevine.alpha 20:32:55.637 T:139720252192512 DEBUG: AddOnLog: InputStream Adaptive: found inputstream.adaptive.manifest_type: ism 20:32:55.637 T:139720252192512 DEBUG: AddOnLog: InputStream Adaptive: Initial bandwidth: 4000000 20:32:55.637 T:139720252192512 DEBUG: CAddonCallbacksAddon - GetAddonSetting - add-on 'InputStream Adaptive' requests setting 'MAXRESOLUTION' 20:32:55.637 T:139720252192512 DEBUG: AddOnLog: InputStream Adaptive: MAXRESOLUTION selected: 0 20:32:55.637 T:139720252192512 DEBUG: CAddonCallbacksAddon - GetAddonSetting - add-on 'InputStream Adaptive' requests setting 'STREAMSELECTION' 20:32:55.638 T:139720252192512 DEBUG: AddOnLog: InputStream Adaptive: STREAMSELECTION selected: 0 20:32:55.638 T:139720252192512 DEBUG: CAddonCallbacksAddon - GetAddonSetting - add-on 'InputStream Adaptive' requests setting 'MEDIATYPE' 20:32:55.638 T:139720252192512 DEBUG: CAddonCallbacksAddon - GetAddonSetting - add-on 'InputStream Adaptive' requests setting 'DECRYPTERPATH' 20:32:55.638 T:139720252192512 DEBUG: AddOnLog: InputStream Adaptive: Searching for decrypters in: /opt/Kodi17/.kodi/cdm 20:32:55.639 T:139720252192512 DEBUG: AddOnLog: InputStream Adaptive: Supported URN: 20:32:55.639 T:139720252192512 DEBUG: CurlFile::Open(0x7f12e44c2500) http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30048895____101332002/F30048895____101332002.ism/Manifest 20:32:55.730 T:139720252192512 DEBUG: AddOnLog: InputStream Adaptive: Download http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30048895____101332002/F30048895____101332002.ism/Manifest finished 20:32:55.730 T:139720252192512 INFO: AddOnLog: InputStream Adaptive: Successfully parsed .mpd file. #Streams: 3 Download speed: 0.0000 Bytes/s 20:32:55.730 T:139720252192512 DEBUG: CAddonCallbacksAddon - GetAddonSetting - add-on 'InputStream Adaptive' requests setting 'MINBANDWIDTH' 20:32:55.731 T:139720252192512 DEBUG: CAddonCallbacksAddon - GetAddonSetting - add-on 'InputStream Adaptive' requests setting 'MAXBANDWIDTH' 20:32:55.731 T:139720252192512 DEBUG: AddOnLog: InputStream Adaptive: GetStreamIds() 20:32:55.732 T:139720252192512 ERROR: CVideoPlayer::OpenInputStream - error opening [http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30048895____101332002/F30048895____101332002.ism/Manifest] 20:32:55.732 T:139720252192512 NOTICE: CVideoPlayer::OnExit() 20:32:55.732 T:139720252192512 DEBUG: AddOnLog: InputStream Adaptive: Close() 20:32:55.732 T:139720252192512 INFO: ADDON: Dll Stopped - InputStream Adaptive 20:32:55.732 T:139720252192512 DEBUG: OnPlayBackStopped: play state was 1, starting 1 20:32:55.732 T:139721881167872 DEBUG: OnPlayBackStopped: play state was 3, starting 0 20:32:55.732 T:139721881167872 ERROR: Playlist Player: skipping unplayable item: 0, path [plugin://plugin.video.skygo.de/?action=playVod&vod_id=752832&parental_rating=16&infolabels=%7B%27plot%27%3A+u%27Folge%3A+Kriminalfilm%27%2C+%27title%27%3A+u%27%5BCOLOR+blue%5DSky+Cinema+Action+HD+%7C+%5B%2FCOLOR%5DLawless+-+Die+Gesetzlosen%27%2C+%27originaltitle%27%3A+%27%27%2C+%27cast%27%3A+%5B%5D%2C+%27duration%27%3A+7200%2C+%27genre%27%3A+%27%27%7D] 20:32:55.732 T:139721881167872 DEBUG: Playlist Player: one or more items failed to play... aborting playback 20:32:55.732 T:139721881167872 DEBUG: ------ Window Init (DialogConfirm.xml) ------ 20:32:55.732 T:139721881167872 INFO: Loading skin file: DialogConfirm.xml, load type: KEEP_IN_MEMORY 20:32:55.736 T:139721881167872 DEBUG: Load DialogConfirm.xml: 4.01ms 20:32:55.736 T:139721881167872 DEBUG: Alloc resources: 4.52ms (4.08 ms skin load) 20:32:55.737 T:139721490417408 DEBUG: CAnnouncementManager - Announcement: OnStop from xbmc 20:32:55.737 T:139721490417408 DEBUG: GOT ANNOUNCEMENT, type: 1, from xbmc, message OnStop 20:32:55.737 T:139721881167872 NOTICE: CVideoPlayer::CloseFile() 20:32:55.737 T:139721881167872 NOTICE: VideoPlayer: waiting for threads to exit 20:32:55.737 T:139721881167872 NOTICE: VideoPlayer: finished waiting 20:32:55.737 T:139721881167872 DEBUG: DeleteRenderer - deleting renderer 20:32:55.737 T:139721881167872 DEBUG: LinuxRendererGL: Cleaning up GL resources 20:32:55.737 T:139721881167872 NOTICE: CVideoPlayer::CloseFile() 20:32:55.737 T:139721881167872 NOTICE: VideoPlayer: waiting for threads to exit 20:32:55.737 T:139721881167872 NOTICE: VideoPlayer: finished waiting 20:32:55.738 T:139720252192512 DEBUG: Thread VideoPlayer 139720252192512 terminating 20:32:55.739 T:139721881167872 DEBUG: Radio UECP (RDS) Processor - delete ~CDVDRadioRDSData 20:32:56.045 T:139721881167872 DEBUG: ------ Window Deinit (DialogBusy.xml) ------ 20:32:56.904 T:139721881167872 DEBUG: ------ Window Init (Pointer.xml) ------ 20:33:00.689 T:139721881167872 DEBUG: ------ Window Deinit (Pointer.xml) ------ 20:33:00.828 T:139721881167872 DEBUG: ProcessMouse: trying mouse action leftclick 20:33:01.083 T:139721881167872 DEBUG: ------ Window Deinit (DialogConfirm.xml) ------ 20:33:01.084 T:139721490417408 DEBUG: CAnnouncementManager - Announcement: OnClear from xbmc 20:33:01.084 T:139721490417408 DEBUG: GOT ANNOUNCEMENT, type: 2, from xbmc, message OnClear 20:33:01.084 T:139720252192512 DEBUG: Thread BackgroundLoader start, auto delete: false 20:33:01.094 T:139720252192512 DEBUG: Thread BackgroundLoader 139720252192512 terminating 20:33:01.629 T:139721881167872 DEBUG: ------ Window Init (Pointer.xml) ------ 20:33:02.587 T:139719866291968 DEBUG: CCurlFile::GetMimeType - https://www.skygo.sky.de/sg/bin/EPGEvent/ipad/event_3466400.png -> image/png 20:33:02.587 T:139719866291968 DEBUG: CurlFile::Open(0x7f12dc103430) https://www.skygo.sky.de/sg/bin/EPGEvent/ipad/event_3466400.png 20:33:02.649 T:139719866291968 DEBUG: ffmpeg[7F1310FF9700]: [png] Broken zTXt chunk 20:33:02.658 T:139719866291968 DEBUG: Previous line repeats 3 times. 20:33:02.658 T:139719866291968 DEBUG: Caching image 'https://www.skygo.sky.de/sg/bin/EPGEvent/ipad/event_3466400.png' to 'b/b6de0981.jpg': 20:33:02.658 T:139719866291968 DEBUG: cached image 'special://masterprofile/Thumbnails/b/b6de0981.jpg' size 404x227 20:33:07.552 T:139721881167872 DEBUG: ------ Window Deinit (Pointer.xml) ------ 20:33:16.816 T:139721881167872 INFO: CheckIdle - Closing session to https://www.skygo.sky.de (easy=0x7f12dc194ee0, multi=0x7f12dc0fce10) 20:33:16.817 T:139721881167872 INFO: CheckIdle - Closing session to https://www.skygo.sky.de (easy=0x7f136817a190, multi=(nil)) 20:33:26.128 T:139721881167872 INFO: CheckIdle - Closing session to http://skywebvod-s.akamaihd.net (easy=0x60de140, multi=0x7f12e4375db0) 20:33:32.537 T:139721471506176 DEBUG: Thread JobWorker 139721471506176 terminating (autodelete) 20:33:32.537 T:139720615655168 DEBUG: Thread JobWorker 139720615655168 terminating (autodelete) 20:33:32.537 T:139720624047872 DEBUG: Thread JobWorker 139720624047872 terminating (autodelete) 20:33:32.814 T:139721881167872 INFO: CheckIdle - Closing session to https://www.skygo.sky.de (easy=0x7f1368030500, multi=0x7f1368112080) 20:33:32.933 T:139719866291968 DEBUG: Thread JobWorker 139719866291968 terminating (autodelete) 20:33:47.851 T:139721881167872 NOTICE: Samba is idle. Closing the remaining connections 20:35:22.891 T:139721881167872 DEBUG: ------ Window Init (Pointer.xml) ------ 20:35:22.913 T:139720624047872 DEBUG: Thread JobWorker start, auto delete: true 20:35:23.980 T:139721881167872 DEBUG: ------ Window Deinit (Pointer.xml) ------ 20:35:24.095 T:139721881167872 DEBUG: ProcessMouse: trying mouse action leftclick 20:35:24.100 T:139721881167872 DEBUG: OnPlayMedia plugin://plugin.video.skygo.de/?action=playVod&vod_id=765735&parental_rating=16&infolabels=%7B%27plot%27%3A+u%27Folge%3A+Horrorfilm%27%2C+%27title%27%3A+u%27%5BCOLOR+blue%5DSky+Cinema+HD+%7C+%5B%2FCOLOR%5DLights+Out%27%2C+%27originaltitle%27%3A+%27%27%2C+%27cast%27%3A+%5B%5D%2C+%27duration%27%3A+5100%2C+%27genre%27%3A+%27%27%7D 20:35:24.102 T:139721881167872 DEBUG: StartScript - calling plugin Sky Go('plugin://plugin.video.skygo.de/','8','?action=playVod&vod_id=765735&parental_rating=16&infolabels=%7B%27plot%27%3A+u%27Folge%3A+Horrorfilm%27%2C+%27title%27%3A+u%27%5BCOLOR+blue%5DSky+Cinema+HD+%7C+%5B%2FCOLOR%5DLights+Out%27%2C+%27originaltitle%27%3A+%27%27%2C+%27cast%27%3A+%5B%5D%2C+%27duration%27%3A+5100%2C+%27genre%27%3A+%27%27%7D') 20:35:24.102 T:139719866291968 DEBUG: Thread LanguageInvoker start, auto delete: false 20:35:24.102 T:139719866291968 INFO: initializing python engine. 20:35:24.102 T:139719866291968 DEBUG: CPythonInvoker(13, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): start processing 20:35:24.106 T:139721490417408 DEBUG: CAnnouncementManager - Announcement: OnAdd from xbmc 20:35:24.106 T:139721490417408 DEBUG: GOT ANNOUNCEMENT, type: 2, from xbmc, message OnAdd 20:35:24.122 T:139720615655168 DEBUG: Thread scriptobs start, auto delete: false 20:35:24.126 T:139719866291968 DEBUG: -->Python Interpreter Initialized<-- 20:35:24.126 T:139719866291968 DEBUG: CPythonInvoker(13, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): the source file to load is "/opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py" 20:35:24.126 T:139719866291968 DEBUG: CPythonInvoker(13, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): setting the Python path to /opt/Kodi17/.kodi/addons/plugin.video.skygo.de:/opt/Kodi17/.kodi/addons/script.common.plugin.cache/lib:/opt/Kodi17/.kodi/addons/script.module.cryptopy/lib:/opt/Kodi17/.kodi/addons/script.module.pydes/lib:/opt/Kodi17/.kodi/addons/script.module.requests/lib:/opt/Kodi17/.kodi/addons/script.module.routing/lib:/usr/lib/python2.7:/usr/lib/python2.7/plat-x86_64-linux-gnu:/usr/lib/python2.7/lib-tk:/usr/lib/python2.7/lib-old:/usr/lib/python2.7/lib-dynload:/usr/local/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages:/usr/lib/python2.7/dist-packages/PILcompat:/usr/lib/python2.7/dist-packages/gtk-2.0 20:35:24.126 T:139719866291968 DEBUG: CPythonInvoker(13, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): entering source directory /opt/Kodi17/.kodi/addons/plugin.video.skygo.de 20:35:24.127 T:139719866291968 DEBUG: CPythonInvoker(13, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): instantiating addon using automatically obtained id of "plugin.video.skygo.de" dependent on version 2.1.0 of the xbmc.python api 20:35:24.322 T:139721881167872 DEBUG: ------ Window Init (DialogBusy.xml) ------ 20:35:24.323 T:139721881167872 DEBUG: Window DialogBusy.xml was already loaded 20:35:24.323 T:139721881167872 DEBUG: Alloc resources: 0.04ms 20:35:24.442 T:139719866291968 DEBUG: false 20:35:24.558 T:139719866291968 DEBUG: {'action': 'playVod', 'parental_rating': '16', 'vod_id': '765735', 'infolabels': "{'plot': u'Folge: Horrorfilm', 'title': u'[COLOR blue]Sky Cinema HD | [/COLOR]Lights Out', 'originaltitle': '', 'cast': [], 'duration': 5100, 'genre': ''}"} 20:35:24.858 T:139719866291968 ERROR: /opt/Kodi17/.kodi/addons/script.module.requests/lib/requests/packages/urllib3/util/ssl_.py:334: SNIMissingWarning: An HTTPS request has been made, but the SNI (Subject Name Indication) extension to TLS is not available on this platform. This may cause the server to present an incorrect TLS certificate, which can cause validation failures. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings SNIMissingWarning 20:35:24.858 T:139719866291968 ERROR: /opt/Kodi17/.kodi/addons/script.module.requests/lib/requests/packages/urllib3/util/ssl_.py:132: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings InsecurePlatformWarning 20:35:25.174 T:139719866291968 ERROR: Previous line repeats 1 times. 20:35:25.174 T:139719866291968 DEBUG: {u'tcFlag': u'Y', u'email': u'Timo.Jauch@gmail.com', u'customerCode': u'3945808607', u'resultCode': u'S_100', u'privacyFlag': u'Y', u'extraCustFlag': u'N', u'bookmarkFlag': u'Y', u'skygoSessionId': u'SG-987d2967-db98-4cd3-b401-6ac6fdc0dd3e', u'entitlements': [u'SHDE', u'OOHD', u'OOSF', u'OOSP', u'OFBP', u'OOSW', u'KIDS', u'OFBS', u'OFEH', u'OFES', u'OOWE', u'OSFH', u'OSPS', u'OWEH', u'OWFS', u'OWHE'], u'presentation': u'HERR', u'cancellationDate': u'2017/09/30', u'accountCreated': u'2010/10/08', u'flagTEF': u'N', u'doubleOptInFlag': u'N', u'mktgFlag': u'Y', u'firstName': u'ROLF', u'gender': u'M', u'age': u'62', u'lastName': u'JAUCH', u'resultMessage': u'OK', u'cableSubFlag': u'N', u'country': u'DE'} 20:35:25.174 T:139719866291968 DEBUG: User still logged in 20:35:25.179 T:139719866291968 INFO: CPythonInvoker(13, /opt/Kodi17/.kodi/addons/plugin.video.skygo.de/default.py): script successfully run 20:35:25.194 T:139720615655168 DEBUG: Thread scriptobs 139720615655168 terminating 20:35:25.194 T:139721881167872 INFO: easy_aquire - Created session to http://skywebvod-s.akamaihd.net 20:35:25.241 T:139719866291968 INFO: Python script stopped 20:35:25.241 T:139719866291968 DEBUG: Thread LanguageInvoker 139719866291968 terminating 20:35:25.316 T:139721881167872 DEBUG: CCurlFile::GetMimeType - http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30053971____100332001/F30053971____100332001.ism/Manifest -> text/xml 20:35:25.321 T:139721881167872 DEBUG: Loading settings for http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30053971____100332001/F30053971____100332001.ism/Manifest 20:35:25.325 T:139721881167872 DEBUG: CPlayerCoreFactory::GetPlayers(http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30053971____100332001/F30053971____100332001.ism/Manifest) 20:35:25.325 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: system rules 20:35:25.325 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: matches rule: system rules 20:35:25.325 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: mms/udp 20:35:25.325 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: lastfm/shout 20:35:25.325 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: rtmp 20:35:25.325 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: rtsp 20:35:25.325 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: streams 20:35:25.325 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: matches rule: streams 20:35:25.325 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: aacp/sdp 20:35:25.325 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: mp2 20:35:25.325 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: dvd 20:35:25.325 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: dvdimage 20:35:25.326 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: sdp/asf 20:35:25.326 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: nsv 20:35:25.326 T:139721881167872 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: radio 20:35:25.326 T:139721881167872 DEBUG: CPlayerCoreFactory::GetPlayers: matched 0 rules with players 20:35:25.326 T:139721881167872 DEBUG: CPlayerCoreFactory::GetPlayers: adding videodefaultplayer (VideoPlayer) 20:35:25.326 T:139721881167872 DEBUG: CPlayerCoreFactory::GetPlayers: for video=1, audio=0 20:35:25.326 T:139721881167872 DEBUG: CPlayerCoreFactory::GetPlayers: for video=1, audio=1 20:35:25.326 T:139721881167872 DEBUG: CPlayerCoreFactory::GetPlayers: added 1 players 20:35:25.328 T:139721881167872 DEBUG: Radio UECP (RDS) Processor - new CDVDRadioRDSData 20:35:25.328 T:139721881167872 NOTICE: VideoPlayer: Opening: http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30053971____100332001/F30053971____100332001.ism/Manifest 20:35:25.328 T:139721881167872 WARNING: CDVDMessageQueue(player)::Put MSGQ_NOT_INITIALIZED 20:35:25.351 T:139721881167872 DEBUG: CCurlFile::GetMimeType - http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30053971____100332001/F30053971____100332001.ism/Manifest -> text/xml 20:35:25.351 T:139721881167872 DEBUG: LinuxRendererGL: Cleaning up GL resources 20:35:25.351 T:139721881167872 DEBUG: CLinuxRendererGL::PreInit - precision of luminance 16 is 16 20:35:25.351 T:139720615655168 DEBUG: Thread VideoPlayer start, auto delete: false 20:35:25.351 T:139720615655168 NOTICE: Creating InputStream 20:35:25.351 T:139720615655168 DEBUG: AddOnLog: InputStream Adaptive: ADDON_Destroy() 20:35:25.351 T:139720615655168 DEBUG: SECTION:UnloadDll(/opt/Kodi17/.kodi/addons/inputstream.adaptive/inputstream.adaptive.so.1.0.8) 20:35:25.352 T:139720615655168 INFO: ADDON: Dll Destroyed - InputStream Adaptive 20:35:25.352 T:139720615655168 DEBUG: ADDON: Dll Initializing - InputStream Adaptive 20:35:25.352 T:139720615655168 DEBUG: SECTION:LoadDLL(/opt/Kodi17/.kodi/addons/inputstream.adaptive/inputstream.adaptive.so.1.0.8) 20:35:25.352 T:139720615655168 DEBUG: Loading: /opt/Kodi17/.kodi/addons/inputstream.adaptive/inputstream.adaptive.so.1.0.8 20:35:25.368 T:139720615655168 DEBUG: AddOnLog: InputStream Adaptive: libXBMC_addon successfully loaded 20:35:25.369 T:139720615655168 DEBUG: AddOnLog: InputStream Adaptive: ADDON_Create() 20:35:25.369 T:139720615655168 INFO: AddOnLog: InputStream Adaptive: SetVideoResolution (1280 x 1024) 20:35:25.369 T:139720615655168 DEBUG: AddOnLog: InputStream Adaptive: Open() 20:35:25.369 T:139720615655168 DEBUG: AddOnLog: InputStream Adaptive: found inputstream.adaptive.license_data: [not shown] 20:35:25.369 T:139720615655168 DEBUG: AddOnLog: InputStream Adaptive: found inputstream.adaptive.license_key: [not shown] 20:35:25.369 T:139720615655168 DEBUG: AddOnLog: InputStream Adaptive: found inputstream.adaptive.license_type: com.widevine.alpha 20:35:25.369 T:139720615655168 DEBUG: AddOnLog: InputStream Adaptive: found inputstream.adaptive.manifest_type: ism 20:35:25.369 T:139720615655168 DEBUG: AddOnLog: InputStream Adaptive: Initial bandwidth: 4000000 20:35:25.369 T:139720615655168 DEBUG: CAddonCallbacksAddon - GetAddonSetting - add-on 'InputStream Adaptive' requests setting 'MAXRESOLUTION' 20:35:25.369 T:139720615655168 DEBUG: AddOnLog: InputStream Adaptive: MAXRESOLUTION selected: 0 20:35:25.369 T:139720615655168 DEBUG: CAddonCallbacksAddon - GetAddonSetting - add-on 'InputStream Adaptive' requests setting 'STREAMSELECTION' 20:35:25.370 T:139720615655168 DEBUG: AddOnLog: InputStream Adaptive: STREAMSELECTION selected: 0 20:35:25.370 T:139720615655168 DEBUG: CAddonCallbacksAddon - GetAddonSetting - add-on 'InputStream Adaptive' requests setting 'MEDIATYPE' 20:35:25.370 T:139720615655168 DEBUG: CAddonCallbacksAddon - GetAddonSetting - add-on 'InputStream Adaptive' requests setting 'DECRYPTERPATH' 20:35:25.370 T:139720615655168 DEBUG: AddOnLog: InputStream Adaptive: Searching for decrypters in: /opt/Kodi17/.kodi/cdm 20:35:25.370 T:139720615655168 DEBUG: AddOnLog: InputStream Adaptive: Supported URN: 20:35:25.371 T:139720615655168 DEBUG: CurlFile::Open(0x7f133408e280) http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30053971____100332001/F30053971____100332001.ism/Manifest 20:35:25.603 T:139720615655168 DEBUG: AddOnLog: InputStream Adaptive: Download http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30053971____100332001/F30053971____100332001.ism/Manifest finished 20:35:25.604 T:139720615655168 INFO: AddOnLog: InputStream Adaptive: Successfully parsed .mpd file. #Streams: 3 Download speed: 0.0000 Bytes/s 20:35:25.604 T:139720615655168 DEBUG: CAddonCallbacksAddon - GetAddonSetting - add-on 'InputStream Adaptive' requests setting 'MINBANDWIDTH' 20:35:25.604 T:139720615655168 DEBUG: CAddonCallbacksAddon - GetAddonSetting - add-on 'InputStream Adaptive' requests setting 'MAXBANDWIDTH' 20:35:25.605 T:139720615655168 DEBUG: AddOnLog: InputStream Adaptive: GetStreamIds() 20:35:25.605 T:139720615655168 ERROR: CVideoPlayer::OpenInputStream - error opening [http://skywebvod-s.akamaihd.net/ondemand/Production/de_at/movies/F30053971____100332001/F30053971____100332001.ism/Manifest] 20:35:25.605 T:139720615655168 NOTICE: CVideoPlayer::OnExit() 20:35:25.605 T:139720615655168 DEBUG: AddOnLog: InputStream Adaptive: Close() 20:35:25.605 T:139720615655168 INFO: ADDON: Dll Stopped - InputStream Adaptive 20:35:25.605 T:139720615655168 DEBUG: OnPlayBackStopped: play state was 1, starting 1 20:35:25.605 T:139721881167872 DEBUG: OnPlayBackStopped: play state was 3, starting 0 20:35:25.605 T:139721881167872 ERROR: Playlist Player: skipping unplayable item: 0, path [plugin://plugin.video.skygo.de/?action=playVod&vod_id=765735&parental_rating=16&infolabels=%7B%27plot%27%3A+u%27Folge%3A+Horrorfilm%27%2C+%27title%27%3A+u%27%5BCOLOR+blue%5DSky+Cinema+HD+%7C+%5B%2FCOLOR%5DLights+Out%27%2C+%27originaltitle%27%3A+%27%27%2C+%27cast%27%3A+%5B%5D%2C+%27duration%27%3A+5100%2C+%27genre%27%3A+%27%27%7D] 20:35:25.605 T:139721881167872 DEBUG: Playlist Player: no more playable items... aborting playback 20:35:25.606 T:139720615655168 DEBUG: Thread VideoPlayer 139720615655168 terminating 20:35:25.606 T:139719866291968 DEBUG: Thread BackgroundLoader start, auto delete: false 20:35:25.612 T:139721490417408 DEBUG: CAnnouncementManager - Announcement: OnStop from xbmc 20:35:25.613 T:139721490417408 DEBUG: GOT ANNOUNCEMENT, type: 1, from xbmc, message OnStop 20:35:25.614 T:139721881167872 NOTICE: CVideoPlayer::CloseFile() 20:35:25.614 T:139721881167872 NOTICE: VideoPlayer: waiting for threads to exit 20:35:25.614 T:139721881167872 NOTICE: VideoPlayer: finished waiting 20:35:25.614 T:139721881167872 DEBUG: DeleteRenderer - deleting renderer 20:35:25.614 T:139721881167872 DEBUG: LinuxRendererGL: Cleaning up GL resources 20:35:25.620 T:139719866291968 DEBUG: Thread BackgroundLoader 139719866291968 terminating 20:35:25.624 T:139721881167872 NOTICE: CVideoPlayer::CloseFile() 20:35:25.624 T:139721881167872 NOTICE: VideoPlayer: waiting for threads to exit 20:35:25.624 T:139721881167872 NOTICE: VideoPlayer: finished waiting 20:35:25.625 T:139721881167872 DEBUG: Radio UECP (RDS) Processor - delete ~CDVDRadioRDSData 20:35:25.634 T:139721881167872 DEBUG: ------ Window Deinit (DialogBusy.xml) ------ 20:35:27.379 T:139721881167872 DEBUG: ------ Window Init (Pointer.xml) ------ 20:35:28.972 T:139721881167872 DEBUG: Keyboard: scancode: 0x09, sym: 0x001b, unicode: 0x001b, modifier: 0x0 20:35:29.139 T:139721881167872 DEBUG: OnKey: escape (0xf01b) pressed, action is PreviousMenu 20:35:29.139 T:139721881167872 DEBUG: CGUIWindowManager::PreviousWindow: Deactivate 20:35:29.139 T:139721250432768 INFO: CActiveAESink::OpenSink - initialize sink 20:35:29.139 T:139721250432768 DEBUG: CActiveAESink::OpenSink - trying to open device ALSA:default 20:35:29.139 T:139721250432768 INFO: CAESinkALSA::Initialize - Attempting to open device "default" 20:35:29.141 T:139721881167872 DEBUG: ------ Window Deinit (Pointer.xml) ------ 20:35:29.182 T:139721250432768 INFO: CAESinkALSA::Initialize - Opened device "default" 20:35:29.182 T:139721250432768 DEBUG: CAESinkALSA::InitializeHW - Request: periodSize 2205, bufferSize 8820 20:35:29.214 T:139721250432768 DEBUG: CAESinkALSA::InitializeHW - Got: periodSize 2205, bufferSize 8820 20:35:29.214 T:139721250432768 DEBUG: CAESinkALSA::InitializeHW - Setting timeout to 200 ms 20:35:29.215 T:139721250432768 DEBUG: CAESinkALSA::GetChannelLayout - Input Channel Count: 2 Output Channel Count: 2 20:35:29.215 T:139721250432768 DEBUG: CAESinkALSA::GetChannelLayout - Requested Layout: FL,FR 20:35:29.215 T:139721250432768 DEBUG: CAESinkALSA::GetChannelLayout - Got Layout: FL,FR (ALSA: none) 20:35:29.215 T:139721250432768 DEBUG: CActiveAESink::OpenSink - ALSA Initialized: 20:35:29.215 T:139721250432768 DEBUG: Output Device : Playback/recording through the PulseAudio sound server 20:35:29.215 T:139721250432768 DEBUG: Sample Rate : 44100 20:35:29.215 T:139721250432768 DEBUG: Sample Format : AE_FMT_FLOAT 20:35:29.215 T:139721250432768 DEBUG: Channel Count : 2 20:35:29.215 T:139721250432768 DEBUG: Channel Layout: FL,FR 20:35:29.215 T:139721250432768 DEBUG: Frames : 2205 20:35:29.215 T:139721250432768 DEBUG: Frame Size : 8 20:35:29.459 T:139721881167872 DEBUG: ------ Window Deinit (MyVideoNav.xml) ------ 20:35:29.460 T:139721881167872 DEBUG: CGUIWindowManager::PreviousWindow: Activate new 20:35:29.460 T:139721881167872 DEBUG: ------ Window Init (Home.xml) ------ 20:35:29.473 T:139721881167872 DEBUG: CDirectoryProvider[videodb://inprogresstvshows]: refreshing.. 20:35:29.473 T:139721881167872 DEBUG: CDirectoryProvider[special://skin/playlists/recent_unwatched_episodes.xsp]: refreshing.. 20:35:29.473 T:139721881167872 DEBUG: CDirectoryProvider[special://skin/playlists/unwatched_tvshows.xsp]: refreshing.. 20:35:29.473 T:139721881167872 DEBUG: CDirectoryProvider[videodb://tvshows/genres/]: refreshing.. 20:35:29.473 T:139720615655168 DEBUG: Thread JobWorker start, auto delete: true 20:35:29.473 T:139721881167872 DEBUG: CDirectoryProvider[videodb://tvshows/studios/]: refreshing.. 20:35:29.473 T:139721881167872 DEBUG: CDirectoryProvider[musicdb://recentlyaddedalbums/]: refreshing.. 20:35:29.473 T:139721881167872 DEBUG: CDirectoryProvider[special://skin/playlists/random_albums.xsp]: refreshing.. 20:35:29.474 T:139721881167872 DEBUG: CDirectoryProvider[special://skin/playlists/unplayed_albums.xsp]: refreshing.. 20:35:29.474 T:139721881167872 DEBUG: CDirectoryProvider[special://skin/playlists/mostplayed_albums.xsp]: refreshing.. 20:35:29.474 T:139721881167872 DEBUG: CDirectoryProvider[addons://sources/video/]: refreshing.. 20:35:29.474 T:139721881167872 DEBUG: CDirectoryProvider[addons://sources/audio/]: refreshing.. 20:35:29.474 T:139721881167872 DEBUG: CDirectoryProvider[addons://sources/executable/]: refreshing.. 20:35:29.474 T:139721881167872 DEBUG: CDirectoryProvider[addons://sources/image/]: refreshing.. 20:35:29.475 T:139721881167872 DEBUG: Window Home.xml was already loaded 20:35:29.475 T:139721881167872 DEBUG: Alloc resources: 14.43ms 20:35:29.479 T:139721881167872 DEBUG: Keyboard: scancode: 0x09, sym: 0x001b, unicode: 0x0000, modifier: 0x0 20:35:29.480 T:139721471506176 DEBUG: Thread JobWorker start, auto delete: true 20:35:29.491 T:139720624047872 DEBUG: RunQuery took 8 ms for 3 items query: SELECT * FROM tvshow_view WHERE watchedCount != 0 AND totalCount != watchedCount ORDER BY c00 20:35:29.501 T:139720615655168 DEBUG: RunQuery took 16 ms for 372 items query: select * from episode_view WHERE ((episode_view.dateAdded > '1900-01-01')) AND ((episode_view.playCount IS NULL OR episode_view.playCount < 1)) 20:35:29.502 T:139721471506176 DEBUG: RunQuery took 9 ms for 5 items query: SELECT * FROM tvshow_view WHERE ((tvshow_view.watchedcount = 0)) AND ((tvshow_view.totalCount > 0)) 20:35:29.518 T:139720624047872 DEBUG: RunQuery took 5 ms for 9 items query: SELECT genre.genre_id, genre.name FROM genre JOIN genre_link ON genre.genre_id = genre_link.genre_id JOIN tvshow_view ON genre_link.media_id = tvshow_view.idShow AND genre_link.media_type='tvshow' GROUP BY genre.genre_id 20:35:29.547 T:139720615655168 DEBUG: GetRecentlyAddedAlbums query: SELECT albumview.*, albumartistview.* FROM (SELECT idAlbum FROM album WHERE strAlbum != '' ORDER BY idAlbum DESC LIMIT 25) AS recentalbums JOIN albumview ON albumview.idAlbum = recentalbums.idAlbum JOIN albumartistview ON albumview.idAlbum = albumartistview.idAlbum ORDER BY albumview.idAlbum desc, albumartistview.iOrder 20:35:29.553 T:139721471506176 DEBUG: GetAlbumsByWhere query: SELECT albumview.* FROM albumview WHERE albumview.strReleaseType = 'album' 20:35:29.565 T:139720624047872 DEBUG: RunQuery took 28 ms for 7 items query: SELECT studio.studio_id, studio.name FROM studio JOIN studio_link ON studio.studio_id = studio_link.studio_id JOIN tvshow_view ON studio_link.media_id = tvshow_view.idShow AND studio_link.media_type='tvshow' GROUP BY studio.studio_id 20:35:29.591 T:139720624047872 DEBUG: GetAlbumsByWhere query: SELECT albumview.* FROM albumview WHERE (((CAST(albumview.iTimesPlayed as DECIMAL(5,1)) = 0))) AND (albumview.strReleaseType = 'album') 20:35:29.605 T:139720615655168 DEBUG: GetAlbumsByWhere query: SELECT albumview.* FROM albumview WHERE (((CAST(albumview.iTimesPlayed as DECIMAL(5,1)) > 0))) AND (albumview.strReleaseType = 'album') 20:35:29.643 T:139720615655168 DEBUG: GetAlbumsByWhere - query took 39 ms 20:35:29.696 T:139721471506176 DEBUG: GetAlbumsByWhere - query took 143 ms 20:35:29.765 T:139720624047872 DEBUG: GetAlbumsByWhere - query took 174 ms 20:35:30.182 T:139721881167872 DEBUG: ------ Window Init (Pointer.xml) ------ 20:35:31.320 T:139721881167872 DEBUG: ------ Window Deinit (Pointer.xml) ------ 20:35:31.457 T:139721881167872 DEBUG: ProcessMouse: trying mouse action rightclick 20:35:31.462 T:139721881167872 INFO: Loading skin file: DialogContextMenu.xml, load type: KEEP_IN_MEMORY 20:35:31.478 T:139721881167872 DEBUG: Load DialogContextMenu.xml: 16.63ms 20:35:31.479 T:139721881167872 DEBUG: Alloc resources: 16.98ms (16.69 ms skin load) 20:35:31.479 T:139721881167872 DEBUG: ------ Window Init (DialogContextMenu.xml) ------ 20:35:31.479 T:139721881167872 DEBUG: Window DialogContextMenu.xml was already loaded 20:35:31.479 T:139721881167872 DEBUG: Alloc resources: 0.01ms 20:35:32.691 T:139721881167872 DEBUG: Keyboard: scancode: 0x09, sym: 0x001b, unicode: 0x001b, modifier: 0x0 20:35:32.881 T:139721881167872 DEBUG: OnKey: escape (0xf01b) pressed, action is PreviousMenu 20:35:32.881 T:139721881167872 DEBUG: Keyboard: scancode: 0x09, sym: 0x001b, unicode: 0x0000, modifier: 0x0 20:35:33.136 T:139721881167872 DEBUG: ------ Window Deinit (DialogContextMenu.xml) ------ 20:35:33.341 T:139721881167872 DEBUG: ------ Window Init (Pointer.xml) ------ 20:35:34.538 T:139721881167872 DEBUG: ------ Window Deinit (Pointer.xml) ------ 20:35:34.658 T:139721881167872 DEBUG: ProcessMouse: trying mouse action leftclick 20:35:34.658 T:139721881167872 DEBUG: Activating window ID: 10111 20:35:34.658 T:139721881167872 DEBUG: ------ Window Init (DialogButtonMenu.xml) ------ 20:35:34.658 T:139721881167872 INFO: Loading skin file: DialogButtonMenu.xml, load type: KEEP_IN_MEMORY 20:35:34.669 T:139721881167872 DEBUG: Load DialogButtonMenu.xml: 10.54ms 20:35:34.669 T:139721881167872 DEBUG: Alloc resources: 10.85ms (10.61 ms skin load) 20:35:35.715 T:139721881167872 DEBUG: ------ Window Init (Pointer.xml) ------ 20:35:37.848 T:139721881167872 DEBUG: ------ Window Deinit (Pointer.xml) ------ 20:35:37.978 T:139721881167872 DEBUG: ProcessMouse: trying mouse action leftclick 20:35:37.994 T:139721881167872 NOTICE: Storing total System Uptime 20:35:37.994 T:139721490417408 DEBUG: CAnnouncementManager - Announcement: OnQuit from xbmc 20:35:37.994 T:139721490417408 DEBUG: GOT ANNOUNCEMENT, type: 8, from xbmc, message OnQuit 20:35:37.994 T:139721881167872 NOTICE: Saving settings 20:35:38.016 T:139721881167872 NOTICE: Saving skin settings 20:35:38.017 T:139721881167872 NOTICE: stop all 20:35:38.018 T:139720615655168 DEBUG: Thread JobWorker 139720615655168 terminating (autodelete) 20:35:38.018 T:139720624047872 DEBUG: Thread JobWorker 139720624047872 terminating (autodelete) 20:35:38.018 T:139721881167872 NOTICE: stop player 20:35:38.018 T:139721471506176 DEBUG: Thread JobWorker 139721471506176 terminating (autodelete) 20:35:38.018 T:139721881167872 DEBUG: NetworkMessage - Signaling network services to stop 20:35:38.018 T:139721881167872 NOTICE: ES: Stopping event server 20:35:38.018 T:139721881167872 DEBUG: NetworkMessage - Waiting for network services to stop 20:35:38.018 T:139721881167872 NOTICE: stopping upnp 20:35:38.219 T:139721881167872 NOTICE: stopping zeroconf publishing 20:35:38.222 T:139721881167872 NOTICE: CWebServer[8189]: Stopped 20:35:38.839 T:139719891470080 NOTICE: ES: UDP Event server stopped 20:35:38.839 T:139719891470080 DEBUG: Thread EventServer 139719891470080 terminating 20:35:38.847 T:139719581103872 DEBUG: Thread TCPServer 139719581103872 terminating 20:35:38.847 T:139721881167872 NOTICE: stop dvd detect media 20:35:38.847 T:139720893875968 DEBUG: Thread PeripEventScanner 139720893875968 terminating 20:35:38.847 T:139720885483264 DEBUG: Thread PeripBusAddon 139720885483264 terminating 20:35:38.847 T:139721233647360 DEBUG: Thread PeripBusUSBUdev 139721233647360 terminating 20:35:38.848 T:139721881167872 DEBUG: SECTION:UnloadDll(/share/CACHEDEV1_DATA/.qpkg/Kodi17/opt/lib/kodi/addons/peripheral.joystick/peripheral.joystick.so.1.2.1) 20:35:38.848 T:139721881167872 INFO: ADDON: Dll Destroyed - Joystick Support 20:35:38.848 T:139721881167872 NOTICE: clean cached files! 20:35:38.848 T:139721881167872 DEBUG: ADDON: Stopping service addons. 20:35:39.253 T:139720598607616 DEBUG: StorageServer-2.5.4 Closed down 20:35:39.253 T:139720598607616 INFO: CPythonInvoker(2, /opt/Kodi17/.kodi/addons/script.common.plugin.cache/default.py): script successfully run 20:35:39.253 T:139721881167872 DEBUG: CPythonInvoker(2, /opt/Kodi17/.kodi/addons/script.common.plugin.cache/default.py): script termination took 401ms 20:35:39.255 T:139720598607616 INFO: Python script interrupted by user 20:35:44.002 T:139720643094272 INFO: CPythonInvoker(4, /opt/Kodi17/.kodi/addons/plugin.video.SportsDevil/service/proxy_service.py): script successfully run 20:35:44.002 T:139721881167872 DEBUG: CPythonInvoker(4, /opt/Kodi17/.kodi/addons/plugin.video.SportsDevil/service/proxy_service.py): script termination took 4747ms 20:35:44.002 T:139721258825472 DEBUG: Thread ActiveAE 139721258825472 terminating 20:35:44.003 T:139720598607616 DEBUG: Thread LanguageInvoker 139720598607616 terminating 20:35:44.013 T:139720643094272 INFO: Python script interrupted by user 20:35:44.013 T:139720643094272 DEBUG: Thread LanguageInvoker 139720643094272 terminating 20:35:44.047 T:139721250432768 DEBUG: Thread AESink 139721250432768 terminating 20:35:44.275 T:139721881167872 NOTICE: closing down remote control service 20:35:44.275 T:139721881167872 INFO: LIRC SetEnabled: disabled 20:35:44.275 T:139721881167872 NOTICE: stopped 20:35:44.475 T:139721881167872 DEBUG: ------ Window Init (DialogBusy.xml) ------ 20:35:44.476 T:139721881167872 DEBUG: Window DialogBusy.xml was already loaded 20:35:44.476 T:139721881167872 DEBUG: Alloc resources: 0.02ms 20:35:44.477 T:139721881167872 NOTICE: destroy 20:35:44.477 T:139721881167872 NOTICE: unload skin 20:35:44.477 T:139721881167872 INFO: Unloading old skin ... 20:35:44.500 T:139721881167872 DEBUG: ------ Window Deinit () ------ 20:35:44.500 T:139721881167872 DEBUG: ------ Window Deinit (Home.xml) ------ 20:35:44.511 T:139721881167872 DEBUG: ------ Window Deinit (DialogButtonMenu.xml) ------ 20:35:44.511 T:139721881167872 DEBUG: ------ Window Deinit (DialogBusy.xml) ------ 20:35:44.512 T:139721881167872 WARNING: Cleanup: Having to cleanup texture lists/focus.png 20:35:44.513 T:139721881167872 DEBUG: CloseBundle - Closed bundle 20:35:44.527 T:139721881167872 DEBUG: Infobool 'window.isactive(home)' still used by 3 instances 20:35:44.527 T:139721881167872 DEBUG: Infobool 'string.isequal(skin.aspectratio,21:9)' still used by 3 instances 20:35:44.527 T:139721881167872 DEBUG: Infobool 'window.isactive(home) + string.isequal(skin.aspectratio,21:9)' still used by 2 instances 20:35:44.528 T:139721881167872 DEBUG: Infobool 'window.isactive(home) + !string.isequal(skin.aspectratio,21:9)' still used by 2 instances 20:35:44.546 T:139721881167872 INFO: XRANDR: /share/CACHEDEV1_DATA/.qpkg/Kodi17/opt/lib/kodi/kodi-xrandr --screen 0 --output HDMI1 --mode 0xee 20:35:44.592 T:139721881167872 NOTICE: unload sections 20:35:44.600 T:139721490417408 DEBUG: CAnnouncementManager - Announcement: OnClear from xbmc 20:35:44.600 T:139721490417408 DEBUG: GOT ANNOUNCEMENT, type: 2, from xbmc, message OnClear 20:35:44.602 T:139721881167872 NOTICE: special://profile/ is mapped to: special://masterprofile/ 20:35:44.602 T:139721881167872 DEBUG: object 0 --> 0 instances 20:35:44.602 T:139721881167872 DEBUG: object 1 --> 0 instances 20:35:44.602 T:139721881167872 DEBUG: object 2 --> 0 instances 20:35:44.602 T:139721881167872 DEBUG: object 3 --> 0 instances 20:35:44.602 T:139721881167872 DEBUG: object 4 --> 0 instances 20:35:44.602 T:139721881167872 DEBUG: object 5 --> 0 instances 20:35:44.602 T:139721881167872 DEBUG: object 6 --> 0 instances 20:35:44.602 T:139721881167872 DEBUG: object 7 --> 0 instances 20:35:44.602 T:139721881167872 DEBUG: object 8 --> 0 instances 20:35:44.602 T:139721881167872 DEBUG: object 9 --> 0 instances 20:35:44.603 T:139721881167872 DEBUG: AddOnLog: InputStream Adaptive: ADDON_Destroy() 20:35:44.603 T:139721881167872 DEBUG: SECTION:UnloadDll(/opt/Kodi17/.kodi/addons/inputstream.adaptive/inputstream.adaptive.so.1.0.8) 20:35:44.603 T:139721881167872 INFO: ADDON: Dll Destroyed - InputStream Adaptive 20:35:44.603 T:139721881167872 DEBUG: CSettingsManager: requested setting (pvrpowermanagement.enabled) was not found. 20:35:44.604 T:139721881167872 DEBUG: PVRManager - destroyed 20:35:44.604 T:139721881167872 DEBUG: ActiveAE DSP - destroyed 20:35:44.604 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.stars has been uninstalled.' 20:35:44.604 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in plugin.video.bild_bundesliga has been uninstalled.' 20:35:44.604 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in repository.shani has been uninstalled.' 20:35:44.604 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.nosefart has been uninstalled.' 20:35:44.604 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in resource.images.weathericons.default has been uninstalled.' 20:35:44.604 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in repository.podgod has been uninstalled.' 20:35:44.604 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.octonet has been uninstalled.' 20:35:44.604 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in webinterface.default has been uninstalled.' 20:35:44.604 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in visualization.fishbmc has been uninstalled.' 20:35:44.604 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in weather.yahoo has been uninstalled.' 20:35:44.604 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in plugin.video.madxtreams has been uninstalled.' 20:35:44.604 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in kodi.audiodecoder has been uninstalled.' 20:35:44.604 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.rsxs.euphoria has been uninstalled.' 20:35:44.604 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in plugin.video.prosport has been uninstalled.' 20:35:44.604 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in kodi.peripheral has been uninstalled.' 20:35:44.604 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.argustv has been uninstalled.' 20:35:44.604 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.rsxs.hyperspace has been uninstalled.' 20:35:44.604 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in repository.maverickrepo has been uninstalled.' 20:35:44.604 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.futures has been uninstalled.' 20:35:44.604 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audioencoder.xbmc.builtin.wma has been uninstalled.' 20:35:44.604 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in kodi.adsp has been uninstalled.' 20:35:44.604 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in repository.kodinerds has been uninstalled.' 20:35:44.605 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.pydes has been uninstalled.' 20:35:44.605 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.organya has been uninstalled.' 20:35:44.605 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.beautifulsoup4 has been uninstalled.' 20:35:44.605 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in metadata.themoviedb.org has been uninstalled.' 20:35:44.605 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in resource.images.recordlabels.white has been uninstalled.' 20:35:44.605 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in xbmc.metadata has been uninstalled.' 20:35:44.605 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in visualization.shadertoy has been uninstalled.' 20:35:44.605 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in service.xbmc.versioncheck has been uninstalled.' 20:35:44.605 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.gme has been uninstalled.' 20:35:44.605 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.dvblink has been uninstalled.' 20:35:44.605 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.httplib2 has been uninstalled.' 20:35:44.605 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.myconnpy has been uninstalled.' 20:35:44.605 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in resource.images.weatherfanart.single has been uninstalled.' 20:35:44.605 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.rsxs.flux has been uninstalled.' 20:35:44.605 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.asterwave has been uninstalled.' 20:35:44.605 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.image.resource.select has been uninstalled.' 20:35:44.605 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.beautifulsoup has been uninstalled.' 20:35:44.605 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in xbmc.gui has been uninstalled.' 20:35:44.605 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.common.plugin.cache has been uninstalled.' 20:35:44.605 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.rsxs.lattice has been uninstalled.' 20:35:44.605 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.ssf has been uninstalled.' 20:35:44.605 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.rsxs.solarwinds has been uninstalled.' 20:35:44.605 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.pctv has been uninstalled.' 20:35:44.605 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in skin.blackglassnova has been uninstalled.' 20:35:44.605 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.iptvsimple has been uninstalled.' 20:35:44.605 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.libmdr has been uninstalled.' 20:35:44.606 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.video.F4mProxy has been uninstalled.' 20:35:44.606 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.njoy has been uninstalled.' 20:35:44.606 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.actionhandler has been uninstalled.' 20:35:44.606 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.livestreamer has been uninstalled.' 20:35:44.606 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in visualization.goom has been uninstalled.' 20:35:44.606 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.vgmstream has been uninstalled.' 20:35:44.606 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.dateutil has been uninstalled.' 20:35:44.606 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.stsound has been uninstalled.' 20:35:44.606 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in metadata.common.htbackdrops.com has been uninstalled.' 20:35:44.606 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in visualization.spectrum has been uninstalled.' 20:35:44.606 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.2sf has been uninstalled.' 20:35:44.606 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.dvbviewer has been uninstalled.' 20:35:44.606 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in resource.language.en_gb has been uninstalled.' 20:35:44.606 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.maps.browser has been uninstalled.' 20:35:44.606 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.stalker has been uninstalled.' 20:35:44.606 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in plugin.video.MaverickTV has been uninstalled.' 20:35:44.606 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in metadata.common.musicbrainz.org has been uninstalled.' 20:35:44.606 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in plugin.video.skygo.de has been uninstalled.' 20:35:44.606 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.pyro has been uninstalled.' 20:35:44.606 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in metadata.local has been uninstalled.' 20:35:44.606 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in xbmc.webinterface has been uninstalled.' 20:35:44.606 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audioencoder.lame has been uninstalled.' 20:35:44.606 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in resource.language.de_de has been uninstalled.' 20:35:44.606 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in metadata.common.themoviedb.org has been uninstalled.' 20:35:44.606 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in resource.uisounds.kodi has been uninstalled.' 20:35:44.606 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in plugin.video.nick_de has been uninstalled.' 20:35:44.606 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in metadata.common.theaudiodb.com has been uninstalled.' 20:35:44.606 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in repository.kodinerds_Generic_x68_64 has been uninstalled.' 20:35:44.606 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in plugin.video.SportsDevil has been uninstalled.' 20:35:44.607 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.filmon has been uninstalled.' 20:35:44.607 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in plugin.video.kikamediathek has been uninstalled.' 20:35:44.607 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in visualization.waveform has been uninstalled.' 20:35:44.607 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in repository.mdiptv has been uninstalled.' 20:35:44.607 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in skin.estuary has been uninstalled.' 20:35:44.607 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in xbmc.json has been uninstalled.' 20:35:44.607 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.t0mm0.common has been uninstalled.' 20:35:44.607 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.qsf has been uninstalled.' 20:35:44.607 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in resource.images.weathericons.transparent has been uninstalled.' 20:35:44.607 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in metadata.common.fanart.tv has been uninstalled.' 20:35:44.607 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.biogenesis has been uninstalled.' 20:35:44.607 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in xbmc.audioencoder has been uninstalled.' 20:35:44.607 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.rsxs.flocks has been uninstalled.' 20:35:44.607 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.openmpt has been uninstalled.' 20:35:44.607 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.timidity has been uninstalled.' 20:35:44.607 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.vbox has been uninstalled.' 20:35:44.607 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.six has been uninstalled.' 20:35:44.607 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.cryptopy has been uninstalled.' 20:35:44.607 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in repository.xbmc.org has been uninstalled.' 20:35:44.607 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.xbmc.builtin.black has been uninstalled.' 20:35:44.607 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.rsxs.fieldlines has been uninstalled.' 20:35:44.607 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.modplug has been uninstalled.' 20:35:44.607 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in kodi.guilib has been uninstalled.' 20:35:44.607 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.vdr.vnsi has been uninstalled.' 20:35:44.607 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.asteroids has been uninstalled.' 20:35:44.607 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audioencoder.vorbis has been uninstalled.' 20:35:44.607 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in peripheral.joystick has been uninstalled.' 20:35:44.608 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.mediaportal.tvserver has been uninstalled.' 20:35:44.608 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.libmediathek3 has been uninstalled.' 20:35:44.608 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.fluidsynth has been uninstalled.' 20:35:44.608 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audioencoder.wav has been uninstalled.' 20:35:44.608 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in game.controller.default has been uninstalled.' 20:35:44.608 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.simplejson has been uninstalled.' 20:35:44.608 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.singledispatch has been uninstalled.' 20:35:44.608 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.xbmc.builtin.dim has been uninstalled.' 20:35:44.608 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.favourites has been uninstalled.' 20:35:44.608 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in kodi.game has been uninstalled.' 20:35:44.608 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.wmc has been uninstalled.' 20:35:44.608 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audioencoder.flac has been uninstalled.' 20:35:44.608 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in inputstream.rtmp has been uninstalled.' 20:35:44.608 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.addon.common has been uninstalled.' 20:35:44.608 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.gsf has been uninstalled.' 20:35:44.608 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.hdhomerun has been uninstalled.' 20:35:44.608 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in resource.uisounds.nebula has been uninstalled.' 20:35:44.608 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.libkika has been uninstalled.' 20:35:44.608 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.matrixtrails has been uninstalled.' 20:35:44.608 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in kodi.resource has been uninstalled.' 20:35:44.608 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.pil has been uninstalled.' 20:35:44.608 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.rsxs.helios has been uninstalled.' 20:35:44.608 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.dumb has been uninstalled.' 20:35:44.608 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in resource.images.languageflags.colour has been uninstalled.' 20:35:44.608 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in plugin.video.kika_de has been uninstalled.' 20:35:44.608 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in inputstream.adaptive has been uninstalled.' 20:35:44.608 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.skinshortcuts has been uninstalled.' 20:35:44.608 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.unidecode has been uninstalled.' 20:35:44.608 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.rsxs.skyrocket has been uninstalled.' 20:35:44.608 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.vuplus has been uninstalled.' 20:35:44.609 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.mythtv has been uninstalled.' 20:35:44.609 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.simple.downloader has been uninstalled.' 20:35:44.609 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.pingpong has been uninstalled.' 20:35:44.609 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in xbmc.core has been uninstalled.' 20:35:44.609 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in plugin.video.youtube has been uninstalled.' 20:35:44.609 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.cpblobs has been uninstalled.' 20:35:44.609 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in skin.estouchy has been uninstalled.' 20:35:44.609 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.demo has been uninstalled.' 20:35:44.609 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.sidplay has been uninstalled.' 20:35:44.609 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.requests has been uninstalled.' 20:35:44.609 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in kodi.inputstream has been uninstalled.' 20:35:44.609 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.urlresolver has been uninstalled.' 20:35:44.609 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in xbmc.pvr has been uninstalled.' 20:35:44.609 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.nextpvr has been uninstalled.' 20:35:44.609 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in plugin.video.f4mTester has been uninstalled.' 20:35:44.609 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audioencoder.xbmc.builtin.aac has been uninstalled.' 20:35:44.609 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.routing has been uninstalled.' 20:35:44.609 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in metadata.album.universal has been uninstalled.' 20:35:44.609 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in audiodecoder.snesapu has been uninstalled.' 20:35:44.609 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in metadata.common.allmusic.com has been uninstalled.' 20:35:44.609 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in metadata.tvdb.com has been uninstalled.' 20:35:44.609 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in plugin.video.sky_mediathek has been uninstalled.' 20:35:44.609 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in resource.images.studios.white has been uninstalled.' 20:35:44.609 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.rsxs.cyclone has been uninstalled.' 20:35:44.609 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in metadata.artists.universal has been uninstalled.' 20:35:44.609 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.parsedom has been uninstalled.' 20:35:44.610 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in metadata.common.imdb.com has been uninstalled.' 20:35:44.610 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in xbmc.python has been uninstalled.' 20:35:44.610 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.greynetic has been uninstalled.' 20:35:44.610 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in pvr.hts has been uninstalled.' 20:35:44.610 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in screensaver.rsxs.plasma has been uninstalled.' 20:35:44.610 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in xbmc.addon has been uninstalled.' 20:35:44.610 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in xbmc.codec has been uninstalled.' 20:35:44.610 T:139721881167872 DEBUG: ADDON: cpluff: 'Plug-in script.module.metahandler has been uninstalled.' 20:35:44.610 T:139721881167872 INFO: ADDON: cpluff: 'An unreleased information object was encountered at address 0x44edf00 with reference count 1 when destroying the associated plug-in context. Not releasing the object.' 20:35:44.610 T:139721881167872 INFO: ADDON: cpluff: 'An unreleased information object was encountered at address 0x4454380 with reference count 1 when destroying the associated plug-in context. Not releasing the object.' 20:35:44.610 T:139721881167872 INFO: ADDON: cpluff: 'An unreleased information object was encountered at address 0x446d090 with reference count 1 when destroying the associated plug-in context. Not releasing the object.' 20:35:44.610 T:139721881167872 INFO: ADDON: cpluff: 'An unreleased information object was encountered at address 0x46a43a0 with reference count 1 when destroying the associated plug-in context. Not releasing the object.' 20:35:44.610 T:139721881167872 INFO: ADDON: cpluff: 'An unreleased information object was encountered at address 0x44f0ea0 with reference count 1 when destroying the associated plug-in context. Not releasing the object.' 20:35:44.610 T:139721881167872 INFO: ADDON: cpluff: 'An unreleased information object was encountered at address 0x44fff30 with reference count 1 when destroying the associated plug-in context. Not releasing the object.' 20:35:44.610 T:139721881167872 INFO: ADDON: cpluff: 'An unreleased information object was encountered at address 0x4433ac0 with reference count 1 when destroying the associated plug-in context. Not releasing the object.' 20:35:44.610 T:139721881167872 INFO: ADDON: cpluff: 'An unreleased information object was encountered at address 0x445aa40 with reference count 1 when destroying the associated plug-in context. Not releasing the object.' 20:35:44.610 T:139721881167872 INFO: ADDON: cpluff: 'An unreleased information object was encountered at address 0x443a7e0 with reference count 1 when destroying the associated plug-in context. Not releasing the object.' 20:35:44.610 T:139721881167872 INFO: ADDON: cpluff: 'An unreleased information object was encountered at address 0x445b660 with reference count 1 when destroying the associated plug-in context. Not releasing the object.' 20:35:44.610 T:139721881167872 INFO: ADDON: cpluff: 'An unreleased information object was encountered at address 0x44577f0 with reference count 1 when destroying the associated plug-in context. Not releasing the object.' 20:35:44.610 T:139721881167872 NOTICE: application stopped...