From 16e5de6e871449fc2ac427c559ffbb17021950ca Mon Sep 17 00:00:00 2001 From: N00MKRAD Date: Fri, 26 Feb 2021 10:16:52 +0100 Subject: [PATCH] Enabled AC3, DTS and Raw/PCM audio support for MOV output --- Code/Media/FFmpegUtils.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/Media/FFmpegUtils.cs b/Code/Media/FFmpegUtils.cs index e849a50..011caf5 100644 --- a/Code/Media/FFmpegUtils.cs +++ b/Code/Media/FFmpegUtils.cs @@ -102,7 +102,7 @@ namespace Flowframes.Media string[] formatsMp4 = new string[] { "m4a", "ac3", "dts" }; string[] formatsMkv = new string[] { "m4a", "ac3", "dts", "ogg", "mp2", "wav" }; string[] formatsWebm = new string[] { "ogg" }; - string[] formatsProres = new string[] { "m4a" }; + string[] formatsProres = new string[] { "m4a", "ac3", "dts", "wav" }; string[] formatsAvi = new string[] { "m4a", "ac3", "dts" }; switch (outMode)