Class SPT.Arguments
Inheritance
SPT.Arguments
Assembly: AnalysisPrograms.dll
Syntax
[Command("SPT", Description = "[UNMAINTAINED] Spectral Peak Tracking. Probably not useful anymore.")]
public class Arguments : SubCommandBase
Properties
|
Improve this Doc
View Source
IntensityThreshold
Declaration
[Option(Description = "Intensity Threshold")]
[Required]
public double IntensityThreshold { get; set; }
Property Value
|
Improve this Doc
View Source
Output
Declaration
[Option(Description = "A directory to write output to")]
[DirectoryExistsOrCreate(true, true)]
[LegalFilePath]
public string Output { get; set; }
Property Value
|
Improve this Doc
View Source
Source
Declaration
[Option(Description = "The source audio file to operate on")]
[ExistingFile(false, true)]
[Required]
[LegalFilePath]
public string Source { get; set; }
Property Value
Methods
|
Improve this Doc
View Source
Execute(CommandLineApplication)
Declaration
public override Task<int> Execute(CommandLineApplication app)
Parameters
Type |
Name |
Description |
McMaster.Extensions.CommandLineUtils.CommandLineApplication |
app |
|
Returns
Overrides
Extension Methods