diff --git a/.vs/youtube-downloader/v16/.suo b/.vs/youtube-downloader/v16/.suo index 201763e..27d99a1 100644 Binary files a/.vs/youtube-downloader/v16/.suo and b/.vs/youtube-downloader/v16/.suo differ diff --git a/Server/Functions/ffmpeg.cs b/Server/Functions/ffmpeg.cs index 3b03dc4..f47e444 100644 --- a/Server/Functions/ffmpeg.cs +++ b/Server/Functions/ffmpeg.cs @@ -22,7 +22,7 @@ namespace youtube_downloader.Server.Functions using (var p = new Process()) { p.StartInfo.FileName = FFMPEG; - p.StartInfo.Arguments = $"-i \"{mypath}\' -i \"{mypathCompleteAudio}\" -c copy -map 0:v -map 1:a \"{mypathIncompleteConverting}\'"; + p.StartInfo.Arguments = $"-i \"{mypath}\" -i \"{mypathCompleteAudio}\" -c copy -map 0:v -map 1:a \"{mypathIncompleteConverting}\""; p.StartInfo.UseShellExecute = false; p.StartInfo.CreateNoWindow = true; p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden; @@ -38,7 +38,7 @@ namespace youtube_downloader.Server.Functions using (var p = new Process()) { p.StartInfo.FileName = FFMPEG; - p.StartInfo.Arguments = $"-i \"{tnail}\' \"{p2}\'"; + p.StartInfo.Arguments = $"-i \"{tnail}\" \"{p2}\""; p.StartInfo.UseShellExecute = false; p.StartInfo.CreateNoWindow = true; p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden; diff --git a/bin/Debug/youtube-downloader.exe b/bin/Debug/youtube-downloader.exe index 31b712a..564d287 100644 Binary files a/bin/Debug/youtube-downloader.exe and b/bin/Debug/youtube-downloader.exe differ diff --git a/bin/Debug/youtube-downloader.pdb b/bin/Debug/youtube-downloader.pdb index f26c71f..8f6e2f1 100644 Binary files a/bin/Debug/youtube-downloader.pdb and b/bin/Debug/youtube-downloader.pdb differ diff --git a/obj/Debug/youtube-downloader.exe b/obj/Debug/youtube-downloader.exe index 31b712a..564d287 100644 Binary files a/obj/Debug/youtube-downloader.exe and b/obj/Debug/youtube-downloader.exe differ diff --git a/obj/Debug/youtube-downloader.pdb b/obj/Debug/youtube-downloader.pdb index f26c71f..8f6e2f1 100644 Binary files a/obj/Debug/youtube-downloader.pdb and b/obj/Debug/youtube-downloader.pdb differ