mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-16 19:15:44 +00:00
14 lines
353 B
C#
14 lines
353 B
C#
namespace FFMpegCore.Arguments
|
|
{
|
|
public class SegmentCustomArgument : ISegmentArgument
|
|
{
|
|
public readonly string Argument;
|
|
|
|
public SegmentCustomArgument(string argument)
|
|
{
|
|
Argument = argument;
|
|
}
|
|
public string Key => "custom";
|
|
public string Value => Argument ?? string.Empty;
|
|
}
|
|
}
|