diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-06-30 22:35:18 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-06-30 22:35:18 -0400 |
| commit | 00634b62c53d145e3dc6ad707dfbe98cb21bfa5a (patch) | |
| tree | cc2ada757339a4e8d05384ab1684e73db69f28d1 /MediaBrowser.MediaEncoding/Encoder/EncoderValidator.cs | |
| parent | 580a68d19c52a48792c0d714da98e99b08a51b1d (diff) | |
remove standard output redirect on image extractions
Diffstat (limited to 'MediaBrowser.MediaEncoding/Encoder/EncoderValidator.cs')
| -rw-r--r-- | MediaBrowser.MediaEncoding/Encoder/EncoderValidator.cs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/MediaBrowser.MediaEncoding/Encoder/EncoderValidator.cs b/MediaBrowser.MediaEncoding/Encoder/EncoderValidator.cs index 23e3d0fa6..859452362 100644 --- a/MediaBrowser.MediaEncoding/Encoder/EncoderValidator.cs +++ b/MediaBrowser.MediaEncoding/Encoder/EncoderValidator.cs @@ -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 |
