mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
Merge pull request #297 from Notheisz57/master
Pass FFOptions in call to GetFFProbeBinaryPath
This commit is contained in:
commit
1bb0deea4e
1 changed files with 1 additions and 1 deletions
|
@ -201,7 +201,7 @@ private static Instance PrepareInstance(string arguments, int outputCapacity, FF
|
|||
{
|
||||
FFProbeHelper.RootExceptionCheck();
|
||||
FFProbeHelper.VerifyFFProbeExists(ffOptions);
|
||||
var startInfo = new ProcessStartInfo(GlobalFFOptions.GetFFProbeBinaryPath(), arguments)
|
||||
var startInfo = new ProcessStartInfo(GlobalFFOptions.GetFFProbeBinaryPath(ffOptions), arguments)
|
||||
{
|
||||
StandardOutputEncoding = ffOptions.Encoding,
|
||||
StandardErrorEncoding = ffOptions.Encoding,
|
||||
|
|
Loading…
Reference in a new issue