From 4ecf05ec79f5ffba5b1606aaad552ce6f982b593 Mon Sep 17 00:00:00 2001 From: Konstantin Date: Fri, 21 Aug 2020 20:10:57 +0900 Subject: [PATCH] Fix pipe path for unix. Replace fixed '/tmp' with Path.GetTempPath(). --- FFMpegCore/FFMpeg/Pipes/PipeHelpers.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/FFMpegCore/FFMpeg/Pipes/PipeHelpers.cs b/FFMpegCore/FFMpeg/Pipes/PipeHelpers.cs index ddd788c..1b2ae9d 100644 --- a/FFMpegCore/FFMpeg/Pipes/PipeHelpers.cs +++ b/FFMpegCore/FFMpeg/Pipes/PipeHelpers.cs @@ -5,6 +5,8 @@ namespace FFMpegCore.Pipes { static class PipeHelpers { + static readonly string PipePrefix = Path.Combine(Path.GetTempPath(), "CoreFxPipe_"); + public static string GetUnqiuePipeName() => "FFMpegCore_" + Guid.NewGuid(); public static string GetPipePath(string pipeName) @@ -12,7 +14,7 @@ public static string GetPipePath(string pipeName) if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) return $@"\\.\pipe\{pipeName}"; else - return $"unix:/tmp/CoreFxPipe_{pipeName}"; // dotnet uses unix sockets on unix, for more see https://github.com/dotnet/runtime/issues/24390 + return $"unix:{PipePrefix}{pipeName}"; // dotnet uses unix sockets on unix, for more see https://github.com/dotnet/runtime/issues/24390 } } }