Release Embuary Helper Script
#77
(2019-07-21, 09:44)sualfred Wrote: @roidy 

Thanks for the suggestion, but that won't work without storing the name as window property as cache. And this is much more expensive than just checking if the file already exists. If file is already exists it's just updating the window property.

Edit:
"Fun fact" -> A reason why the skin helper service stuff got so slow is its caching. Sometimes it's better to keep it simple.

Umm.... I'm not sure why you say the name needs to be stored as a window property or even mention cache.... Nothing need to be cached, the value of image just need to be saved in a global variable and checked like so:-

python:
old_image = ""

def image_filter(prop='listitem', file=None, radius=BLUR_RADIUS):
  global old_image
  image = file if file is not None else xbmc.getInfoLabel('Control.GetLabel(%s)' % BLUR_CONTAINER)
  try:
    radius = int(radius)
  except ValueError:
    log('No valid radius defined for blurring')
    return
  if image:
    if image != old_image:
      log("Image has changed")
      old_image = image
      blurred_image, imagecolor = image_blur(image, radius)
      winprop(prop + '_blurred', blurred_image)
      winprop(prop + '_color', imagecolor)
    else:
      log("No image change detected")

I've tested this code and it works fine.... "hashlib.md5", "xbmc.getCacheThumbName" and "xbmcvfs.exists" seem to be expensive in my testing running on a Odroid N2 S922 and timing the blur function i get the following results:-

Original code:
0.025 to 0.033 seconds / ~28 milliseconds per call

My modified code:
0.00023 to 0.00037 seconds / ~300 microseconds per call

So quite a saving.
Reply


