From 5d98905408fa7ca143acecaa47d2d7df160ce4e7 Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Sat, 31 Jul 2021 21:43:40 +0200 Subject: LV2: Port rest of plugins, Swell - Wider Again, not tested. Report problems or missing control info to the mailing list. --- plugins/LV2/src/TapeDither/TapeDither.ttl | 38 +++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 plugins/LV2/src/TapeDither/TapeDither.ttl (limited to 'plugins/LV2/src/TapeDither/TapeDither.ttl') diff --git a/plugins/LV2/src/TapeDither/TapeDither.ttl b/plugins/LV2/src/TapeDither/TapeDither.ttl new file mode 100644 index 0000000..ce1c176 --- /dev/null +++ b/plugins/LV2/src/TapeDither/TapeDither.ttl @@ -0,0 +1,38 @@ +# Airwindows TapeDither plugin description + +@prefix lv2: . +@prefix rdf: . +@prefix rdfs: . +@prefix units: . + + + a lv2:Plugin , + lv2:EffectsPlugin ; + lv2:project ; + + lv2:optionalFeature lv2:hardRTCapable ; + + # Define the ports for this plugin. + lv2:port [ + + ] , [ + a lv2:InputPort , lv2:AudioPort ; + lv2:index 0 ; + lv2:symbol "in_l" ; + lv2:name "In left" ; + ] , [ + a lv2:InputPort , lv2:AudioPort ; + lv2:index 1 ; + lv2:symbol "in_r" ; + lv2:name "In right" ; + ] , [ + a lv2:OutputPort , lv2:AudioPort ; + lv2:index 2 ; + lv2:symbol "out_l" ; + lv2:name "Out left" ; + ] , [ + a lv2:OutputPort , lv2:AudioPort ; + lv2:index 3 ; + lv2:symbol "out_r" ; + lv2:name "Out right" ; + ] . -- cgit v1.2.3