mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
Move to separate file
This commit is contained in:
parent
098917a5da
commit
293ac4306a
1 changed files with 0 additions and 18 deletions
|
@ -15,24 +15,6 @@ public ConstantRateFactorArgument(int crf) : base(crf)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public override string GetStringValue()
|
|
||||||
{
|
|
||||||
return $"-crf {Value} ";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/// <summary>
|
|
||||||
/// Constant Rate Factor (CRF) argument
|
|
||||||
/// </summary>
|
|
||||||
public class Variable : Argument<int>
|
|
||||||
{
|
|
||||||
public ConstantRateFactorArgument(int crf) : base(crf)
|
|
||||||
{
|
|
||||||
if (crf < 0 || crf > 63)
|
|
||||||
{
|
|
||||||
throw new ArgumentException("Argument is outside range (0 - 63)", nameof(crf));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public override string GetStringValue()
|
public override string GetStringValue()
|
||||||
{
|
{
|
||||||
return $"-crf {Value} ";
|
return $"-crf {Value} ";
|
||||||
|
|
Loading…
Reference in a new issue