-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
16 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,8 @@ | |
|
||
@prefix lv2: <http://lv2plug.in/ns/lv2core#> . | ||
@prefix ui: <http://lv2plug.in/ns/extensions/ui#> . | ||
@prefix mod: <http://moddevices.com/ns/mod#> . | ||
@prefix modgui: <http://moddevices.com/ns/modgui#> . | ||
|
||
<http://ssj71.github.io/infamousPlugins/plugs.html#bentdelay> | ||
a lv2:Plugin, lv2:DelayPlugin ; | ||
|
@@ -17,9 +19,11 @@ | |
foaf:homepage <http://ssj71.github.io/infamousPlugins> ; | ||
foaf:mbox <mailto:[email protected]> ; | ||
] ; | ||
mod:brand "infamous"; | ||
mod:label "bent delay"; | ||
lv2:minorVersion 0 ; | ||
lv2:microVersion 1 ; | ||
rdfs:comment "This experimental delay subtracts a downsampled (aliased) delayed signal from the original. Makes bright gritty slapback sounds." ; | ||
rdfs:comment "This lo-fi delay subtracts a downsampled (aliased) delayed signal from the original. Makes gritty slapback sounds or surprisingly warm textures." ; | ||
lv2:optionalFeature lv2:hardRTCapable ; | ||
|
||
lv2:port [ | ||
|
@@ -38,32 +42,32 @@ | |
a lv2:InputPort, lv2:ControlPort ; | ||
lv2:index 2 ; | ||
lv2:symbol "DECIMATE" ; | ||
lv2:name "Decimate" ; | ||
lv2:name "Bend" ; | ||
lv2:portProperty lv2:enumeration ; | ||
lv2:scalePoint [ rdfs:label "1x"; rdf:value 0 ] ; | ||
lv2:scalePoint [ rdfs:label "2x"; rdf:value 1 ] ; | ||
lv2:scalePoint [ rdfs:label "4x"; rdf:value 2 ] ; | ||
lv2:scalePoint [ rdfs:label "8x"; rdf:value 3 ] ; | ||
lv2:scalePoint [ rdfs:label "16x"; rdf:value 4 ] ; | ||
lv2:scalePoint [ rdfs:label "32x"; rdf:value 5 ] ; | ||
lv2:default 2.0 ; | ||
lv2:default 3.0 ; | ||
lv2:minimum 0.0 ; | ||
lv2:maximum 5.0 ; | ||
], [ | ||
a lv2:InputPort, lv2:ControlPort ; | ||
lv2:index 3 ; | ||
lv2:symbol "DELAY" ; | ||
lv2:name "Delay" ; | ||
lv2:default 500.0 ; | ||
lv2:minimum -1400.0 ; | ||
lv2:default 300.0 ; | ||
lv2:minimum 0.0 ; | ||
lv2:maximum 1400.0 ; | ||
units:unit units:ms ; | ||
], [ | ||
a lv2:InputPort, lv2:ControlPort ; | ||
lv2:index 4 ; | ||
lv2:symbol "FEEDBACK" ; | ||
lv2:name "Feedback" ; | ||
lv2:default 0.0 ; | ||
lv2:default 50.0 ; | ||
lv2:minimum 0.0 ; | ||
lv2:maximum 100.0 ; | ||
units:unit units:pc ; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ enum falter_ports | |
OUT, | ||
DECIMATE, | ||
DELAY, | ||
FEEDBACK, | ||
FEEDBACK | ||
}; | ||
|
||
#endif |