mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
Update DemuxConcatArgument.cs
Typo
This commit is contained in:
parent
91b39b41a8
commit
cb2a9a8334
1 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@ public class DemuxConcatArgument : IInputArgument
|
|||
public readonly IEnumerable<string> Values;
|
||||
public DemuxConcatArgument(IEnumerable<string> values)
|
||||
{
|
||||
Values = values.Select(value => $"'file '{value}'");
|
||||
Values = values.Select(value => $"file '{value}'");
|
||||
}
|
||||
private readonly string _tempFileName = Path.Combine(FFMpegOptions.Options.TempDirectory, Guid.NewGuid() + ".txt");
|
||||
|
||||
|
@ -26,4 +26,4 @@ public DemuxConcatArgument(IEnumerable<string> values)
|
|||
|
||||
public string Text => $"-f concat -safe 0 -i \"{_tempFileName}\"";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue