Fixed missing steam cdn url setting for thumbnailer plugin; fixed vod_thumbnailer plugin not expanding return values correctly

This commit is contained in:
2025-12-27 16:36:13 -06:00
parent ad06ea50ad
commit 6a3bfbeb13
3 changed files with 5 additions and 3 deletions

View File

@@ -14,7 +14,7 @@ class VideoIconMixin:
proc = subprocess.Popen([self.FFMPG_THUMBNLR, "-t", scrub_percent, "-s", "300", "-c", "jpg", "-i", full_path, "-o", hash_img_path])
proc.wait()
except Exception as e:
logger.info(repr(e))
logger.info(e)
self.ffprobe_generate_video_thumbnail(full_path, hash_img_path)