Messages In This Thread
Embuary Helper Script - by sualfred - 2019-07-08, 23:01
RE: Embuary Helper Script - by sualfred - 2019-07-19, 08:34
RE: Embuary Helper Script - by wyrm - 2019-07-19, 10:36
RE: Embuary Helper Script - by sualfred - 2019-07-19, 11:07
RE: Embuary Helper Script - by wyrm - 2019-07-19, 16:28
RE: Embuary Helper Script - by wyrm - 2019-07-20, 10:36
RE: Embuary Helper Script - by chrissix666 - 2019-07-19, 13:10
RE: Embuary Helper Script - by sualfred - 2019-07-19, 17:01
RE: Embuary Helper Script - by wyrm - 2019-07-20, 11:02
RE: Embuary Helper Script - by sualfred - 2019-07-20, 11:19
RE: Embuary Helper Script - by wyrm - 2019-07-21, 09:07
RE: Embuary Helper Script - by roidy - 2019-07-20, 15:52
RE: Embuary Helper Script - by sualfred - 2019-07-20, 16:31
RE: Embuary Helper Script - by roidy - 2019-07-20, 17:16
RE: Embuary Helper Script - by chrissix666 - 2019-07-20, 20:35
RE: Embuary Helper Script - by sualfred - 2019-07-20, 21:59
RE: Embuary Helper Script - by sualfred - 2019-07-20, 22:40
RE: Embuary Helper Script - by roidy - 2019-07-21, 08:55
RE: Embuary Helper Script - by chrissix666 - 2019-07-20, 23:44
RE: Embuary Helper Script - by chrissix666 - 2019-07-21, 00:41
RE: Embuary Helper Script - by sualfred - 2019-07-21, 06:23
RE: Embuary Helper Script - by sualfred - 2019-07-21, 08:57
RE: Embuary Helper Script - by roidy - 2019-07-21, 09:26
RE: Embuary Helper Script - by sualfred - 2019-07-21, 09:10
RE: Embuary Helper Script - by sualfred - 2019-07-21, 09:38
RE: Embuary Helper Script - by wyrm - 2019-07-21, 10:01
RE: Embuary Helper Script - by wyrm - 2019-07-22, 17:23
RE: Embuary Helper Script - by wyrm - 2020-05-23, 17:35
RE: Embuary Helper Script - by sualfred - 2019-07-21, 09:44
RE: Embuary Helper Script - by roidy - 2019-07-21, 10:42
RE: Embuary Helper Script - by sualfred - 2019-07-21, 11:03
RE: Embuary Helper Script - by roidy - 2019-07-21, 11:21
RE: Embuary Helper Script - by sualfred - 2019-07-21, 11:36
RE: Embuary Helper Script - by chrissix666 - 2019-07-21, 14:41
RE: Embuary Helper Script - by sualfred - 2019-07-21, 15:28
RE: Embuary Helper Script - by chrissix666 - 2019-07-21, 16:06
RE: Embuary Helper Script - by sualfred - 2019-07-21, 16:11
RE: Embuary Helper Script - by chrissix666 - 2019-07-21, 16:25
RE: Embuary Helper Script - by chrissix666 - 2019-07-21, 17:10
RE: Embuary Helper Script - by Hitcher - 2019-07-21, 17:27
RE: Embuary Helper Script - by sualfred - 2019-07-21, 17:33
RE: Embuary Helper Script - by chrissix666 - 2019-07-21, 17:43
RE: Embuary Helper Script - by chrissix666 - 2019-07-21, 17:49
RE: Embuary Helper Script - by sualfred - 2019-07-21, 17:55
RE: Embuary Helper Script - by chrissix666 - 2019-07-21, 18:04
RE: Embuary Helper Script - by sualfred - 2019-07-21, 18:31
RE: Embuary Helper Script - by chrissix666 - 2019-07-21, 18:50
RE: Embuary Helper Script - by sualfred - 2019-07-21, 19:35
RE: Embuary Helper Script - by chrissix666 - 2019-07-21, 19:58
RE: Embuary Helper Script - by Captain_Pike - 2019-07-22, 17:37
RE: Embuary Helper Script - by sualfred - 2019-07-22, 17:49
RE: Embuary Helper Script - by sualfred - 2019-07-22, 17:51
RE: Embuary Helper Script - by the_bo - 2019-07-22, 17:57
RE: Embuary Helper Script - by chrissix666 - 2019-07-22, 17:52
RE: Embuary Helper Script - by sualfred - 2019-07-22, 17:55
RE: Embuary Helper Script - by chrissix666 - 2019-07-22, 18:02
RE: Embuary Helper Script - by sualfred - 2019-07-22, 18:27
RE: Embuary Helper Script - by the_bo - 2019-07-22, 18:48
RE: Embuary Helper Script - by sualfred - 2019-07-23, 09:02
RE: Embuary Helper Script - by chrissix666 - 2019-07-23, 10:36
RE: Embuary Helper Script - by sualfred - 2019-07-23, 10:46
RE: Embuary Helper Script - by redglory - 2019-07-23, 11:17
RE: Embuary Helper Script - by chrissix666 - 2019-07-23, 11:19
RE: Embuary Helper Script - by sualfred - 2019-07-23, 11:31
RE: Embuary Helper Script - by redglory - 2019-07-23, 17:55
RE: Embuary Helper Script - by sualfred - 2019-07-23, 17:58
RE: Embuary Helper Script - by redglory - 2019-07-23, 18:10
RE: Embuary Helper Script - by sualfred - 2019-07-23, 18:54
RE: Embuary Helper Script - by redglory - 2019-07-24, 17:21
RE: Embuary Helper Script - by chrissix666 - 2019-07-23, 20:10
RE: Embuary Helper Script - by sualfred - 2019-07-23, 20:53
RE: Embuary Helper Script - by chrissix666 - 2019-07-23, 20:59
RE: Embuary Helper Script - by redglory - 2019-07-23, 21:00
RE: Embuary Helper Script - by sualfred - 2019-07-23, 21:08
RE: Embuary Helper Script - by chrissix666 - 2019-07-23, 21:11
RE: Embuary Helper Script - by chrissix666 - 2019-07-23, 21:16
RE: Embuary Helper Script - by sualfred - 2019-07-23, 21:17
RE: Embuary Helper Script - by chrissix666 - 2019-07-23, 21:28
RE: Embuary Helper Script - by sualfred - 2019-07-23, 21:35
RE: Embuary Helper Script - by chrissix666 - 2019-07-23, 21:44
RE: Embuary Helper Script - by sualfred - 2019-07-23, 22:10
RE: Embuary Helper Script - by bsoriano - 2019-07-23, 23:29
RE: Embuary Helper Script - by Edworld - 2021-07-20, 23:36
RE: Embuary Helper Script - by bsoriano - 2021-07-23, 21:21
RE: Embuary Helper Script - by sualfred - 2019-07-24, 06:16
RE: Embuary Helper Script - by bsoriano - 2019-07-24, 15:13
RE: Embuary Helper Script - by sualfred - 2019-07-24, 17:42
RE: Embuary Helper Script - by redglory - 2019-07-24, 17:47
RE: Embuary Helper Script - by sualfred - 2019-07-25, 23:00
RE: Embuary Helper Script - by manfeed - 2019-07-30, 23:21
RE: Embuary Helper Script - by sualfred - 2019-07-31, 00:07
RE: Embuary Helper Script - by manfeed - 2019-07-31, 01:29
RE: Embuary Helper Script - by sualfred - 2019-07-31, 06:18
RE: Embuary Helper Script - by manfeed - 2019-07-31, 09:15
RE: Embuary Helper Script - by sualfred - 2019-07-31, 09:18
RE: Embuary Helper Script - by manfeed - 2019-08-01, 17:50
RE: Embuary Helper Script - by sualfred - 2019-08-01, 18:06
RE: Embuary Helper Script - by manfeed - 2019-08-01, 18:21
RE: Embuary Helper Script - by sualfred - 2019-08-01, 18:40
RE: Embuary Helper Script - by manfeed - 2019-08-01, 18:47
RE: Embuary Helper Script - by sualfred - 2019-08-01, 19:42
RE: Embuary Helper Script - by chrissix666 - 2019-08-02, 20:59
RE: Embuary Helper Script - by roidy - 2019-08-03, 19:48
RE: Embuary Helper Script - by sualfred - 2019-08-03, 20:55
RE: Embuary Helper Script - by Giant_Midget - 2019-08-17, 23:50
RE: Embuary Helper Script - by sualfred - 2019-08-17, 23:58
RE: Embuary Helper Script - by Giant_Midget - 2019-08-18, 00:14
RE: Embuary Helper Script - by Giant_Midget - 2019-08-18, 00:16
RE: Embuary Helper Script - by sualfred - 2019-08-18, 08:18
RE: Embuary Helper Script - by Giant_Midget - 2019-08-18, 11:56
RE: Embuary Helper Script - by sualfred - 2019-08-18, 12:13
RE: Embuary Helper Script - by LupinSansei - 2019-10-08, 04:50
RE: Embuary Helper Script - by sualfred - 2019-10-08, 06:15
RE: Embuary Helper Script - by esmirlin - 2019-10-16, 13:27
RE: Embuary Helper Script - by sualfred - 2019-10-16, 13:31
RE: Embuary Helper Script - by Ingvix - 2019-10-26, 12:06
RE: Embuary Helper Script - by Ingvix - 2019-10-31, 20:02
RE: Embuary Helper Script - by nuttersrest - 2019-11-03, 20:31
RE: Embuary Helper Script - by Ingvix - 2019-11-19, 16:30
RE: Embuary Helper Script - by Ingvix - 2019-11-19, 16:37
RE: Embuary Helper Script - by realcopacetic - 2019-11-08, 01:51
RE: Embuary Helper Script - by james739 - 2019-11-22, 13:34
RE: Embuary Helper Script - by james739 - 2019-11-22, 13:37
RE: Embuary Helper Script - by sualfred - 2019-11-22, 13:46
RE: Embuary Helper Script - by james739 - 2019-11-26, 13:54
RE: Embuary Helper Script - by sualfred - 2019-11-26, 14:29
RE: Embuary Helper Script - by chrissix666 - 2020-01-31, 23:03
Embuary Helper Script - by puenktchen - 2020-05-17, 00:34
RE: Embuary Helper Script - by bsoriano - 2020-05-17, 02:25
RE: Embuary Helper Script - by puenktchen - 2020-05-17, 03:14
RE: Embuary Helper Script - by sualfred - 2020-05-17, 06:20
RE: Embuary Helper Script - by wyrm - 2020-05-23, 18:20
RE: Embuary Helper Script - by sualfred - 2020-05-23, 20:19
RE: Embuary Helper Script - by sualfred - 2020-07-31, 15:50
RE: Embuary Helper Script - by emiralles - 2020-11-04, 12:55
RE: Embuary Helper Script - by sualfred - 2020-11-04, 14:41
RE: Embuary Helper Script - by emiralles - 2020-11-05, 15:00
RE: Embuary Helper Script - by STEELBAS - 2021-03-06, 21:32
RE: Embuary Helper Script - by sualfred - 2021-03-07, 08:31
Embuary Helper Script - by STEELBAS - 2021-03-07, 13:47
RE: Embuary Helper Script - by runsamok - 2021-03-07, 18:05
RE: Embuary Helper Script - by STEELBAS - 2021-03-09, 19:45
RE: Embuary Helper Script - by runsamok - 2021-03-10, 18:47
RE: Embuary Helper Script - by STEELBAS - 2021-03-10, 23:55
RE: Embuary Helper Script - by Uploadergt - 2021-03-30, 01:40
RE: Embuary Helper Script - by Edworld - 2021-07-24, 05:06
RE: Embuary Helper Script - by djhifi - 2021-08-15, 03:49
RE: Embuary Helper Script - by sualfred - 2021-08-15, 07:33
RE: Embuary Helper Script - by TommyKnocker01 - 2021-08-17, 11:39
RE: Embuary Helper Script - by sualfred - 2021-08-17, 14:09
RE: Embuary Helper Script - by chester24 - 2021-09-06, 10:32
RE: Embuary Helper Script - by chester24 - 2021-09-06, 10:37
RE: Embuary Helper Script - by fbacher - 2021-09-06, 06:33
RE: Embuary Helper Script - by Justblan1984 - 2021-09-15, 20:45
RE: Embuary Helper Script - by sualfred - 2021-09-16, 08:46
RE: Embuary Helper Script - by Zekeman - 2021-09-17, 01:58
RE: Embuary Helper Script - by sualfred - 2021-09-17, 12:01
RE: Embuary Helper Script - by Zekeman - 2021-09-17, 21:59
RE: Embuary Helper Script - by bsoriano - 2021-09-17, 22:41
RE: Embuary Helper Script - by Zekeman - 2021-09-17, 23:59
RE: Embuary Helper Script - by Nanomani - 2021-09-18, 20:12
RE: Embuary Helper Script - by realcopacetic - 2022-06-08, 16:29
RE: Embuary Helper Script - by moderncolin - 2022-07-05, 15:15
RE: Embuary Helper Script - by ntilikp - 2022-10-07, 01:03
RE: Embuary Helper Script - by mYnDstrEAm - 2022-10-13, 11:36
RE: Embuary Helper Script - by Deihmos - 2022-10-28, 00:59
RE: script.embuary.helper - by chrissix666 - 2019-07-11, 08:15
RE: script.embuary.helper - by sualfred - 2019-07-11, 08:19
RE: script.embuary.helper - by chrissix666 - 2019-07-11, 08:29
RE: script.embuary.helper - by Captain_Pike - 2019-07-11, 08:39
RE: script.embuary.helper - by sualfred - 2019-07-11, 08:40
RE: script.embuary.helper - by manfeed - 2019-07-11, 09:44
RE: script.embuary.helper - by chrissix666 - 2019-07-11, 08:42
RE: script.embuary.helper - by sualfred - 2019-07-11, 08:50
RE: script.embuary.helper - by chrissix666 - 2019-07-11, 08:54
RE: script.embuary.helper - by sualfred - 2019-07-11, 08:57
RE: script.embuary.helper - by chrissix666 - 2019-07-11, 09:17
RE: script.embuary.helper - by sualfred - 2019-07-11, 09:30
RE: script.embuary.helper - by sualfred - 2019-07-11, 09:32
RE: script.embuary.helper - by sualfred - 2019-07-11, 10:00
RE: script.embuary.helper - by sualfred - 2019-07-12, 07:56
RE: script.embuary.helper - by sualfred - 2019-07-12, 09:43
RE: script.embuary.helper - by sualfred - 2019-07-12, 11:10
RE: script.embuary.helper - by manfeed - 2019-07-12, 11:33
RE: script.embuary.helper - by sualfred - 2019-07-12, 11:53
RE: script.embuary.helper - by the_bo - 2019-07-22, 17:40
RE: script.embuary.helper - by manfeed - 2019-07-12, 12:28
RE: script.embuary.helper - by sualfred - 2019-07-12, 12:31
RE: script.embuary.helper - by the_bo - 2019-07-12, 12:42
RE: script.embuary.helper - by sualfred - 2019-07-12, 13:12
RE: script.embuary.helper - by chrissix666 - 2019-07-12, 13:19
RE: script.embuary.helper - by sualfred - 2019-07-12, 14:35
RE: script.embuary.helper - by sualfred - 2019-07-12, 18:49
RE: script.embuary.helper - by the_bo - 2019-07-12, 19:08
RE: script.embuary.helper - by sualfred - 2019-07-12, 19:17
RE: script.embuary.helper - by the_bo - 2019-07-12, 21:00
RE: script.embuary.helper - by sualfred - 2019-07-12, 21:27
RE: script.embuary.helper - by horstepipe - 2019-07-13, 00:39
RE: script.embuary.helper - by sualfred - 2019-07-13, 07:37
RE: script.embuary.helper - by sualfred - 2019-07-13, 07:51
RE: script.embuary.helper - by horstepipe - 2019-07-13, 12:34
RE: script.embuary.helper - by sualfred - 2019-07-13, 13:29
RE: Embuary (Krypton + Leia) - by sualfred - 2019-07-10, 16:56
RE: Embuary (Krypton + Leia) - by manfeed - 2019-07-10, 17:07
RE: Embuary (Krypton + Leia) - by manfeed - 2019-07-11, 00:24
RE: Embuary (Krypton + Leia) - by chrissix666 - 2019-07-11, 05:07
RE: Embuary (Krypton + Leia) - by sualfred - 2019-07-11, 06:20
RE: Embuary (Krypton + Leia) - by manfeed - 2019-07-12, 09:32
script.embuary.helper - by sualfred - 2019-07-11, 07:39
Logout Mark Read Team Forum Stats Members Help
Embuary Helper Script3