Fixed uppercase file extensions not working, decrease dedupe cache size to 750 frames

This commit is contained in:
N00MKRAD
2020-12-09 14:55:35 +01:00
parent 129a8b02d4
commit d8f3af8548
2 changed files with 2 additions and 2 deletions

View File

@@ -234,7 +234,7 @@ namespace Flowframes.Main
{
if (videoPath == null || !IOUtils.IsFileValid(videoPath))
return false;
string ext = Path.GetExtension(videoPath);
string ext = Path.GetExtension(videoPath).ToLower();
if (Formats.supported.Contains(ext))
return true;
return false;