This commit is contained in:
Demetria Lovato 2021-06-23 20:17:29 -07:00
parent c28402d134
commit 8086045bc5
6 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -22,7 +22,7 @@ namespace youtube_downloader.Server.Functions
using (var p = new Process()) using (var p = new Process())
{ {
p.StartInfo.FileName = FFMPEG; 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.UseShellExecute = false;
p.StartInfo.CreateNoWindow = true; p.StartInfo.CreateNoWindow = true;
p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden; p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
@ -38,7 +38,7 @@ namespace youtube_downloader.Server.Functions
using (var p = new Process()) using (var p = new Process())
{ {
p.StartInfo.FileName = FFMPEG; p.StartInfo.FileName = FFMPEG;
p.StartInfo.Arguments = $"-i \"{tnail}\' \"{p2}\'"; p.StartInfo.Arguments = $"-i \"{tnail}\" \"{p2}\"";
p.StartInfo.UseShellExecute = false; p.StartInfo.UseShellExecute = false;
p.StartInfo.CreateNoWindow = true; p.StartInfo.CreateNoWindow = true;
p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden; p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.