remove standard output redirect on image extractions

This commit is contained in:
Luke Pulverenti
2016-06-30 22:35:18 -04:00
parent 580a68d19c
commit 00634b62c5
6 changed files with 41 additions and 45 deletions

View File

@@ -117,8 +117,7 @@ namespace MediaBrowser.MediaEncoding.Encoder
Arguments = arguments,
WindowStyle = ProcessWindowStyle.Hidden,
ErrorDialog = false,
RedirectStandardOutput = true,
//RedirectStandardError = true
RedirectStandardOutput = true
}
};
@@ -128,8 +127,6 @@ namespace MediaBrowser.MediaEncoding.Encoder
try
{
//process.BeginErrorReadLine();
return process.StandardOutput.ReadToEnd();
}
catch