Skip to content

Commit

Permalink
Will disable the use of pipes if mediainfo is not found.
Browse files Browse the repository at this point in the history
  • Loading branch information
moisespr123 committed Nov 13, 2019
1 parent f18ee11 commit 3858402
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion svt-av1_gui/Form1.Designer.vb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions svt-av1_gui/Form1.vb
Original file line number Diff line number Diff line change
Expand Up @@ -521,8 +521,10 @@ Public Class Form1
MediaInfoProcess = Process.Start(MediaInfoProcessInfo)
MediaInfoProcess.WaitForExit()
Catch ex As Exception
MessageBox.Show("SvtAv1EncApp.exe was not found. Exiting...")
Me.Close()
NoPipes.Checked = True
NoPipes.Enabled = False
My.Settings.NoPipes = True
My.Settings.Save()
End Try
End Sub

Expand Down
4 changes: 2 additions & 2 deletions svt-av1_gui/My Project/AssemblyInfo.vb
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' by using the '*' as shown below:
' <Assembly: AssemblyVersion("1.0.*")>

<Assembly: AssemblyVersion("1.3.0.0")>
<Assembly: AssemblyFileVersion("1.3.0.0")>
<Assembly: AssemblyVersion("1.4.0.0")>
<Assembly: AssemblyFileVersion("1.4.0.0")>

0 comments on commit 3858402

Please sign in to comment.