mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
Remove -y
This commit is contained in:
parent
274bb9667e
commit
366a1cd6c0
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ public InputPipeArgument(IPipeSource writer) : base(PipeDirection.Out)
|
|||
Writer = writer;
|
||||
}
|
||||
|
||||
public override string Text => $"-y {Writer.GetStreamArguments()} -i \"{PipePath}\"";
|
||||
public override string Text => $"{Writer.GetStreamArguments()} -i \"{PipePath}\"";
|
||||
|
||||
protected override async Task ProcessDataAsync(CancellationToken token)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue