mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 10:05:44 +00:00
14 lines
346 B
C#
14 lines
346 B
C#
namespace FFMpegCore.Arguments
|
|
{
|
|
internal class BlackFrameArgument : IVideoFilterArgument
|
|
{
|
|
public string Key => "blackframe";
|
|
|
|
public string Value { get; }
|
|
|
|
public BlackFrameArgument(int amount = 98, int threshold = 32)
|
|
{
|
|
Value = $"amount={amount}:threshold={threshold}";
|
|
}
|
|
}
|
|
}
|