mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
Change DemuxConcatArgument output to match FFmpeg format
Former-commit-id: 91b39b41a8
This commit is contained in:
parent
a88010d7a1
commit
ba67b60931
1 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
|
@ -15,7 +16,7 @@ public class DemuxConcatArgument : IInputArgument
|
|||
public readonly IEnumerable<string> Values;
|
||||
public DemuxConcatArgument(IEnumerable<string> values)
|
||||
{
|
||||
Values = values;
|
||||
Values = values.Select(value => $"'file '{value}'");
|
||||
}
|
||||
private readonly string _tempFileName = Path.Combine(FFMpegOptions.Options.TempDirectory, Guid.NewGuid() + ".txt");
|
||||
|
||||
|
|
Loading…
Reference in a new issue