Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion FFMpegCore/FFMpeg/Arguments/VideoFiltersArgument.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public VideoFilterOptions Pad(PadOptions padOptions)
return WithArgument(new PadArgument(padOptions));
}

private VideoFilterOptions WithArgument(IVideoFilterArgument argument)
public VideoFilterOptions WithArgument(IVideoFilterArgument argument)
{
Arguments.Add(argument);
return this;
Expand Down
4 changes: 2 additions & 2 deletions FFMpegCore/FFMpeg/FFMpegGlobalArguments.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ internal FFMpegGlobalArguments() { }

public FFMpegGlobalArguments WithVerbosityLevel(VerbosityLevel verbosityLevel = VerbosityLevel.Error)
{
return WithOption(new VerbosityLevelArgument(verbosityLevel));
return WithArgument(new VerbosityLevelArgument(verbosityLevel));
}

private FFMpegGlobalArguments WithOption(IArgument argument)
public FFMpegGlobalArguments WithArgument(IArgument argument)
{
Arguments.Add(argument);
return this;
Expand Down