mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
Increase length of pipe name to make collisions less likely
This commit is contained in:
parent
eb221c3e49
commit
ef2b4be7c4
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ namespace FFMpegCore.Pipes
|
||||||
{
|
{
|
||||||
internal static class PipeHelpers
|
internal static class PipeHelpers
|
||||||
{
|
{
|
||||||
public static string GetUnqiuePipeName() => $"FFMpegCore_{Guid.NewGuid().ToString("N").Substring(0, 5)}";
|
public static string GetUnqiuePipeName() => $"FFMpegCore_{Guid.NewGuid().ToString("N").Substring(16, 16)}";
|
||||||
|
|
||||||
public static string GetPipePath(string pipeName)
|
public static string GetPipePath(string pipeName)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue