xbmc / metadata.themoviedb.org.python

Other
44 stars 40 forks source link

UnboundLocalError: local variable 'search_results' referenced before assignment #108

Closed apo86 closed 2 years ago

apo86 commented 2 years ago
2021-10-19 21:25:35.008 T:2991     INFO <general>: [metadata.themoviedb.org.python]: Find movie with title 'Fabricated City' from year 'None'
2021-10-19 21:25:35.010 T:2991    ERROR <general>: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
                                                    - NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
                                                   Error Type: <class 'UnboundLocalError'>
                                                   Error Contents: local variable 'search_results' referenced before assignment
                                                   Traceback (most recent call last):
                                                     File "/home/osmc/.kodi/addons/metadata.themoviedb.org.python/python/scraper.py", line 185, in <module>
                                                       run()
                                                     File "/home/osmc/.kodi/addons/metadata.themoviedb.org.python/python/scraper.py", line 172, in run
                                                       search_for_movie(params["title"], params.get("year"), params['handle'], settings)
                                                     File "/home/osmc/.kodi/addons/metadata.themoviedb.org.python/python/scraper.py", line 40, in search_for_movie
                                                       if not search_results:
                                                   UnboundLocalError: local variable 'search_results' referenced before assignment
                                                   -->End of Python script error report<--

2021-10-19 21:25:35.421 T:2991  WARNING <general>: CPythonInvoker(9, /home/osmc/.kodi/addons/metadata.themoviedb.org.python/python/scraper.py): the python script "/home/osmc/.kodi/addons/metadata.themoviedb.org.python/python/scraper.py" has left several classes in memory that we couldn't clean up. The classes include: N9XBMCAddon9xbmcaddon5AddonE
2021-10-19 21:25:35.421 T:2991     INFO <general>: Python interpreter stopped
2021-10-19 21:25:35.433 T:2979    ERROR <general>: GetDirectory - Error getting plugin://metadata.themoviedb.org.python/?action=find&pathSettings=%7b%22RatingS%22%3a%22TMDb%22%2c%22add_tags%22%3atrue%2c%22certprefix%22%3a%22Rated%20%22%2c%22enable_fanarttv_artwork%22%3afalse%2c%22fanart%22%3atrue%2c%22fanarttv_clientkey%22%3a%22%22%2c%22fanarttv_language%22%3a%22en%22%2c%22imdbanyway%22%3atrue%2c%22keeporiginaltitle%22%3afalse%2c%22landscape%22%3atrue%2c%22language%22%3a%22de-DE%22%2c%22lastUpdated%22%3a%220%22%2c%22multiple_studios%22%3atrue%2c%22originalUrl%22%3a%22%22%2c%22previewUrl%22%3a%22%22%2c%22searchlanguage%22%3a%22en-US%22%2c%22tmdbcertcountry%22%3a%22de%22%2c%22trailer%22%3afalse%2c%22traktanyway%22%3afalse%7d&title=Fabricated%20City

Pretty sure #101 is responsible for this.

strinque commented 2 years ago

Same issue here, the variable search_results isn't set anymore. Seems to have been introduced in commit: ab240c98db18a06ba0fc24bbc192ab80ac848e13.

Possible Fix in file python\scraper.py:

    scraper = get_tmdb_scraper(settings)

    search_results = None
    if year is not None:
        search_results = scraper.search(title, year)
        if not search_results:
            search_results = scraper.search(title,str(int(year)-1))
        if not search_results:
            search_results = scraper.search(title,str(int(year)+1))
    if not search_results:
        search_results = scraper.search(title)
rmrector commented 2 years ago

found it. Fix incoming.

Edit: Fix pushed in version 1.5.1.

jeevcat commented 2 years ago

When will 1.5.1 end up in the matrix repo?

I see the matrix version has a different python dependency: https://mirrors.kodi.tv/addons/matrix/metadata.themoviedb.org.python/

Is there a branch maintained somewhere for this matrix version?

KarellenX commented 2 years ago

@jeevcat

It has not been merged yet... https://github.com/xbmc/repo-scrapers/pull/319 It just needs a double check before the merge button is pushed. Should happen as soon as others wake up for the day :)

Peacekeeper2000 commented 2 years ago

Ups, I just opened it as a bug under Kodi. I also logged that issue. Here is the log - as I think there might be a second issue: search language is always en-US regardless what you configured in the module (see at the end of he log marked bold):

Log Snippet

2021-10-20 11:06:20.380 T:1363 INFO : initializing python engine. 2021-10-20 11:06:20.634 T:1363 INFO : [metadata.themoviedb.org.python]: Find movie with title 'three' from year 'None' 2021-10-20 11:06:20.642 T:1363 ERROR : EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--

2021-10-20 11:06:20.911 T:1363 WARNING : CPythonInvoker(18, /storage/.kodi/addons/metadata.themoviedb.org.python/python/scraper.py): the python script "/storage/.kodi/addons/metadata.themoviedb.org.python/python/scraper.py" has left several classes in memo ry that we couldn't clean up. The classes include: N9XBMCAddon9xbmcaddon5AddonE 2021-10-20 11:06:20.911 T:1363 INFO : Python interpreter stopped 2021-10-20 11:06:20.923 T:1362 ERROR : GetDirectory - Error getting plugin://metadata.themoviedb.org.python/?action=find&pathSettings=%7b%22RatingS%22%3a%22TMDb%22%2c%22add_tags%22%3atrue%2c%22certprefix%22%3a%22Rated%20%22%2c%22enable_fanarttv_artwork%2 2%3atrue%2c%22fanart%22%3atrue%2c%22fanarttv_clientkey%22%3a%22%22%2c%22fanarttv_language%22%3a%22de%22%2c%22imdbanyway%22%3afalse%2c%22keeporiginaltitle%22%3afalse%2c%22landscape%22%3atrue%2c%22language%22%3a%22de-DE%22%2c%22lastUpdated%22%3a%220%22%2c%22multiple_s tudios%22%3afalse%2c%22originalUrl%22%3a%22%22%2c%22previewUrl%22%3a%22%22%2c%22searchlanguage%22%3a%22en-US%22%2c%22tmdbcertcountry%22%3a%22de%22%2c%22trailer%22%3afalse%2c%22traktanyway%22%3afalse%7d&title=three

apo86 commented 2 years ago

Ups, I just opened it as a bug under Kodi. I also logged that issue. Here is the log - as I think there might be a second issue: search language is always en-US regardless what you configured in the module (see at the end of he log marked bold):

Yeah, you're right. Didn't even notice that. Looks like TMDB is quite tolerant when searching with the wrong language. Or rather it just doesn't care. From what I tested the language parameter in the search query didn't affect the order and number of search result at all, only the contents like localized overview or title. But those details are fetched by the scraper in a second query using the old language setting anyways. So to be honest I don't know what the new search_lanugage parameter even does.

]edit] Ohhh, of course. It affects the is_best() sorting because of the localized titles that are returned in the search query. Okay, then that makes sense. And that's also what's broken now due to the search language always being en-US.

