summaryrefslogtreecommitdiffstats
path: root/src/scripts/python/scripts/sillysinepatch.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/scripts/python/scripts/sillysinepatch.py')
-rw-r--r--src/scripts/python/scripts/sillysinepatch.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/scripts/python/scripts/sillysinepatch.py b/src/scripts/python/scripts/sillysinepatch.py
index f46c6d46..24bf68e8 100644
--- a/src/scripts/python/scripts/sillysinepatch.py
+++ b/src/scripts/python/scripts/sillysinepatch.py
@@ -29,8 +29,8 @@ def main(om):
om.synth.create_patch("/silly_sine", 1)
om.synth.create_node("/silly_sine/output", "Internal", "", "audio_output", 0)
om.synth.create_node("/silly_sine/sine", "LADSPA", "cmt.so", "sine_fcac", 0)
- om.synth.set_property("/silly_sine/sine/Frequency", "ingen:value", 440.0)
- om.synth.set_property("/silly_sine/sine/Amplitude", "ingen:value", 1.0)
+ om.synth.set_property("/silly_sine/sine/Frequency", "http://drobilla.net/ns/ingen#value", 440.0)
+ om.synth.set_property("/silly_sine/sine/Amplitude", "http://drobilla.net/ns/ingen#value", 1.0)
om.synth.connect("/silly_sine/sine/Output", "/silly_sine/output/out")
om.synth.enable_patch("/silly_sine")
om.engine.enable()