summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2016-08-01 15:44:14 -0400
committerDavid Robillard <d@drobilla.net>2016-08-17 17:25:42 -0400
commit17ad0ca1ad23b336b0fa5952f42dfad95397fc47 (patch)
tree1cac18de3f2b56ac7885fa7f9566ded8eab8872e /scripts
parentd6621e5d1e6f705a09106f62cc75cb33c8c18670 (diff)
downloadingen-17ad0ca1ad23b336b0fa5952f42dfad95397fc47.tar.gz
ingen-17ad0ca1ad23b336b0fa5952f42dfad95397fc47.tar.bz2
ingen-17ad0ca1ad23b336b0fa5952f42dfad95397fc47.zip
Rename main graph and control/notify ports
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/ingenish20
1 files changed, 10 insertions, 10 deletions
diff --git a/scripts/ingenish b/scripts/ingenish
index 2e5d3d88..97640645 100755
--- a/scripts/ingenish
+++ b/scripts/ingenish
@@ -54,20 +54,20 @@ Commands:
exit
Subjects are specified by URI, relative to the engine. The top level audio
-graph has the path /graph, so for example, a port on a block might have the
-(relative) URI /graph/osc/freq.
+graph has the path /main, so for example, a port on a block might have the
+(relative) URI /main/osc/freq.
Bodies are specified in fragments of Turtle, just as written in Ingen graph files.
Example:
- put /graph/left_in 'a lv2:InputPort ; a lv2:AudioPort'
- put /graph/left_out 'a lv2:OutputPort ; a lv2:AudioPort'
- put /graph/tone 'a ingen:Block ; lv2:prototype <http://drobilla.net/plugins/mda/Shepard>'
- put /graph/combo 'a ingen:Block ; lv2:prototype <http://drobilla.net/plugins/mda/Combo>'
- connect /graph/left_in /graph/tone/left_in
- connect /graph/tone/left_out /graph/combo/left_in
- connect /graph/combo/left_out /graph/left_out
- set /graph/tone/output ingen:value 0.7
+ put /main/left_in 'a lv2:InputPort ; a lv2:AudioPort'
+ put /main/left_out 'a lv2:OutputPort ; a lv2:AudioPort'
+ put /main/tone 'a ingen:Block ; lv2:prototype <http://drobilla.net/plugins/mda/Shepard>'
+ put /main/combo 'a ingen:Block ; lv2:prototype <http://drobilla.net/plugins/mda/Combo>'
+ connect /main/left_in /main/tone/left_in
+ connect /main/tone/left_out /main/combo/left_in
+ connect /main/combo/left_out /main/left_out
+ set /main/tone/output ingen:value 0.7
''')
def run(cmd):