Skip to content

Commit 3858402

Browse files
committed
Will disable the use of pipes if mediainfo is not found.
1 parent f18ee11 commit 3858402

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

svt-av1_gui/Form1.Designer.vb

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

svt-av1_gui/Form1.vb

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -521,8 +521,10 @@ Public Class Form1
521521
MediaInfoProcess = Process.Start(MediaInfoProcessInfo)
522522
MediaInfoProcess.WaitForExit()
523523
Catch ex As Exception
524-
MessageBox.Show("SvtAv1EncApp.exe was not found. Exiting...")
525-
Me.Close()
524+
NoPipes.Checked = True
525+
NoPipes.Enabled = False
526+
My.Settings.NoPipes = True
527+
My.Settings.Save()
526528
End Try
527529
End Sub
528530

svt-av1_gui/My Project/AssemblyInfo.vb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
3131
' by using the '*' as shown below:
3232
' <Assembly: AssemblyVersion("1.0.*")>
3333

34-
<Assembly: AssemblyVersion("1.3.0.0")>
35-
<Assembly: AssemblyFileVersion("1.3.0.0")>
34+
<Assembly: AssemblyVersion("1.4.0.0")>
35+
<Assembly: AssemblyFileVersion("1.4.0.0")>

0 commit comments

Comments
 (0)