i need to convert a file into another format using another CLI Based APP "ffmpeg.exe". I defined the path to the executable and the WorkingDirectory and the arguments, but if the process.start-method is called the CLI-Window just pops up and closes at once again.
Here's my code:
Code Snippet
Dim p As New Process
With p
.StartInfo.FileName = appPath & "\ffmpeg.exe"
.StartInfo.WorkingDirectory = appPath & "\temp\"
'.StartInfo.WindowStyle = ProcessWindowStyle.Hidden
.StartInfo.Arguments = "-i " & name & " -ac 6 -ab 128 " & name2 & ".mp3"
.Start()
End With