A single fix, observed live right after the v1.3.12 deploy.
Fixed
- 4K files no longer have their content analysis silently skipped on busy storage (#339). The content-analysis probe had a hardcoded 30-second ffprobe timeout, while the analysis it gates gets the configurable thorough timeout (default 10 minutes). On a NAS being saturated by a parallel scan, probing a large 4K remux can take longer than 30s, and a timed-out probe skips that file's content analysis entirely, every scan, leaving only a
Content analysis skipped (probe failed)warning in the log. The probe timeout is now size-aware: files of 4 GiB or more get a 2-minute budget (resolution isn't known until the probe has run, so size stands in for "4K-class"), while smaller files keep the short timeout so a hung probe can't stall a scan worker.
Full Changelog: v1.3.12...v1.3.13