mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 01:55:45 +00:00
10 lines
238 B
C#
10 lines
238 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";
|
|
}
|