Skip to content

Commit 1d03ba4

Browse files
committed
noice
1 parent 964be17 commit 1d03ba4

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

DeepFakeGui/Form1.Designer.cs

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

DeepFakeGui/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ static void Main()
2727
var response = MessageBox.Show("Do you have Microsoft Visual C++ 2017 Redistributable for Visual Studio 2017 installed? If not, please download it and install it.", "Microsoft Visual C++ 2017 Redistributable for Visual Studio 2017", MessageBoxButtons.YesNo, MessageBoxIcon.Information);
2828
if (response == DialogResult.No)
2929
{
30-
Process.Start("https://www.microsoft.com/en-us/download/details.aspx?id=40784");
30+
Process.Start("https://visualstudio.microsoft.com/thank-you-downloading-visual-studio/?sku=BuildTools&rel=15");
3131
}
3232

3333

DeepFakeGui/Utils.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public static void runFfmpeg(string parameters, bool withPause)
1616
if (withPause)
1717
{
1818
startInfo.FileName = "cmd";
19-
startInfo.Arguments = $"/c \"{Program.ffmpegPath}/ffmpeg.exe\" {parameters} & PAUSE";
19+
startInfo.Arguments = $"/k start cmd.exe /k {Program.ffmpegPath}/ffmpeg.exe {parameters} & PAUSE";
2020
}
2121
else
2222
{

0 commit comments

Comments
 (0)