donnje commented 2 years ago

also I can not set the Italian language scrapers, this log file maybe can help you understand I am not an expert

2021-10-20 19:00:49.375 T:9998 INFO : ----------------------------------------------------------------------- 2021-10-20 19:00:49.375 T:9998 INFO : Starting Kodi (19.1 (19.1.0) Git:20210508-85e05228b4). Platform: Android ARM 32-bit 2021-10-20 19:00:49.375 T:9998 INFO : Using Release Kodi x32 2021-10-20 19:00:49.375 T:9998 INFO : Kodi compiled 2021-05-08 by Clang 8.0.7 (https://android.googlesource.com/toolchain/clang b55f2d4ebfd35bf643d27dbca1bb228957008617) (https://android.googlesource.com/toolchain/llvm 3c393fe7a7e13b0fba4ac75a01aa683d7a5b11cd) for Android ARM 32-bit API level 21 (API level 21) 2021-10-20 19:00:49.375 T:9998 INFO : Running on Amazon AFTSSS with Android 9.0.0 API level 28, kernel: Linux ARM 32-bit version 4.4.162+ 2021-10-20 19:00:49.376 T:9998 INFO : FFmpeg version/source: 4.3.2-Kodi 2021-10-20 19:00:49.377 T:9998 INFO : 4 CPU cores available 2021-10-20 19:00:49.377 T:9998 INFO : Product: sheldonp, Device: sheldonp, Board: sheldonp - Manufacturer: Amazon, Brand: Amazon, Model: AFTSSS, Hardware: mt8695 2021-10-20 19:00:49.382 T:9998 INFO : External storage path = /storage/emulated/0; status = ok 2021-10-20 19:00:49.382 T:9998 INFO : ARM Features: Neon enabled 2021-10-20 19:00:49.382 T:9998 INFO : special://xbmc/ is mapped to: /data/user/0/org.xbmc.kodi/cache/apk/assets 2021-10-20 19:00:49.382 T:9998 INFO : special://xbmcbin/ is mapped to: /data/user/0/org.xbmc.kodi/cache/apk/assets 2021-10-20 19:00:49.382 T:9998 INFO : special://xbmcbinaddons/ is mapped to: /data/user/0/org.xbmc.kodi/cache/apk/assets/addons 2021-10-20 19:00:49.382 T:9998 INFO : special://masterprofile/ is mapped to: /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/userdata 2021-10-20 19:00:49.382 T:9998 INFO : special://envhome/ is mapped to: /storage/emulated/0/Android/data/org.xbmc.kodi/files 2021-10-20 19:00:49.382 T:9998 INFO : special://home/ is mapped to: /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi 2021-10-20 19:00:49.382 T:9998 INFO : special://temp/ is mapped to: /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/temp 2021-10-20 19:00:49.383 T:9998 INFO : special://logpath/ is mapped to: /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/temp 2021-10-20 19:00:49.383 T:9998 INFO : The executable running is: /data/app/org.xbmc.kodi-yoHzXwSmM8FVq5FRmEs_ww==/lib/arm/libkodi.so 2021-10-20 19:00:49.426 T:9998 INFO : Local hostname: 192.168.1.218 2021-10-20 19:00:49.426 T:9998 INFO : Log File is located: /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/temp/kodi.log 2021-10-20 19:00:49.427 T:9998 INFO : ----------------------------------------------------------------------- 2021-10-20 19:00:49.438 T:9998 INFO : loading settings 2021-10-20 19:00:49.441 T:9998 INFO : special://profile/ is mapped to: special://masterprofile/ 2021-10-20 19:00:49.489 T:9998 INFO : No settings file to load (special://xbmc/system/advancedsettings.xml) 2021-10-20 19:00:49.499 T:9998 INFO : No settings file to load (special://masterprofile/advancedsettings.xml) 2021-10-20 19:00:49.499 T:9998 INFO : Default Video Player: VideoPlayer 2021-10-20 19:00:49.499 T:9998 INFO : Default Audio Player: paplayer 2021-10-20 19:00:49.499 T:9998 INFO : Disabled debug logging due to GUI setting. Level 0. 2021-10-20 19:00:49.499 T:9998 INFO : Log level changed to "INFO" 2021-10-20 19:00:49.505 T:9998 INFO : CMediaSourceSettings: loading media sources from special://masterprofile/sources.xml 2021-10-20 19:00:49.551 T:9998 INFO : creating subdirectories 2021-10-20 19:00:49.552 T:9998 INFO : userdata folder: special://masterprofile/ 2021-10-20 19:00:49.552 T:9998 INFO : recording folder: 2021-10-20 19:00:49.552 T:9998 INFO : screenshots folder: 2021-10-20 19:00:49.616 T:9998 INFO : Running database version Addons33 2021-10-20 19:00:50.127 T:9998 INFO : CAddonMgr::FindAddons: audioencoder.kodi.builtin.aac v1.0.2 installed 2021-10-20 19:00:50.128 T:9998 INFO : CAddonMgr::FindAddons: audioencoder.kodi.builtin.wma v1.0.2 installed 2021-10-20 19:00:50.128 T:9998 INFO : CAddonMgr::FindAddons: context.embuary.info v2.0.0 installed 2021-10-20 19:00:50.129 T:9998 INFO : CAddonMgr::FindAddons: game.controller.default v1.0.9 installed 2021-10-20 19:00:50.130 T:9998 INFO : CAddonMgr::FindAddons: game.controller.snes v1.0.9 installed 2021-10-20 19:00:50.131 T:9998 INFO : CAddonMgr::FindAddons: inputstream.adaptive v2.6.16 installed 2021-10-20 19:00:50.132 T:9998 INFO : CAddonMgr::FindAddons: kodi.binary.global.audioengine v1.1.1 installed 2021-10-20 19:00:50.133 T:9998 INFO : CAddonMgr::FindAddons: kodi.binary.global.filesystem v1.1.6 installed 2021-10-20 19:00:50.134 T:9998 INFO : CAddonMgr::FindAddons: kodi.binary.global.general v1.0.5 installed 2021-10-20 19:00:50.135 T:9998 INFO : CAddonMgr::FindAddons: kodi.binary.global.gui v5.15.0 installed 2021-10-20 19:00:50.135 T:9998 INFO : CAddonMgr::FindAddons: kodi.binary.global.main v1.3.0 installed 2021-10-20 19:00:50.136 T:9998 INFO : CAddonMgr::FindAddons: kodi.binary.global.network v1.0.4 installed 2021-10-20 19:00:50.137 T:9998 INFO : CAddonMgr::FindAddons: kodi.binary.global.tools v1.0.4 installed 2021-10-20 19:00:50.138 T:9998 INFO : CAddonMgr::FindAddons: kodi.binary.instance.audiodecoder v3.0.0 installed 2021-10-20 19:00:50.138 T:9998 INFO : CAddonMgr::FindAddons: kodi.binary.instance.audioencoder v2.1.0 installed 2021-10-20 19:00:50.139 T:9998 INFO : CAddonMgr::FindAddons: kodi.binary.instance.game v2.1.0 installed 2021-10-20 19:00:50.140 T:9998 INFO : CAddonMgr::FindAddons: kodi.binary.instance.imagedecoder v2.1.1 installed 2021-10-20 19:00:50.141 T:9998 INFO : CAddonMgr::FindAddons: kodi.binary.instance.inputstream v3.0.1 installed 2021-10-20 19:00:50.142 T:9998 INFO : CAddonMgr::FindAddons: kodi.binary.instance.peripheral v2.0.0 installed 2021-10-20 19:00:50.143 T:9998 INFO : CAddonMgr::FindAddons: kodi.binary.instance.pvr v7.1.0 installed 2021-10-20 19:00:50.143 T:9998 INFO : CAddonMgr::FindAddons: kodi.binary.instance.screensaver v2.1.0 installed 2021-10-20 19:00:50.144 T:9998 INFO : CAddonMgr::FindAddons: kodi.binary.instance.vfs v3.0.0 installed 2021-10-20 19:00:50.145 T:9998 INFO : CAddonMgr::FindAddons: kodi.binary.instance.videocodec v2.0.2 installed 2021-10-20 19:00:50.146 T:9998 INFO : CAddonMgr::FindAddons: kodi.binary.instance.visualization v3.0.0 installed 2021-10-20 19:00:50.147 T:9998 INFO : CAddonMgr::FindAddons: kodi.resource v1.0.0 installed 2021-10-20 19:00:50.148 T:9998 INFO : CAddonMgr::FindAddons: metadata.album.universal v3.1.4 installed 2021-10-20 19:00:50.148 T:9998 INFO : CAddonMgr::FindAddons: metadata.artists.universal v4.3.3 installed 2021-10-20 19:00:50.149 T:9998 INFO : CAddonMgr::FindAddons: metadata.common.allmusic.com v3.2.2 installed 2021-10-20 19:00:50.150 T:9998 INFO : CAddonMgr::FindAddons: metadata.common.fanart.tv v3.6.3 installed 2021-10-20 19:00:50.151 T:9998 INFO : CAddonMgr::FindAddons: metadata.common.imdb.com v3.2.2 installed 2021-10-20 19:00:50.152 T:9998 INFO : CAddonMgr::FindAddons: metadata.common.musicbrainz.org v2.2.4 installed 2021-10-20 19:00:50.153 T:9998 INFO : CAddonMgr::FindAddons: metadata.common.theaudiodb.com v2.0.3 installed 2021-10-20 19:00:50.154 T:9998 INFO : CAddonMgr::FindAddons: metadata.common.themoviedb.org v3.2.14 installed 2021-10-20 19:00:50.155 T:9998 INFO : CAddonMgr::FindAddons: metadata.generic.albums v1.0.14 installed 2021-10-20 19:00:50.156 T:9998 INFO : CAddonMgr::FindAddons: metadata.generic.artists v1.0.14 installed 2021-10-20 19:00:50.157 T:9998 INFO : CAddonMgr::FindAddons: metadata.local v1.0.1 installed 2021-10-20 19:00:50.158 T:9998 INFO : CAddonMgr::FindAddons: metadata.themoviedb.org v5.2.6 installed 2021-10-20 19:00:50.159 T:9998 INFO : CAddonMgr::FindAddons: metadata.themoviedb.org.python v1.3.3+matrix.1 installed 2021-10-20 19:00:50.159 T:9998 INFO : CAddonMgr::FindAddons: metadata.tvshows.themoviedb.org v3.5.13 installed 2021-10-20 19:00:50.160 T:9998 INFO : CAddonMgr::FindAddons: metadata.tvshows.themoviedb.org.python v1.4.5 installed 2021-10-20 19:00:50.161 T:9998 INFO : CAddonMgr::FindAddons: peripheral.joystick v1.7.1 installed 2021-10-20 19:00:50.161 T:9998 INFO : CAddonMgr::FindAddons: plugin.googledrive v1.4.10+matrix.2 installed 2021-10-20 19:00:50.162 T:9998 INFO : CAddonMgr::FindAddons: repository.xbmc.org v3.2.5 installed 2021-10-20 19:00:50.163 T:9998 INFO : CAddonMgr::FindAddons: resource.images.weathericons.default v1.1.9 installed 2021-10-20 19:00:50.164 T:9998 INFO : CAddonMgr::FindAddons: resource.language.en_gb v2.0.2 installed 2021-10-20 19:00:50.165 T:9998 INFO : CAddonMgr::FindAddons: resource.language.it_it v9.0.27 installed 2021-10-20 19:00:50.165 T:9998 INFO : CAddonMgr::FindAddons: resource.uisounds.kodi v1.0.1 installed 2021-10-20 19:00:50.166 T:9998 INFO : CAddonMgr::FindAddons: screensaver.xbmc.builtin.black v1.0.34 installed 2021-10-20 19:00:50.166 T:9998 INFO : CAddonMgr::FindAddons: screensaver.xbmc.builtin.dim v1.0.64 installed 2021-10-20 19:00:50.167 T:9998 INFO : CAddonMgr::FindAddons: script.embuary.info v2.0.8 installed 2021-10-20 19:00:50.168 T:9998 INFO : CAddonMgr::FindAddons: script.module.arrow v1.0.3.1 installed 2021-10-20 19:00:50.168 T:9998 INFO : CAddonMgr::FindAddons: script.module.certifi v2020.12.05+matrix.1 installed 2021-10-20 19:00:50.169 T:9998 INFO : CAddonMgr::FindAddons: script.module.chardet v4.0.0+matrix.1 installed 2021-10-20 19:00:50.169 T:9998 INFO : CAddonMgr::FindAddons: script.module.clouddrive.common v1.3.9+matrix.2 installed 2021-10-20 19:00:50.170 T:9998 INFO : CAddonMgr::FindAddons: script.module.dateutil v2.8.1+matrix.1 installed 2021-10-20 19:00:50.171 T:9998 INFO : CAddonMgr::FindAddons: script.module.dropbox v9.4.0+matrix.1 installed 2021-10-20 19:00:50.171 T:9998 INFO : CAddonMgr::FindAddons: script.module.future v0.18.2+matrix.1 installed 2021-10-20 19:00:50.172 T:9998 INFO : CAddonMgr::FindAddons: script.module.idna v2.10.0+matrix.1 installed 2021-10-20 19:00:50.173 T:9998 INFO : CAddonMgr::FindAddons: script.module.kodi-six v0.1.3.1 installed 2021-10-20 19:00:50.175 T:9998 INFO : CAddonMgr::FindAddons: script.module.pathtools v0.1.2+matrix.2 installed 2021-10-20 19:00:50.176 T:9998 INFO : CAddonMgr::FindAddons: script.module.pil v5.1.0 installed 2021-10-20 19:00:50.176 T:9998 INFO : CAddonMgr::FindAddons: script.module.pycryptodome v3.4.3 installed 2021-10-20 19:00:50.177 T:9998 INFO : CAddonMgr::FindAddons: script.module.pyqrcode v1.2.1+matrix.2 installed 2021-10-20 19:00:50.178 T:9998 INFO : CAddonMgr::FindAddons: script.module.requests v2.25.1+matrix.1 installed 2021-10-20 19:00:50.178 T:9998 INFO : CAddonMgr::FindAddons: script.module.routing v0.2.3+matrix.1 installed 2021-10-20 19:00:50.179 T:9998 INFO : CAddonMgr::FindAddons: script.module.simplecache v2.0.2 installed 2021-10-20 19:00:50.180 T:9998 INFO : CAddonMgr::FindAddons: script.module.six v1.15.0+matrix.1 installed 2021-10-20 19:00:50.181 T:9998 INFO : CAddonMgr::FindAddons: script.module.typing_extensions v3.7.4.3 installed 2021-10-20 19:00:50.181 T:9998 INFO : CAddonMgr::FindAddons: script.module.urllib3 v1.26.4+matrix.1 installed 2021-10-20 19:00:50.182 T:9998 INFO : CAddonMgr::FindAddons: script.module.watchdog v0.10.2+matrix.1 installed 2021-10-20 19:00:50.183 T:9998 INFO : CAddonMgr::FindAddons: script.xbmcbackup v1.6.7 installed 2021-10-20 19:00:50.183 T:9998 INFO : CAddonMgr::FindAddons: service.librarywatchdog v1.1.1 installed 2021-10-20 19:00:50.184 T:9998 INFO : CAddonMgr::FindAddons: service.xbmc.versioncheck v0.5.19+matrix.1 installed 2021-10-20 19:00:50.185 T:9998 INFO : CAddonMgr::FindAddons: skin.estouchy v3.0.6 installed 2021-10-20 19:00:50.186 T:9998 INFO : CAddonMgr::FindAddons: skin.estuary v3.0.5 installed 2021-10-20 19:00:50.187 T:9998 INFO : CAddonMgr::FindAddons: webinterface.default v19.x-2.4.8 installed 2021-10-20 19:00:50.187 T:9998 INFO : CAddonMgr::FindAddons: xbmc.addon v19.1.0 installed 2021-10-20 19:00:50.188 T:9998 INFO : CAddonMgr::FindAddons: xbmc.core v0.1.0 installed 2021-10-20 19:00:50.189 T:9998 INFO : CAddonMgr::FindAddons: xbmc.gui v5.15.0 installed 2021-10-20 19:00:50.189 T:9998 INFO : CAddonMgr::FindAddons: xbmc.json v12.3.0 installed 2021-10-20 19:00:50.190 T:9998 INFO : CAddonMgr::FindAddons: xbmc.metadata v2.1.0 installed 2021-10-20 19:00:50.190 T:9998 INFO : CAddonMgr::FindAddons: xbmc.python v3.0.0 installed 2021-10-20 19:00:50.191 T:9998 INFO : CAddonMgr::FindAddons: xbmc.webinterface v1.0.0 installed 2021-10-20 19:00:50.239 T:10004 INFO : Float is supported 2021-10-20 19:00:50.370 T:10004 INFO : Skipped 1 duplicate messages.. 2021-10-20 19:00:50.370 T:10004 INFO : Found 1 Lists of Devices 2021-10-20 19:00:50.370 T:10004 INFO : Enumerated AUDIOTRACK devices: 2021-10-20 19:00:50.371 T:10004 INFO : Device 1 2021-10-20 19:00:50.371 T:10004 INFO : m_deviceName : AudioTrack (RAW) 2021-10-20 19:00:50.371 T:10004 INFO : m_displayName : AudioTrack (RAW) 2021-10-20 19:00:50.371 T:10004 INFO : m_displayNameExtra: Android IEC packer 2021-10-20 19:00:50.371 T:10004 INFO : m_deviceType : AE_DEVTYPE_HDMI 2021-10-20 19:00:50.371 T:10004 INFO : m_channels : FL, FR, FC, LFE, SL, SR, BL, BR, BC, BLOC, BROC 2021-10-20 19:00:50.371 T:10004 INFO : m_sampleRates : 32000,44100,48000,88200,96000,176400,192000,32000,44100,48000,88200,96000,176400,192000 2021-10-20 19:00:50.371 T:10004 INFO : m_dataFormats : AE_FMT_S16LE,AE_FMT_FLOAT,AE_FMT_RAW,AE_FMT_S16LE,AE_FMT_FLOAT,AE_FMT_RAW 2021-10-20 19:00:50.371 T:10004 INFO : m_streamTypes : STREAM_TYPE_AC3,STREAM_TYPE_EAC3 2021-10-20 19:00:50.372 T:10005 INFO : CActiveAESink::OpenSink - initialize sink 2021-10-20 19:00:50.373 T:10005 INFO : Trying to open: samplerate: 44100, channelMask: 12, encoding: 4 2021-10-20 19:00:50.383 T:10005 INFO : CAESinkAUDIOTRACK::Initializing with: m_sampleRate: 44100 format: AE_FMT_FLOAT (AE) method: PCM stream-type: PCM-STREAM min_buffer_size: 56720 m_frames: 1772 m_frameSize: 8 channels: 2 2021-10-20 19:00:50.415 T:9998 INFO : CKeyboardLayoutManager: loading keyboard layouts from special://xbmc/system/keyboardlayouts... 2021-10-20 19:00:50.458 T:9998 INFO : CDecoderFilter: loading filters from special://masterprofile/decoderfilter.xml 2021-10-20 19:00:50.532 T:9998 INFO : Mediacodec decoder: OMX.google.aac.decoder 2021-10-20 19:00:50.532 T:9998 INFO : Mediacodec decoder: OMX.dolby.ac3.decoder 2021-10-20 19:00:50.532 T:9998 INFO : Mediacodec decoder: OMX.google.amrnb.decoder 2021-10-20 19:00:50.532 T:9998 INFO : Mediacodec decoder: OMX.dolby.eac3.decoder 2021-10-20 19:00:50.532 T:9998 INFO : Mediacodec decoder: OMX.google.flac.decoder 2021-10-20 19:00:50.532 T:9998 INFO : Mediacodec decoder: OMX.google.g711.alaw.decoder 2021-10-20 19:00:50.532 T:9998 INFO : Mediacodec decoder: OMX.google.g711.mlaw.decoder 2021-10-20 19:00:50.533 T:9998 INFO : Mediacodec decoder: OMX.google.mp3.decoder 2021-10-20 19:00:50.533 T:9998 INFO : Mediacodec decoder: OMX.google.opus.decoder 2021-10-20 19:00:50.533 T:9998 INFO : Mediacodec decoder: OMX.google.raw.decoder 2021-10-20 19:00:50.533 T:9998 INFO : Mediacodec decoder: OMX.google.vorbis.decoder 2021-10-20 19:00:50.533 T:9998 INFO : Mediacodec decoder: OMX.MTK.VIDEO.DECODER.AVC 2021-10-20 19:00:50.533 T:9998 INFO : Mediacodec decoder: OMX.google.h264.decoder 2021-10-20 19:00:50.533 T:9998 INFO : Mediacodec decoder: OMX.MTK.VIDEO.DECODER.H263 2021-10-20 19:00:50.533 T:9998 INFO : Mediacodec decoder: OMX.google.h263.decoder 2021-10-20 19:00:50.533 T:9998 INFO : Mediacodec decoder: OMX.MTK.VIDEO.DECODER.HEVC 2021-10-20 19:00:50.533 T:9998 INFO : Mediacodec decoder: OMX.google.hevc.decoder 2021-10-20 19:00:50.533 T:9998 INFO : Mediacodec decoder: OMX.MTK.VIDEO.DECODER.MPEG2 2021-10-20 19:00:50.533 T:9998 INFO : Mediacodec decoder: OMX.MTK.VIDEO.DECODER.MPEG4 2021-10-20 19:00:50.533 T:9998 INFO : Mediacodec decoder: OMX.google.mpeg4.decoder 2021-10-20 19:00:50.534 T:9998 INFO : Mediacodec decoder: OMX.MTK.VIDEO.DECODER.VPX 2021-10-20 19:00:50.534 T:9998 INFO : Mediacodec decoder: OMX.google.vp8.decoder 2021-10-20 19:00:50.534 T:9998 INFO : Mediacodec decoder: OMX.MTK.VIDEO.DECODER.VP9 2021-10-20 19:00:50.534 T:9998 INFO : Mediacodec decoder: OMX.google.vp9.decoder 2021-10-20 19:00:50.535 T:9998 INFO : RetroPlayer[PROCESS]: Registering process control for Android 2021-10-20 19:00:50.535 T:9998 INFO : RetroPlayer[RENDER]: Registering renderer factory for OpenGLES 2021-10-20 19:00:50.537 T:9998 INFO : CAndroidUtils: window resolution: 1920x1080 2021-10-20 19:00:50.537 T:9998 INFO : CAndroidUtils: Current resolution: 1920x1080 1280x720 @ 59.939999 - Full Screen 2021-10-20 19:00:50.537 T:9998 INFO : Skipped 1 duplicate messages.. 2021-10-20 19:00:50.537 T:9998 INFO : EGL_VERSION = 1.4 Android META-EGL 2021-10-20 19:00:50.537 T:9998 INFO : EGL_VENDOR = Android 2021-10-20 19:00:50.537 T:9998 INFO : EGL_EXTENSIONS = EGL_KHR_get_all_proc_addresses EGL_ANDROID_presentation_time EGL_KHR_swap_buffers_with_damage EGL_ANDROID_get_native_client_buffer EGL_ANDROID_front_buffer_auto_refresh EGL_ANDROID_get_frame_timestamps EGL_EXT_surface_SMPTE2086_metadata EGL_EXT_surface_CTA861_3_metadata EGL_KHR_image EGL_KHR_image_base EGL_KHR_gl_texture_2D_image EGL_KHR_gl_texture_cubemap_image EGL_KHR_gl_renderbuffer_image EGL_KHR_fence_sync EGL_KHR_create_context EGL_KHR_surfaceless_context EGL_EXT_create_context_robustness EGL_ANDROID_image_native_buffer EGL_KHR_wait_sync EGL_ANDROID_recordable EGL_KHR_partial_update EGL_EXT_pixel_format_float EGL_EXT_buffer_age EGL_KHR_mutable_render_buffer EGL_EXT_yuv_surface EGL_IMG_context_priority 2021-10-20 19:00:50.537 T:9998 INFO : EGL_CLIENT_EXTENSIONS = NULL 2021-10-20 19:00:50.548 T:9998 INFO : CApplication::CreateGUI - using the default windowing system 2021-10-20 19:00:50.549 T:9998 INFO : Checking resolution 16 2021-10-20 19:00:50.549 T:9998 INFO : CAndroidUtils: SetNativeResolution: 3: 1280x720 1280x720@59.939999 2021-10-20 19:00:50.555 T:9998 INFO : GL_VENDOR = Imagination Technologies 2021-10-20 19:00:50.556 T:9998 INFO : GL_RENDERER = PowerVR Rogue GE8300 2021-10-20 19:00:50.556 T:9998 INFO : GL_VERSION = OpenGL ES 3.2 build 1.10@5187610 2021-10-20 19:00:50.556 T:9998 INFO : GL_SHADING_LANGUAGE_VERSION = OpenGL ES GLSL ES 3.20 build 1.10@5187610 2021-10-20 19:00:50.556 T:9998 INFO : GL_EXTENSIONS = GL_EXT_debug_marker GL_ANDROID_extension_pack_es31a GL_EXT_blend_minmax GL_EXT_buffer_storage GL_EXT_clear_texture GL_EXT_clip_control GL_EXT_color_buffer_float GL_EXT_conservative_depth GL_EXT_copy_image GL_EXT_discard_framebuffer GL_EXT_draw_buffers GL_EXT_draw_buffers_indexed GL_EXT_draw_elements_base_vertex GL_EXT_EGL_image_array GL_EXT_external_buffer GL_EXT_float_blend GL_EXT_geometry_point_size GL_EXT_geometry_shader GL_EXT_gpu_shader5 GL_EXT_memory_object GL_EXT_memory_object_fd GL_EXT_multi_draw_arrays GL_EXT_multisampled_render_to_texture GL_EXT_multisampled_render_to_texture2 GL_EXT_occlusion_query_boolean GL_EXT_polygon_offset_clamp GL_EXT_primitive_bounding_box GL_EXT_pvrtc_sRGB GL_EXT_read_format_bgra GL_EXT_robustness GL_EXT_separate_shader_objects GL_EXT_shader_framebuffer_fetch GL_EXT_shader_group_vote GL_EXT_shader_implicit_conversions GL_EXT_shader_io_blocks GL_EXT_shader_non_constant_global_initializers GL_EXT_shader_pixel_local_storage GL_EXT_shader_pixel_local_storage2 GL_EXT_shader_texture_lod GL_EXT_shadow_samplers GL_EXT_sparse_texture GL_EXT_sRGB_write_control GL_EXT_tessellation_point_size GL_EXT_tessellation_shader GL_EXT_texture_border_clamp GL_EXT_texture_buffer GL_EXT_texture_cube_map_array GL_EXT_texture_format_BGRA8888 GL_EXT_texture_rg GL_EXT_texture_sRGB_decode GL_EXT_texture_sRGB_R8 GL_EXT_texture_sRGB_RG8 GL_EXT_YUV_target GL_IMG_bindless_texture GL_IMG_framebuffer_downsample GL_IMG_multisampled_render_to_texture GL_IMG_program_binary GL_IMG_read_format GL_IMG_shader_binary GL_IMG_texture_compression_pvrtc GL_IMG_texture_compression_pvrtc2 GL_IMG_texture_format_BGRA8888 GL_IMG_texture_npot GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent GL_KHR_debug GL_KHR_robustness GL_KHR_texture_compression_astc_ldr GL_OES_compressed_ETC1_RGB8_texture GL_OES_depth24 GL_OES_depth_texture GL_OES_draw_buffers_indexed GL_OES_draw_elements_base_vertex GL_OES_EGL_image GL_OES_EGL_image_external GL_OES_EGL_image_external_essl3 GL_OES_EGL_sync GL_OES_element_index_uint GL_OES_fragment_precision_high GL_OES_geometry_point_size GL_OES_geometry_shader GL_OES_get_program_binary GL_OES_gpu_shader5 GL_OES_mapbuffer GL_OES_packed_depth_stencil GL_OES_required_internalformat GL_OES_rgb8_rgba8 GL_OES_sample_shading GL_OES_sample_variables GL_OES_shader_image_atomic GL_OES_shader_io_blocks GL_OES_shader_multisample_interpolation GL_OES_standard_derivatives GL_OES_surfaceless_context GL_OES_tessellation_point_size GL_OES_tessellation_shader GL_OES_texture_border_clamp GL_OES_texture_buffer GL_OES_texture_cube_map_array GL_OES_texture_float GL_OES_texture_half_float GL_OES_texture_npot GL_OES_texture_stencil8 GL_OES_texture_storage_multisample_2d_array GL_OES_vertex_array_object GL_OES_vertex_half_float 2021-10-20 19:00:50.583 T:9998 INFO : CAndroidUtils: SetNativeResolution: 3: 1280x720 1280x720@59.939999 2021-10-20 19:00:50.585 T:9998 INFO : GLES: Maximum texture width: 4096 2021-10-20 19:00:51.046 T:9998 INFO : GLES: Enabling VSYNC 2021-10-20 19:00:51.048 T:9998 INFO : load keymapping 2021-10-20 19:00:51.058 T:9998 INFO : Loading special://xbmc/system/keymaps/appcommand.xml 2021-10-20 19:00:51.059 T:9998 INFO : Loading special://xbmc/system/keymaps/customcontroller.AppleRemote.xml 2021-10-20 19:00:51.062 T:9998 INFO : Loading special://xbmc/system/keymaps/customcontroller.Harmony.xml 2021-10-20 19:00:51.070 T:9998 INFO : Loading special://xbmc/system/keymaps/customcontroller.SiriRemote.xml 2021-10-20 19:00:51.072 T:9998 INFO : Loading special://xbmc/system/keymaps/gamepad.xml 2021-10-20 19:00:51.076 T:9998 INFO : Loading special://xbmc/system/keymaps/joystick.xml 2021-10-20 19:00:51.081 T:9998 INFO : Loading special://xbmc/system/keymaps/keyboard.xml 2021-10-20 19:00:51.091 T:9998 INFO : Loading special://xbmc/system/keymaps/mouse.xml 2021-10-20 19:00:51.093 T:9998 INFO : Loading special://xbmc/system/keymaps/remote.xml 2021-10-20 19:00:51.099 T:9998 INFO : Loading special://xbmc/system/keymaps/touchscreen.xml 2021-10-20 19:00:51.105 T:9998 INFO : GUI format 1280x720, Display 1280x720 @ 59.939999 - Full Screen 2021-10-20 19:00:51.105 T:9998 INFO : CLangInfo: loading resource.language.en_gb language information... 2021-10-20 19:00:51.111 T:9998 INFO : global locale set to C 2021-10-20 19:00:51.112 T:9998 INFO : CLangInfo: loading resource.language.en_gb language strings... 2021-10-20 19:00:51.267 T:10020 INFO : Running database version Addons33 2021-10-20 19:00:51.270 T:10020 INFO : Running database version ViewModes6 2021-10-20 19:00:51.275 T:10020 INFO : Running database version Textures13 2021-10-20 19:00:51.287 T:10020 INFO : Running database version MyMusic82 2021-10-20 19:00:51.306 T:10020 INFO : Running database version MyVideos119 2021-10-20 19:00:51.310 T:10020 INFO : Running database version TV38 2021-10-20 19:00:51.314 T:10020 INFO : Running database version Epg13 2021-10-20 19:00:51.393 T:9998 INFO : Unloaded skin 2021-10-20 19:00:51.397 T:9998 INFO : load skin from: /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/skin.estuary/ (version: 3.0.5) 2021-10-20 19:00:51.398 T:9998 INFO : load fonts for skin... 2021-10-20 19:00:51.402 T:9998 INFO : Loading skin includes from /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/skin.estuary/xml/Includes.xml 2021-10-20 19:00:51.530 T:9998 INFO : Loading fonts from /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/skin.estuary/xml/Font.xml 2021-10-20 19:00:51.590 T:9998 INFO : load new skin... 2021-10-20 19:00:51.591 T:9998 INFO : Loading custom window XMLs from skin path /data/user/0/org.xbmc.kodi/cache/apk/assets/addons/skin.estuary/xml 2021-10-20 19:00:51.627 T:9998 INFO : initialize new skin... 2021-10-20 19:00:51.628 T:9998 INFO : Loading skin file: DialogBusy.xml, load type: LOAD_ON_GUI_INIT 2021-10-20 19:00:51.643 T:9998 INFO : Skipped 1 duplicate messages.. 2021-10-20 19:00:51.643 T:9998 INFO : Loading skin file: DialogNotification.xml, load type: LOAD_ON_GUI_INIT 2021-10-20 19:00:51.646 T:9998 INFO : Loading skin file: DialogVolumeBar.xml, load type: LOAD_ON_GUI_INIT 2021-10-20 19:00:51.650 T:9998 INFO : Loading skin file: DialogExtendedProgressBar.xml, load type: LOAD_ON_GUI_INIT 2021-10-20 19:00:51.654 T:9998 INFO : Loading skin file: Pointer.xml, load type: LOAD_ON_GUI_INIT 2021-10-20 19:00:51.657 T:9998 INFO : Loading skin file: DialogSeekBar.xml, load type: LOAD_ON_GUI_INIT 2021-10-20 19:00:51.689 T:9998 INFO : Loading skin file: Custom_1109_TopBarOverlay.xml, load type: LOAD_ON_GUI_INIT 2021-10-20 19:00:51.713 T:9998 INFO : Loading resource://resource.uisounds.kodi/sounds.xml 2021-10-20 19:00:51.793 T:9998 INFO : skin loaded... 2021-10-20 19:00:51.795 T:9998 INFO : Loading skin file: Startup.xml, load type: LOAD_EVERY_TIME 2021-10-20 19:00:51.796 T:9998 INFO : Loading skin file: Home.xml, load type: KEEP_IN_MEMORY 2021-10-20 19:00:52.077 T:9998 WARNING : JSONRPC: Could not parse type "Setting.Details.SettingList" 2021-10-20 19:00:52.077 T:9998 INFO : JSONRPC: Adding type "Setting.Details.SettingList" to list of incomplete definitions (waiting for "Setting.Details.Setting") 2021-10-20 19:00:52.078 T:9998 INFO : JSONRPC: Resolving incomplete types/methods referencing Setting.Details.Setting 2021-10-20 19:00:52.148 T:9998 INFO : JSONRPC v12.3.0: Successfully initialized 2021-10-20 19:00:52.173 T:9998 INFO : CPeripheralBusAndroid: scanning for input devices... 2021-10-20 19:00:52.197 T:9998 INFO : Register - new keyboard device registered on application->keyboard: Keyboard (0000:0000) 2021-10-20 19:00:52.199 T:9998 INFO : Register - new mouse device registered on application->mouse: Mouse (0000:0000) 2021-10-20 19:00:52.206 T:9998 INFO : Loading player core factory settings from special://xbmc/system/playercorefactory.xml. 2021-10-20 19:00:52.208 T:9998 INFO : Loaded playercorefactory configuration 2021-10-20 19:00:52.210 T:9998 INFO : Loading player core factory settings from special://masterprofile/playercorefactory.xml. 2021-10-20 19:00:52.210 T:9998 INFO : special://masterprofile/playercorefactory.xml does not exist. Skipping. 2021-10-20 19:00:52.210 T:9998 INFO : removing tempfiles 2021-10-20 19:00:52.824 T:10027 INFO : initializing python engine. 2021-10-20 19:00:52.847 T:9998 INFO : Skipped 2 duplicate messages.. 2021-10-20 19:00:52.847 T:9998 INFO : initialize done 2021-10-20 19:00:52.847 T:10030 INFO : initializing python engine. 2021-10-20 19:00:52.848 T:9998 INFO : Running the application... 2021-10-20 19:00:52.877 T:9998 INFO : starting zeroconf publishing 2021-10-20 19:00:52.878 T:9998 INFO : starting upnp client 2021-10-20 19:00:52.878 T:9998 INFO : starting upnp renderer 2021-10-20 19:00:52.894 T:10038 INFO : ES: Starting UDP Event server on port 9777 2021-10-20 19:00:52.895 T:10038 INFO : UDP: Listening on port 9777 (ipv6 : false) 2021-10-20 19:00:52.902 T:9998 INFO : JSONRPC Server: Successfully initialized 2021-10-20 19:00:55.425 T:10035 INFO : ZeroconfAndroid: Kodi (192.168.1.218). now registered and active 2021-10-20 19:00:57.367 T:10073 INFO : Skipped 1 duplicate messages.. 2021-10-20 19:00:57.367 T:10073 INFO : [script.module.clouddrive.common][service-source-2256103792]: Service 'source' started in port 8585 2021-10-20 19:00:57.872 T:10023 ERROR : CUPnPDirectory::GetResource - unable to find uuid 29403a0b-7970-8476-0088-c5db07ceb9e2 2021-10-20 19:01:00.737 T:10030 INFO : CPythonInvoker(3, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.xbmc.versioncheck/resources/lib/runner.py): script successfully run 2021-10-20 19:01:01.177 T:10030 INFO : Python interpreter stopped 2021-10-20 19:01:07.124 T:10022 INFO : CAddonMgr::FindAddon: game.controller.default v1.0.15 installed 2021-10-20 19:01:08.582 T:9998 INFO : Loading skin file: Settings.xml, load type: KEEP_IN_MEMORY 2021-10-20 19:01:10.185 T:9998 INFO : Attempting to default to: 2021-10-20 19:01:10.185 T:9998 INFO : Loading skin file: FileManager.xml, load type: KEEP_IN_MEMORY 2021-10-20 19:01:11.674 T:9998 INFO : Loading skin file: DialogMediaSource.xml, load type: KEEP_IN_MEMORY 2021-10-20 19:01:13.199 T:9998 INFO : Loading skin file: FileBrowser.xml, load type: KEEP_IN_MEMORY 2021-10-20 19:01:22.601 T:9998 ERROR : GetDirectory - Error getting / 2021-10-20 19:01:22.601 T:9998 ERROR : CGUIDialogFileBrowser::GetDirectory(/) failed 2021-10-20 19:01:24.725 T:9998 ERROR : GetDirectory - Error getting / 2021-10-20 19:01:24.725 T:9998 ERROR : CGUIDialogFileBrowser::GetDirectory(/) failed 2021-10-20 19:01:26.072 T:10022 INFO : CAddonMgr::FindAddon: game.controller.snes v1.0.14 installed 2021-10-20 19:01:26.901 T:9998 ERROR : GetDirectory - Error getting / 2021-10-20 19:01:26.901 T:9998 ERROR : CGUIDialogFileBrowser::GetDirectory(/) failed 2021-10-20 19:01:29.096 T:10022 INFO : CAddonMgr::FindAddon: inputstream.adaptive v19.0.0 installed 2021-10-20 19:01:32.018 T:10022 INFO : CAddonMgr::FindAddon: metadata.album.universal v3.1.5 installed 2021-10-20 19:01:34.470 T:10022 INFO : CAddonMgr::FindAddon: metadata.artists.universal v4.3.4 installed 2021-10-20 19:01:36.302 T:10022 INFO : CAddonMgr::FindAddon: metadata.common.imdb.com v3.2.4 installed 2021-10-20 19:01:38.430 T:10022 INFO : CAddonMgr::FindAddon: metadata.common.themoviedb.org v3.2.17 installed 2021-10-20 19:01:41.305 T:10022 INFO : CAddonMgr::FindAddon: metadata.themoviedb.org.python v1.5.0+matrix.1 installed 2021-10-20 19:01:56.304 T:10022 INFO : CAddonMgr::FindAddon: metadata.tvshows.themoviedb.org.python v1.4.7 installed 2021-10-20 19:01:58.698 T:10022 INFO : CAddonMgr::FindAddon: resource.language.it_it v9.0.37 installed 2021-10-20 19:02:00.691 T:10022 INFO : CAddonMgr::FindAddon: script.module.pyqrcode v1.2.1+matrix.4 installed 2021-10-20 19:02:02.103 T:10022 INFO : CServiceAddonManager: failed to stop service.xbmc.versioncheck (may have ended) 2021-10-20 19:02:03.887 T:10022 INFO : CAddonMgr::FindAddon: service.xbmc.versioncheck v0.5.20+matrix.1 installed 2021-10-20 19:02:03.896 T:10225 INFO : initializing python engine. 2021-10-20 19:02:19.707 T:9998 INFO : Loading skin file: DialogConfirm.xml, load type: KEEP_IN_MEMORY 2021-10-20 19:02:25.069 T:10225 INFO : CPythonInvoker(4, /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/service.xbmc.versioncheck/resources/lib/runner.py): script successfully run 2021-10-20 19:02:25.560 T:10225 INFO : Python interpreter stopped 2021-10-20 19:02:33.251 T:9998 INFO : Samba is idle. Closing the remaining connections 2021-10-20 19:04:56.504 T:10005 INFO : CActiveAESink::OpenSink - initialize sink 2021-10-20 19:04:56.509 T:10005 INFO : Trying to open: samplerate: 44100, channelMask: 12, encoding: 4 2021-10-20 19:04:56.548 T:10005 INFO : CAESinkAUDIOTRACK::Initializing with: m_sampleRate: 44100 format: AE_FMT_FLOAT (AE) method: PCM stream-type: PCM-STREAM min_buffer_size: 56720 m_frames: 1772 m_frameSize: 8 channels: 2 2021-10-20 19:05:05.485 T:9998 INFO : Loading skin file: FileBrowser.xml, load type: KEEP_IN_MEMORY 2021-10-20 19:05:42.792 T:9998 INFO : Loading skin file: FileBrowser.xml, load type: KEEP_IN_MEMORY 2021-10-20 19:09:09.360 T:9998 INFO : Loading skin file: FileBrowser.xml, load type: KEEP_IN_MEMORY 2021-10-20 19:09:15.686 T:9998 ERROR : GetDirectory - Error getting / 2021-10-20 19:09:15.686 T:9998 ERROR : CGUIDialogFileBrowser::GetDirectory(/) failed 2021-10-20 19:09:17.270 T:9998 ERROR : NFS: Failed to mount nfs share: (nfs_mount_async failed. Failed to start connection. Failed to start connection. Invalid address:. Can not resolv into IPv4/v6 structure.) 2021-10-20 19:09:20.275 T:9998 ERROR : GetDirectory - Error getting nfs:// 2021-10-20 19:09:20.275 T:9998 ERROR : CGUIDialogFileBrowser::GetDirectory(nfs://) failed 2021-10-20 19:09:23.982 T:9998 INFO : Loading skin file: FileBrowser.xml, load type: KEEP_IN_MEMORY 2021-10-20 19:10:53.006 T:9998 INFO : NFS is idle. Closing the remaining connections. 2021-10-20 19:14:53.343 T:9998 INFO : CWinSystemAndroid::DestroyWindow

KarellenX commented 2 years ago

@donnje

Please always use our paste service to upload logs.... https://paste.kodi.tv/

If you are not sure how to use, read here... https://forum.kodi.tv/showthread.php?tid=323719&pid=2839494#pid2839494

Also, that is not a debuglog. You have not enabled debug mode in Kodi.

mkaflowski commented 2 years ago

So to be honest I don't know what the new search_lanugage parameter even does.

I have added search_languege because I wanted results in polish language but sorting in polish was kind of broken. For example if you have popular movie "My Son" it has polish tilte "Mój Syn" and some other small movie with name "My Son" was returned because it matched better to file name("My Son.mp4"). I will check if it is always "en-US" again next week. This should be moved to other isseue because this is fixed by rmrector.

apo86 commented 2 years ago

I have added search_languege because I wanted results in polish language but sorting in polish was kind of broken. For example if you have popular movie "My Son" it has polish tilte "Mój Syn" and some other small movie with name "My Son" was returned because it matched better to file name("My Son.mp4").

Yeah I got that now. I was confused because I didn't think of the title matching the scraper does after the search query.

And regarding the default to en-US I think I can also explain: This has to be set in the source-specific scraper settings and not in the general scraper settings.

@Peacekeeper2000 Go to Files -> open context menu of the source folder -> "Change content" -> "- Settings" -> "Search language". Exit all menus with "ok" or the change won't be saved.

PS: Unrelated, but if anyone is wondering (like me) where that information is stored, it's in .kodi/userdata/Database/MyVideos.db in the "path" table.

donnje commented 2 years ago

I Have on W kodi 19 and I see the italian scrapes if I capy the file .kodi/userdata/Database/MyVideos.db and I replace it with the file on android Kodi 19.2, disable scrapes updating should i see italian scrapes or am i saying nonsense?

apo86 commented 2 years ago

No, don't copy that file. You should provide a log, like KarellenX explained, and/or a more detailed description of your problem. What are you doing (step by step), what is the outcome you expect, what is the actual outcome? Also probably open a separate issue here or post to the Kodi forums, because it seems like a different problem. From what you have said so far it sounds like you have problems with the language of the files being scraped. If that is the case, please have a look at my previous post and check the steps to change language settings for the scraper on your existing movie source(s).

Peacekeeper2000 commented 2 years ago

@Peacekeeper2000 Go to Files -> open context menu of the source folder -> "Change content" -> "- Settings" -> "Search language". Exit all menus with "ok" or the change won't be saved.

PS: Unrelated, but if anyone is wondering (like me) where that information is stored, it's in .kodi/userdata/Database/MyVideos.db in the "path" table.

No Problem, I am waiting for 1.5.1 before I make a try with the search language again. ( And when I find the correct year, it currently works fine without changing the search language to de-DE. - Just when I put an additional (NV) in the filename to mark that the movie is not complete, it struggles again - looking forward, if that will also happen in 1.5.1 )

donnje commented 2 years ago

No, don't copy that file. You should provide a log, like KarellenX explained, and/or a more detailed description of your problem. What are you doing (step by step), what is the outcome you expect, what is the actual outcome? Also probably open a separate issue here or post to the Kodi forums, because it seems like a different problem. From what you have said so far it sounds like you have problems with the language of the files being scraped. If that is the case, please have a look at my previous post and check the steps to change language settings for the scraper on your existing movie source(s).

No, don't copy that file. You should provide a log, like KarellenX explained, and/or a more detailed description of your problem. What are you doing (step by step), what is the outcome you expect, what is the actual outcome? Also probably open a separate issue here or post to the Kodi forums, because it seems like a different problem. From what you have said so far it sounds like you have problems with the language of the files being scraped. If that is the case, please have a look at my previous post and check the steps to change language settings for the scraper on your existing movie source(s).

sorry I try to explain myself better my problem was that I didn't see the scrapers in Italian but as suggested by @Karellen I changed the scrapers from Python to The movies database and now it works, while if I leave Python and upgrade the library and I recived the error "The movie database Phython error "check the log for more information, is it a Phynthon bug or did I set something wrong?

Peacekeeper2000 commented 2 years ago

Yeah, there is a bug in the current 1.5.0-matrix1 module - and this thread is all about that bug. The bug is found and fixed and will be part of 1.5.1 module. So using the Python module today will cause a message if you don't have the year as (yyyy) as part of the file name of the movie you want to integrate to your lib.

donnje commented 2 years ago

the upgrade does not start from me so I will wait for the fix thanks a lot

Peacekeeper2000 commented 2 years ago

yes, I am also waiting for that release and then I am sure the new movies will be integrated into the lib....