mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 01:55:45 +00:00
16 lines
288 B
C#
16 lines
288 B
C#
namespace FFMpegCore.Arguments;
|
|
|
|
/// <summary>
|
|
/// Represents loop parameter
|
|
/// </summary>
|
|
public class LoopArgument : IArgument
|
|
{
|
|
public readonly int Times;
|
|
|
|
public LoopArgument(int times)
|
|
{
|
|
Times = times;
|
|
}
|
|
|
|
public string Text => $"-loop {Times}";
|
|
}
|