Skip to content

Commit

Permalink
Whitelisted WEBM and AVI for video upscaling
Browse files Browse the repository at this point in the history
  • Loading branch information
N00MKRAD committed Nov 23, 2020
1 parent 95ab455 commit 9f12a12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/IO/IOUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 9f12a12

Please sign in to comment.