Great workOk i have found the culprit and this issue is a regression introduce in ffmpeg rework and trigger when using 'enable file existence cache' option
Should be fixed now![]()
Regards,
Markus.
Great workOk i have found the culprit and this issue is a regression introduce in ffmpeg rework and trigger when using 'enable file existence cache' option
Should be fixed now![]()
Great work. I just remembered I turned off file existence cache a couple of days ago. I tried turning it off due to if I was quickly stepping through video files thumbnails would disappear altogether and then if I escaped back and went back in they would return.
Regards,
Markus.
Great work. I just remembered I turned off file existence cache a couple of days ago. I tried turning it off due to if I was quickly stepping through video files thumbnails would disappear altogether and then if I escaped back and went back in they would return.
Regards,
Markus.
Hey, I'm not sure to follow you lol, you mean with option off, no more thumbnail stay but back in folder, they are back ?
if (aCacheThumb && Success)
{
if (Picture.CreateThumbnailVideo(ShareThumb, aThumbPath, (int)Thumbs.ThumbResolution, (int)Thumbs.ThumbResolution,
0, false))
{
Picture.CreateThumbnailVideo(ShareThumb, Utils.ConvertToLargeCoverArt(aThumbPath),
(int) Thumbs.ThumbLargeResolution, (int) Thumbs.ThumbLargeResolution, 0, false);
}
}
if (!Util.Utils.FileExistsInCache(ShareThumb))
{
return false;
}
if (preGapSec > Duration)
{
preGapSec = Duration - 5;
}
TimeBetweenFrames = Convert.ToInt16((Duration - preGapSec) / (PreviewColumns * PreviewRows + 1));