mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-15 18:45:44 +00:00
25 lines
582 B
C#
25 lines
582 B
C#
namespace FFMpegCore.FFMPEG.Argument
|
|
{
|
|
/// <summary>
|
|
/// Represents loop parameter
|
|
/// </summary>
|
|
public class LoopArgument : Argument<int>
|
|
{
|
|
public LoopArgument()
|
|
{
|
|
}
|
|
|
|
public LoopArgument(int value) : base(value)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// String representation of the argument
|
|
/// </summary>
|
|
/// <returns>String representation of the argument</returns>
|
|
public override string GetStringValue()
|
|
{
|
|
return ArgumentStringifier.Loop(Value);
|
|
}
|
|
}
|
|
}
|