Add the CLAP note detector feature
This commit is contained in:
parent
8984b3a080
commit
161c97bb28
|
@ -7,6 +7,7 @@
|
|||
pub enum ClapFeature {
|
||||
Instrument,
|
||||
AudioEffect,
|
||||
NoteDetector,
|
||||
NoteEffect,
|
||||
Analyzer,
|
||||
Synthesizer,
|
||||
|
@ -51,6 +52,7 @@ impl ClapFeature {
|
|||
match self {
|
||||
ClapFeature::Instrument => "instrument",
|
||||
ClapFeature::AudioEffect => "audio-effect",
|
||||
ClapFeature::NoteDetector => "note-detector",
|
||||
ClapFeature::NoteEffect => "note-effect",
|
||||
ClapFeature::Analyzer => "analyzer",
|
||||
ClapFeature::Synthesizer => "synthesizer",
|
||||
|
|
Loading…
Reference in a new issue