From 1badd3ba4c8bc5f34699f5d0b081d702c2acad8e Mon Sep 17 00:00:00 2001 From: Malte Rosenbjerg Date: Thu, 27 Feb 2020 18:29:27 +0100 Subject: [PATCH] Add more AudioQuality presets (enum) --- FFMpegCore/FFMPEG/Enums/AudioQuality.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/FFMpegCore/FFMPEG/Enums/AudioQuality.cs b/FFMpegCore/FFMPEG/Enums/AudioQuality.cs index d2b9465..7597cec 100644 --- a/FFMpegCore/FFMPEG/Enums/AudioQuality.cs +++ b/FFMpegCore/FFMPEG/Enums/AudioQuality.cs @@ -3,8 +3,10 @@ public enum AudioQuality { Ultra = 384, + VeryHigh = 256, Hd = 192, Normal = 128, + BelowNormal = 96, Low = 64 } } \ No newline at end of file