From 395c7e127f7517b79fb0ee6669176ca66b4ea575 Mon Sep 17 00:00:00 2001 From: Elissandro Garcia Date: Wed, 28 Feb 2024 19:14:41 -0500 Subject: [PATCH] Update Saver.cs Fix "ERROR 9411: Output file(s) creating error" when contains space on the name of file or directory. --- source/Saver.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/Saver.cs b/source/Saver.cs index f64d951..aeb12f3 100644 --- a/source/Saver.cs +++ b/source/Saver.cs @@ -634,7 +634,7 @@ int FixCreateMedia(string outputPath, out int ffmpegExitCode) var arguments = "-loglevel fatal" + " " + "-stats" + " " + - "-i " + outputPathTmp + ".audio" + " " + + "-i " + "\"" + outputPathTmp + ".audio" + "\"" + " " + videoSource + " " + "-metadata comment=\"Saved with " + Constants.Name + "\"" + " " + "-metadata title=\"" + metadataTitle + "\"" + " " + @@ -735,4 +735,4 @@ void FixDownloadM3U(string content, string path) } #endregion } -} \ No newline at end of file +}