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