mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-15 18:45:44 +00:00
16 lines
335 B
C#
16 lines
335 B
C#
namespace FFMpegCore.Arguments;
|
|
|
|
/// <summary>
|
|
/// Represents shortest parameter
|
|
/// </summary>
|
|
public class ShortestArgument : IArgument
|
|
{
|
|
public readonly bool Shortest;
|
|
|
|
public ShortestArgument(bool shortest)
|
|
{
|
|
Shortest = shortest;
|
|
}
|
|
|
|
public string Text => Shortest ? "-shortest" : string.Empty;
|
|
}
|