update use of shellexecute

This commit is contained in:
Luke Pulverenti
2016-12-09 20:58:52 -05:00
parent c7d520555b
commit e936f49518
13 changed files with 20 additions and 20 deletions

View File

@@ -989,7 +989,7 @@ namespace MediaBrowser.MediaEncoding.Encoder
var process = _processFactory.Create(new ProcessOptions
{
CreateNoWindow = true,
UseShellExecute = true,
UseShellExecute = false,
FileName = FFMpegPath,
Arguments = args,
IsHidden = true,
@@ -1092,7 +1092,7 @@ namespace MediaBrowser.MediaEncoding.Encoder
var process = _processFactory.Create(new ProcessOptions
{
CreateNoWindow = true,
UseShellExecute = true,
UseShellExecute = false,
FileName = FFMpegPath,
Arguments = args,
IsHidden = true,