From 718371505cb78f1bc14ee78f413be88af53e6167 Mon Sep 17 00:00:00 2001 From: Rafael Carvalho Date: Mon, 6 Mar 2023 17:22:08 +1300 Subject: [PATCH] Add .gif file extension --- FFMpegCore/FFMpeg/Enums/FileExtension.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/FFMpegCore/FFMpeg/Enums/FileExtension.cs b/FFMpegCore/FFMpeg/Enums/FileExtension.cs index b5e775d..f3067ba 100644 --- a/FFMpegCore/FFMpeg/Enums/FileExtension.cs +++ b/FFMpegCore/FFMpeg/Enums/FileExtension.cs @@ -20,5 +20,6 @@ public static string Extension(this Codec type) public static readonly string WebM = VideoType.WebM.Extension; public static readonly string Png = ".png"; public static readonly string Mp3 = ".mp3"; + public static readonly string Gif = ".gif"; } }