[RELEASE] Texture Cache Maintenance utility
Try v2.0.9 - this will now url decode "file" items for jd and jr.

These are the different j variations now I've reminded myself...

j: original json with no url decoding. ASCII is ensured.
jd: decoded urls, ensure ascii
jr: decoded urls, do not ensure ascii (so you may see unicode data in url fields).

Example:
Code:
$ ./texturecache.py j movies extraordinary
[
  {
    "art": {
      "clearlogo": "image://nfs%3a%2f%2f192.168.0.3%2fmnt%2fshare%2fmedia%2fVideo%2fMoviesHD%2fForeign%20Language%2fThe%20Extraordinary%20Adventures%20of%20Ad%c3%a8le%20Blanc-Sec%20(2010)%5bBDRip%5d-logo.png/",
      "fanart": "image://nfs%3a%2f%2f192.168.0.3%2fmnt%2fshare%2fmedia%2fVideo%2fMoviesHD%2fForeign%20Language%2fThe%20Extraordinary%20Adventures%20of%20Ad%c3%a8le%20Blanc-Sec%20(2010)%5bBDRip%5d-fanart.jpg/",
      "poster": "image://nfs%3a%2f%2f192.168.0.3%2fmnt%2fshare%2fmedia%2fVideo%2fMoviesHD%2fForeign%20Language%2fThe%20Extraordinary%20Adventures%20of%20Ad%c3%a8le%20Blanc-Sec%20(2010)%5bBDRip%5d-poster.jpg/"
    },
    "file": "nfs://192.168.0.3/mnt/share/media/Video/MoviesHD/Foreign Language/The Extraordinary Adventures of Ad\u00e8le Blanc-Sec (2010)[BDRip].mkv",
    "label": "The Extraordinary Adventures of Ad\u00e8le Blanc-Sec",
    "movieid": 2017,
    "title": "The Extraordinary Adventures of Ad\u00e8le Blanc-Sec"
  }
]
$ ./texturecache.py jd movies extraordinary
[
  {
    "art": {
      "clearlogo": "image://nfs://192.168.0.3/mnt/share/media/Video/MoviesHD/Foreign Language/The Extraordinary Adventures of Ad\u00e8le Blanc-Sec (2010)[BDRip]-logo.png/",
      "fanart": "image://nfs://192.168.0.3/mnt/share/media/Video/MoviesHD/Foreign Language/The Extraordinary Adventures of Ad\u00e8le Blanc-Sec (2010)[BDRip]-fanart.jpg/",
      "poster": "image://nfs://192.168.0.3/mnt/share/media/Video/MoviesHD/Foreign Language/The Extraordinary Adventures of Ad\u00e8le Blanc-Sec (2010)[BDRip]-poster.jpg/"
    },
    "file": "nfs://192.168.0.3/mnt/share/media/Video/MoviesHD/Foreign Language/The Extraordinary Adventures of Ad\u00e8le Blanc-Sec (2010)[BDRip].mkv",
    "label": "The Extraordinary Adventures of Ad\u00e8le Blanc-Sec",
    "movieid": 2017,
    "title": "The Extraordinary Adventures of Ad\u00e8le Blanc-Sec"
  }
]
$ ./texturecache.py jr movies extraordinary
[
  {
    "art": {
      "clearlogo": "image://nfs://192.168.0.3/mnt/share/media/Video/MoviesHD/Foreign Language/The Extraordinary Adventures of Adèle Blanc-Sec (2010)[BDRip]-logo.png/",
      "fanart": "image://nfs://192.168.0.3/mnt/share/media/Video/MoviesHD/Foreign Language/The Extraordinary Adventures of Adèle Blanc-Sec (2010)[BDRip]-fanart.jpg/",
      "poster": "image://nfs://192.168.0.3/mnt/share/media/Video/MoviesHD/Foreign Language/The Extraordinary Adventures of Adèle Blanc-Sec (2010)[BDRip]-poster.jpg/"
    },
    "file": "nfs://192.168.0.3/mnt/share/media/Video/MoviesHD/Foreign Language/The Extraordinary Adventures of Adèle Blanc-Sec (2010)[BDRip].mkv",
    "label": "The Extraordinary Adventures of Adèle Blanc-Sec",
    "movieid": 2017,
    "title": "The Extraordinary Adventures of Adèle Blanc-Sec"
  }
]

Edit: Hopefully this change doesn't have any unwanted side effects... Smile
Texture Cache Maintenance Utility: Preload your texture cache for optimal UI performance. Remotely manage media libraries. Purge unused artwork to free up space. Find missing media. Configurable QA check to highlight metadata issues. Aid in diagnosis of library and cache related problems.
Reply


Messages In This Thread
Crash on Gotham on OS X - by desepticon - 2014-05-29, 17:57
RE: [RELEASE] Texture Cache Maintenance utility - by Milhouse - 2015-08-13, 18:52
Cleaning - by AleisterHH - 2018-05-28, 22:03
RE: Cleaning - by Milhouse - 2018-05-28, 22:16
qax genre not updated - by Just-Me_A-User - 2018-06-12, 22:06
RE: qax genre not updated - by Milhouse - 2018-06-12, 23:40
Logout Mark Read Team Forum Stats Members Help
[RELEASE] Texture Cache Maintenance utility17