diff options
author | David Robillard <d@drobilla.net> | 2012-03-28 00:19:37 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-03-28 00:19:37 +0000 |
commit | 71b9c3ae5fb85414f56c152eaf9d075bbfc0f6ff (patch) | |
tree | 26362d908f0bf1a9480d511487ac6e006d3f02b7 /mdala.lv2/BeatBox.ttl | |
parent | cff1d802d8208f675e33ae50a5ac34018c1367c7 (diff) | |
download | mda.lv2-71b9c3ae5fb85414f56c152eaf9d075bbfc0f6ff.tar.gz mda.lv2-71b9c3ae5fb85414f56c152eaf9d075bbfc0f6ff.tar.bz2 mda.lv2-71b9c3ae5fb85414f56c152eaf9d075bbfc0f6ff.zip |
Mark up control properties, port groups, and add documentation for plugins and ports.
git-svn-id: http://svn.drobilla.net/lad/trunk/plugins/mdala.lv2@4118 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'mdala.lv2/BeatBox.ttl')
-rw-r--r-- | mdala.lv2/BeatBox.ttl | 49 |
1 files changed, 39 insertions, 10 deletions
diff --git a/mdala.lv2/BeatBox.ttl b/mdala.lv2/BeatBox.ttl index 0692980..f9f1038 100644 --- a/mdala.lv2/BeatBox.ttl +++ b/mdala.lv2/BeatBox.ttl @@ -2,6 +2,8 @@ @prefix lv2: <http://lv2plug.in/ns/lv2core#> . @prefix mdala: <http://drobilla.net/plugins/mdala/> . @prefix pg: <http://lv2plug.in/ns/ext/port-groups#> . +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . mdala:BeatBox lv2:symbol "BBox" ; @@ -11,6 +13,9 @@ mdala:BeatBox lv2:pluginProperty lv2:hardRTCapable ; pg:mainInput mdala:mainIn ; pg:mainOutput mdala:mainOut ; + rdfs:comment """Contains three samples (kick, snare and hat) designed to be triggered by incoming audio in three frequency ranges. The default samples are based on the Roland CR-78. + +To record your own sounds, use the Record control to monitor the plug's input, then with the source stopped select the slot to record into, play your sound, then with the source stopped again, switch back to monitoring. This process is easier in an 'off line' editor such as WaveLab, rather than during a live mixdown in Cubase.""" ; lv2:port [ a lv2:InputPort , lv2:ControlPort ; @@ -19,7 +24,8 @@ mdala:BeatBox lv2:symbol "hat_thr" ; lv2:default 0.3 ; lv2:minimum 0.0 ; - lv2:maximum 1.0 + lv2:maximum 1.0 ; + rdfs:comment "Trigger threshold level" ] , [ a lv2:InputPort , lv2:ControlPort ; @@ -28,7 +34,8 @@ mdala:BeatBox lv2:symbol "hat_rate" ; lv2:default 0.45 ; lv2:minimum 0.0 ; - lv2:maximum 1.0 + lv2:maximum 1.0 ; + rdfs:comment "Maximum trigger rate" ] , [ a lv2:InputPort , lv2:ControlPort ; @@ -37,7 +44,8 @@ mdala:BeatBox lv2:symbol "hat_mix" ; lv2:default 0.5 ; lv2:minimum 0.0 ; - lv2:maximum 1.0 + lv2:maximum 1.0 ; + rdfs:comment "Sample playback level" ] , [ a lv2:InputPort , lv2:ControlPort ; @@ -46,7 +54,8 @@ mdala:BeatBox lv2:symbol "kik_thr" ; lv2:default 0.46 ; lv2:minimum 0.0 ; - lv2:maximum 1.0 + lv2:maximum 1.0 ; + rdfs:comment """Trigger filter frequency - switches to "key listen" mode while adjusted""" ] , [ a lv2:InputPort , lv2:ControlPort ; @@ -73,7 +82,8 @@ mdala:BeatBox lv2:symbol "snr_thr" ; lv2:default 0.5 ; lv2:minimum 0.0 ; - lv2:maximum 1.0 + lv2:maximum 1.0 ; + rdfs:comment "Trigger filter frequency - increase if snare sample is triggered by kick drum" ] , [ a lv2:InputPort , lv2:ControlPort ; @@ -98,18 +108,36 @@ mdala:BeatBox lv2:index 9 ; lv2:name "Dynamics" ; lv2:symbol "dynamics" ; - lv2:default 0 ; + lv2:default 0.0 ; lv2:minimum 0.0 ; - lv2:maximum 1.0 + lv2:maximum 1.0 ; + rdfs:comment "Apply input signal level variations to output" ] , [ a lv2:InputPort , lv2:ControlPort ; lv2:index 10 ; lv2:name "Record" ; lv2:symbol "record" ; - lv2:default 0 ; + lv2:default 0.0 ; lv2:minimum 0.0 ; - lv2:maximum 1.0 + lv2:maximum 1.0 ; + lv2:portProperty lv2:enumeration ; + lv2:scalePoint [ + rdfs:label "None" ; + rdf:value 0.0 + ] , [ + rdfs:label "Monitor Input" ; + rdf:value 0.2 + ] , [ + rdfs:label "Record Hat" ; + rdf:value 0.4 + ] , [ + rdfs:label "Record Kick" ; + rdf:value 0.6 + ] , [ + rdfs:label "Record Snare" ; + rdf:value 0.8 + ] ] , [ a lv2:InputPort , lv2:ControlPort ; @@ -118,7 +146,8 @@ mdala:BeatBox lv2:symbol "thru_mix" ; lv2:default 0 ; lv2:minimum 0.0 ; - lv2:maximum 1.0 + lv2:maximum 1.0 ; + rdfs:comment "Allow some of the input signal to be mixed with the output" ] , [ a lv2:InputPort , lv2:AudioPort ; |