mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-24 04:09:29 +01:00
Fixed uppercase file extensions not working, decrease dedupe cache size to 750 frames
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user