mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-13 17:45:45 +00:00
28 lines
659 B
C#
28 lines
659 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FFMpegCore.FFMPEG.Arguments
|
|
{
|
|
/// <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";
|
|
}
|
|
}
|
|
}
|