From e68a49aa51dd2693855e29cc283b715d88770179 Mon Sep 17 00:00:00 2001 From: James Groom Date: Mon, 11 Sep 2023 16:31:23 +1000 Subject: [PATCH] Use absolute path to `ffmpeg` in `FFmpegWriter` --- src/BizHawk.Client.EmuHawk/AVOut/FFmpegWriter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Client.EmuHawk/AVOut/FFmpegWriter.cs b/src/BizHawk.Client.EmuHawk/AVOut/FFmpegWriter.cs index 6b5574a057..84bb23a136 100644 --- a/src/BizHawk.Client.EmuHawk/AVOut/FFmpegWriter.cs +++ b/src/BizHawk.Client.EmuHawk/AVOut/FFmpegWriter.cs @@ -87,7 +87,7 @@ namespace BizHawk.Client.EmuHawk try { _ffmpeg = OSTailoredCode.ConstructSubshell( - OSTailoredCode.IsUnixHost ? "ffmpeg" : Path.Combine(PathUtils.DllDirectoryPath, "ffmpeg.exe"), + FFmpegService.FFmpegPath, $"-y -f nut -i - {_token.Commandline} \"{_baseName}{(_segment == 0 ? string.Empty : $"_{_segment}")}{_ext}\"", checkStdout: false, checkStderr: true // ffmpeg sends informative display to stderr, and nothing to stdout