From 9f12a12c606bd2704266dfed803b6eff89c8bc97 Mon Sep 17 00:00:00 2001 From: N00MKRAD Date: Mon, 23 Nov 2020 22:26:19 +0100 Subject: [PATCH] Whitelisted WEBM and AVI for video upscaling --- Code/IO/IOUtils.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/IO/IOUtils.cs b/Code/IO/IOUtils.cs index 84bb541..39b1044 100644 --- a/Code/IO/IOUtils.cs +++ b/Code/IO/IOUtils.cs @@ -17,7 +17,7 @@ namespace Cupscale internal class IOUtils { public static string[] compatibleExtensions = new string[] { ".png", ".jpg", ".jpeg", ".bmp", ".tga", ".webp", ".dds", ".gif" }; - public static string[] videoExtensions = new string[] { ".mp4", ".mkv", ".gif" }; + public static string[] videoExtensions = new string[] { ".mp4", ".m4v", ".mkv", ".webm", ".gif", ".avi" }; static bool hasShownPortableInfo = false; public static string GetAppDataDir()