Skip to content

Commit

Permalink
Update MainWindow.xaml.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
MattMcManis committed May 29, 2020
1 parent 94026d9 commit 76391e7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions source/Axiom/Axiom/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2551,8 +2551,8 @@ public static String FFmpegPath()
if (File.Exists(appRootDir + @"ffmpeg\bin\ffmpeg.exe"))
{
// use included binary
FFmpeg.ffmpeg = FFmpeg.PowerShell_CallOperator() + "\"" + appRootDir + @"ffmpeg\bin\ffmpeg.exe" + "\"";
//FFmpeg.ffmpeg = FFmpeg.PowerShell_CallOperator() + WrapWithQuotes(appRootDir + @"ffmpeg\bin\ffmpeg.exe");
FFmpeg.ffmpeg = FFmpeg.PowerShell_CallOperator_FFmpeg() + "\"" + appRootDir + @"ffmpeg\bin\ffmpeg.exe" + "\"";
//FFmpeg.ffmpeg = FFmpeg.PowerShell_CallOperator_FFmpeg() + WrapWithQuotes(appRootDir + @"ffmpeg\bin\ffmpeg.exe");
}
else if (!File.Exists(appRootDir + @"ffmpeg\bin\ffmpeg.exe"))
{
Expand All @@ -2563,8 +2563,8 @@ public static String FFmpegPath()
// Use User Custom Path
else
{
FFmpeg.ffmpeg = FFmpeg.PowerShell_CallOperator() + "\"" + VM.ConfigureView.FFmpegPath_Text + "\"";
//FFmpeg.ffmpeg = FFmpeg.PowerShell_CallOperator() + WrapWithQuotes(VM.ConfigureView.FFmpegPath_Text);
FFmpeg.ffmpeg = FFmpeg.PowerShell_CallOperator_FFmpeg() + "\"" + VM.ConfigureView.FFmpegPath_Text + "\"";
//FFmpeg.ffmpeg = FFmpeg.PowerShell_CallOperator_FFmpeg() + WrapWithQuotes(VM.ConfigureView.FFmpegPath_Text);
}

// Return Value
Expand Down

0 comments on commit 76391e7

Please sign in to comment.