mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
QuietArgument -> VerbosityLevelArgument
This commit is contained in:
parent
af77e48f28
commit
673af9b78b
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ private FFMpegArguments(IInputArgument inputArgument)
|
|||
public FFMpegArguments Transpose(Transposition transposition) => WithArgument(new TransposeArgument(transposition));
|
||||
public FFMpegArguments Loop(int times) => WithArgument(new LoopArgument(times));
|
||||
public FFMpegArguments OverwriteExisting() => WithArgument(new OverwriteArgument());
|
||||
public FFMpegArguments Quiet() => WithArgument(new QuietArgument());
|
||||
public FFMpegArguments WithVerbosityLevel(VerbosityLevel verbosityLevel = VerbosityLevel.Error) => WithArgument(new VerbosityLevelArgument(verbosityLevel));
|
||||
|
||||
public FFMpegArguments ForceFormat(VideoCodec videoCodec) => WithArgument(new ForceFormatArgument(videoCodec));
|
||||
public FFMpegArguments ForceFormat(string videoCodec) => WithArgument(new ForceFormatArgument(videoCodec));
|
||||
|
|
Loading…
Reference in a new issue