Skip to content

Commit

Permalink
Added stereo output for center removal
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremysalwen committed Dec 10, 2011
1 parent ee0e214 commit d03e8db
Show file tree
Hide file tree
Showing 5 changed files with 213 additions and 186 deletions.
30 changes: 18 additions & 12 deletions kn0ck0ut.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
@prefix ev: <http://lv2plug.in/ns/ext/event#>.
@prefix ll: <http://ll-plugins.nongnu.org/lv2/namespace#>.

<urn:St3pan0va.plugins.kn0ck0ut.1> a lv2:Plugin ;
<urn:St3pan0va.plugins.kn0ck0ut.1.1> a lv2:Plugin ;
doap:name "Kn0ck0ut Vocal Remover" ;
lv2:binary <libkn0ck0ut.so>;
doap:developer [
Expand All @@ -33,12 +33,18 @@
a lv2:AudioPort ;
a lv2:OutputPort ;
lv2:index 2 ;
lv2:symbol "out" ;
lv2:name "Output" ;
lv2:symbol "outl" ;
lv2:name "Output Left" ;
],[
a lv2:AudioPort ;
a lv2:OutputPort ;
lv2:index 3 ;
lv2:symbol "outr" ;
lv2:name "Output Right" ;
],[
a lv2:InputPort;
a lv2:ControlPort;
lv2:index 3;
lv2:index 4;
lv2:symbol "mode";
lv2:name "Mode";
lv2:portProperty lv2:enumeration;
Expand All @@ -48,7 +54,7 @@
],[
a lv2:InputPort;
a lv2:ControlPort;
lv2:index 4;
lv2:index 5;
lv2:symbol "lowcut";
lv2:name "Low Frequency Cut";
lv2:default 0;
Expand All @@ -57,7 +63,7 @@
],[
a lv2:InputPort;
a lv2:ControlPort;
lv2:index 5;
lv2:index 6;
lv2:symbol "highcut";
lv2:name "High Frequency Cut";
lv2:default 0;
Expand All @@ -66,7 +72,7 @@
],[
a lv2:InputPort;
a lv2:ControlPort;
lv2:index 6;
lv2:index 7;
lv2:symbol "decay";
lv2:name "Decay";
lv2:default 0;
Expand All @@ -75,7 +81,7 @@
],[
a lv2:InputPort;
a lv2:ControlPort;
lv2:index 7;
lv2:index 8;
lv2:symbol "blur";
lv2:name "Blur";
lv2:default 0;
Expand All @@ -84,7 +90,7 @@
],[
a lv2:InputPort;
a lv2:ControlPort;
lv2:index 8;
lv2:index 9;
lv2:symbol "windowsize";
lv2:name "Window Size";
lv2:default 8192;
Expand All @@ -93,7 +99,7 @@
],[
a lv2:InputPort;
a lv2:ControlPort;
lv2:index 9;
lv2:index 10;
lv2:symbol "overlapf";
lv2:name "Overlap Factor";
lv2:default 2;
Expand All @@ -102,14 +108,14 @@
],[
a lv2:InputPort;
a lv2:ControlPort;
lv2:index 10;
lv2:index 11;
lv2:symbol "phase";
lv2:name "Phase Compensation";
lv2:portProperty lv2:toggled;
],[
a lv2:OutputPort;
a lv2:ControlPort;
lv2:index 11;
lv2:index 12;
lv2:symbol "latency";
lv2:name "Latency";
lv2:portProperty lv2:reportsLatency;
Expand Down
Loading

0 comments on commit d03e8db

Please sign in to comment.