diff --git a/FFMpegCore/FFMpeg/Pipes/PipeHelpers.cs b/FFMpegCore/FFMpeg/Pipes/PipeHelpers.cs index 2890e826..cb237ed9 100644 --- a/FFMpegCore/FFMpeg/Pipes/PipeHelpers.cs +++ b/FFMpegCore/FFMpeg/Pipes/PipeHelpers.cs @@ -1,4 +1,5 @@ using System; +using System.IO; using System.Runtime.InteropServices; namespace FFMpegCore.Pipes @@ -11,8 +12,9 @@ public static string GetPipePath(string pipeName) { if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) return $@"\\.\pipe\{pipeName}"; - else - return $"unix:/tmp/CoreFxPipe_{pipeName}"; + if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX)) + return $"unix:{Path.GetTempPath()}/CoreFxPipe_{pipeName}"; + return $"unix:/tmp/CoreFxPipe_{pipeName}"; } } } diff --git a/FFMpegCore/FFMpegCore.csproj b/FFMpegCore/FFMpegCore.csproj index f40295cc..b2b3a7e5 100644 --- a/FFMpegCore/FFMpegCore.csproj +++ b/FFMpegCore/FFMpegCore.csproj @@ -2,8 +2,8 @@ en - https://github.com/rosenbjerg/FFMpegCore - https://github.com/rosenbjerg/FFMpegCore + https://github.com/ep1kt3t0s/FFMpegCore + https://github.com/ep1kt3t0s/FFMpegCore A .NET Standard FFMpeg/FFProbe wrapper for easily integrating media analysis and conversion into your .NET applications 4.0.0.0 @@ -19,7 +19,7 @@ - Updates to dependendies - A lot of bug fixes 8 - 4.8.0 + 4.8.1 MIT Malte Rosenbjerg, Vlad Jerca, Max Bagryantsev ffmpeg ffprobe convert video audio mediafile resize analyze muxing @@ -27,6 +27,8 @@ true enable netstandard2.0 + FFMpegCore-ep1kt3t0s + FFMpegCore-ep1kt3t0s