This commit is contained in:
parent
c28402d134
commit
8086045bc5
Binary file not shown.
|
@ -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;
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue