diff options
| author | Oggeb1 <51484222+Oggeb1@users.noreply.github.com> | 2026-08-29 14:02:22 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-08-29 14:02:22 +0200 |
| commit | 4207e89a7dcad107a211d49ed2c467ed15ed7e26 (patch) | |
| tree | b901afe7ddcc5fd20e00be41d3e2f55464ce9a2f /Emby.Server.Implementations/ScheduledTasks/Tasks/AudioNormalizationTask.cs | |
| parent | 163895b99f780df1ce8f50f3d0e17f4a2880e251 (diff) | |
| parent | fbb0f1afbcd52a15d6e56742bba0f338a5ced88f (diff) | |
Merge branch 'jellyfin:master' into BDMV-pgs
Diffstat (limited to 'Emby.Server.Implementations/ScheduledTasks/Tasks/AudioNormalizationTask.cs')
| -rw-r--r-- | Emby.Server.Implementations/ScheduledTasks/Tasks/AudioNormalizationTask.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/ScheduledTasks/Tasks/AudioNormalizationTask.cs b/Emby.Server.Implementations/ScheduledTasks/Tasks/AudioNormalizationTask.cs index e4939205c9..29b633530f 100644 --- a/Emby.Server.Implementations/ScheduledTasks/Tasks/AudioNormalizationTask.cs +++ b/Emby.Server.Implementations/ScheduledTasks/Tasks/AudioNormalizationTask.cs @@ -174,7 +174,7 @@ public partial class AudioNormalizationTask : IScheduledTask if (!t.NormalizationGain.HasValue && !t.LUFS.HasValue && t.IsFileProtocol) { t.LUFS = await CalculateLUFSAsync( - string.Format(CultureInfo.InvariantCulture, "-i \"{0}\"", t.Path.Replace("\"", "\\\"", StringComparison.Ordinal)), + string.Format(CultureInfo.InvariantCulture, "-i \"{0}\"", t.Path.EscapeProcessArgument()), false, cancellationToken).ConfigureAwait(false); toSaveDbItems.Add(t); |
