mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 10:05:44 +00:00
12 lines
395 B
C#
12 lines
395 B
C#
namespace FFMpegCore.Arguments;
|
|
|
|
public interface IDynamicArgument
|
|
{
|
|
/// <summary>
|
|
/// Same as <see cref="IArgument.Text" />, but this receives the arguments generated before as parameter
|
|
/// </summary>
|
|
/// <param name="context"></param>
|
|
/// <returns></returns>
|
|
//public string GetText(StringBuilder context);
|
|
string GetText(IEnumerable<IArgument> context);
|
|
}
|