mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 10:05:44 +00:00
22 lines
541 B
C#
22 lines
541 B
C#
namespace FFMpegCore.FFMPEG.Argument
|
|
{
|
|
/// <summary>
|
|
/// Represents override parameter
|
|
/// If output file should be overrided if exists
|
|
/// </summary>
|
|
public class OverrideArgument : Argument
|
|
{
|
|
public OverrideArgument()
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// String representation of the argument
|
|
/// </summary>
|
|
/// <returns>String representation of the argument</returns>
|
|
public override string GetStringValue()
|
|
{
|
|
return "-y";
|
|
}
|
|
}
|
|
}
|