mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
parent
3ff253f744
commit
616a6d1c7d
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()
|
||||
{
|
||||
return $"-crf {Value} ";
|
||||
|
|
Loading…
Reference in a new issue