mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-16 11:05:44 +00:00
11 lines
264 B
C#
11 lines
264 B
C#
namespace FFMpegCore.Arguments
|
|
{
|
|
/// <summary>
|
|
/// Represents overwrite parameter
|
|
/// If output file should be overwritten if exists
|
|
/// </summary>
|
|
public class OverwriteArgument : IArgument
|
|
{
|
|
public string Text => "-y";
|
|
}
|
|
}
|