Toob Flanger, Stereo Reverb, bug fixes

- support state in factory presets.
- Use uncompressed json for settings files.
- Set current plugin preset name to last loaded plugin preset.
- Append plugins after  start node,  before end node fixed.
- Correctly release web socket when web app goes idle.
- Fit and finish issues.
This commit is contained in:
Robin Davies
2023-06-07 04:57:13 -04:00
parent 9dcbf3d00b
commit a3dca9fa5c
133 changed files with 2715 additions and 998 deletions
+12 -60
View File
@@ -49,10 +49,10 @@ toobimpulse:impulseFile
doap:license <https://two-play.com/TooB/licenses/isc> ;
doap:maintainer <http://two-play.com/rerdavies#me> ;
lv2:minorVersion 0 ;
lv2:microVersion 14 ;
lv2:microVersion 15 ;
rdfs:comment """
Convolution reverb is a notoriously compute-intensive effect. For best results, use the Max T control to constrain the length of the impulse file to
Convolution reverb is a notoriously compute-intensive effect. If you are having performance issues, use the Max T control to constrain the length of the impulse file to
under two seconds.
The Max T control affects how much of the impulse file is used. If the length of the impulse file is longer than the specified time, samples occuring after
@@ -68,12 +68,11 @@ impulse signal; turning it off removes leading silence. If the the Direct mix co
delaying the convolution reverb output; you want responses as quickly as possible; the Predelay control should be set to off.
The leading silence in impulse files can sometimes be quite significant.
If the input file has 4 channels, Toob Convolution Reverb assumes the signal is in Ambisonic b-format, and downmixes the channels accordingly. Unfortunately,
it currently dowmixes the Ambisonic audio to mono. Exepct a stereo version of Toob Convolution Reverb in the near future, which will make better use of
Ambisonic source material.
If the input file has 4 channels, Toob Convolution Reverb assumes the signal is in Ambisonic b-format, and downmixes the ambisonic channels to mono. To generate
stereo reverb effects from ambisonic audio, use the stereo version of this plugin.
Toob Convolution Reverb comes with a nominal set of reverb impulse files to get you started. You are strongly encouraged to seek out reverb impulse files
on the internet.
Toob Convolution Reverb comes with a nominal set of reverb impulse files to get you started. You are strongly encouraged to explore the rich collections of
reverb impulse files that are widely available on the internet.
Special thanks are extended to the the OpenAir project, wich graciously provided the base set of impulse files distributed with Toob Convolution Reverb under
licensing terms that are compatible with the Toob Amp project's licensing terms.
@@ -229,53 +228,11 @@ Source: https://www.openair.hosted.york.ac.uk/?page_id=483
];
rdfs:comment "Reverb mix. Set to minimum to disable." ;
],
[
[
a lv2:InputPort ,
lv2:ControlPort ;
lv2:index 3 ;
lv2:portProperty epp:notOnGUI;
lv2:symbol "reverb_mix2" ;
lv2:name "IR Mix";
lv2:default -10.0 ;
lv2:minimum -40.0 ;
lv2:maximum 20.0 ;
units:unit units:db ;
lv2:scalePoint [
rdfs:label "-INF" ;
rdf:value -40.0
];
rdfs:comment "Reverb mix. Set to minimum to disable." ;
],
[
a lv2:InputPort ,
lv2:ControlPort ;
lv2:index 4 ;
lv2:portProperty epp:notOnGUI;
lv2:symbol "reverb_mix3" ;
lv2:name "IR Mix";
lv2:default -10.0 ;
lv2:minimum -40.0 ;
lv2:maximum 20.0 ;
units:unit units:db ;
lv2:scalePoint [
rdfs:label "-INF" ;
rdf:value -40.0
];
rdfs:comment "Reverb mix. Set to minimum to disable." ;
],
[
a lv2:InputPort ,
lv2:ControlPort ;
lv2:index 5 ;
lv2:symbol "predelay" ;
lv2:name "Predelay";
@@ -300,7 +257,7 @@ Source: https://www.openair.hosted.york.ac.uk/?page_id=483
a lv2:OutputPort ,
lv2:ControlPort ;
lv2:index 6 ;
lv2:index 4 ;
lv2:symbol "loading_state" ;
lv2:name "Status";
@@ -340,14 +297,14 @@ Source: https://www.openair.hosted.york.ac.uk/?page_id=483
[
a lv2:AudioPort ,
lv2:InputPort ;
lv2:index 7 ;
lv2:index 5 ;
lv2:symbol "in" ;
lv2:name "In"
],
[
a lv2:AudioPort ,
lv2:OutputPort ;
lv2:index 8 ;
lv2:index 6 ;
lv2:symbol "out" ;
lv2:name "Out"
],
@@ -359,7 +316,7 @@ Source: https://www.openair.hosted.york.ac.uk/?page_id=483
lv2:designation lv2:control ;
atom:supports patch:Message ;
lv2:index 9 ;
lv2:index 7 ;
lv2:symbol "control" ;
lv2:name "Control" ;
rdfs:comment "Control" ;
@@ -369,7 +326,7 @@ Source: https://www.openair.hosted.york.ac.uk/?page_id=483
atom:bufferType atom:Sequence ;
atom:supports patch:Message;
lv2:designation lv2:control ;
lv2:index 10;
lv2:index 8;
lv2:symbol "notify" ;
lv2:name "Notify" ;
rdfs:comment "Notification" ;
@@ -405,10 +362,5 @@ toobcr:ui
lv2:symbol "loading_state";
ui:plugin <http://two-play.com/plugins/toob-convolution-reverb>;
ui:protocol ui:floatProtocol;
# pipedal_ui:style pipedal_ui:text ;
# pipedal_ui:redLevel 0;
# pipedal_ui:yellowLevel -12;
# ui:portIndex 3;
]
.
@@ -0,0 +1,424 @@
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix units: <http://lv2plug.in/ns/extensions/units#> .
@prefix urid: <http://lv2plug.in/ns/ext/urid#> .
@prefix atom: <http://lv2plug.in/ns/ext/atom#> .
@prefix midi: <http://lv2plug.in/ns/ext/midi#> .
@prefix epp: <http://lv2plug.in/ns/ext/port-props#> .
@prefix uiext: <http://lv2plug.in/ns/extensions/ui#> .
@prefix idpy: <http://harrisonconsoles.com/lv2/inlinedisplay#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix mod: <http://moddevices.com/ns/mod#> .
@prefix param: <http://lv2plug.in/ns/ext/parameters#> .
@prefix work: <http://lv2plug.in/ns/ext/worker#> .
@prefix pg: <http://lv2plug.in/ns/ext/port-groups#> .
@prefix pipedal_ui: <http://github.com/rerdavies/pipedal/ui#> .
@prefix ui: <http://lv2plug.in/ns/extensions/ui#> .
@prefix atom: <http://lv2plug.in/ns/ext/atom#> .
@prefix patch: <http://lv2plug.in/ns/ext/patch#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix state: <http://lv2plug.in/ns/ext/state#> .
@prefix urid: <http://lv2plug.in/ns/ext/urid#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix toobcrs: <http://two-play.com/plugins/toob-convolution-reverb-stereo#> .
@prefix toobimpulse: <http://two-play.com/plugins/toob-impulse#> .
toobimpulse:impulseFile
a lv2:Parameter;
rdfs:label "File";
rdfs:range atom:Path.
<http://two-play.com/rerdavies#me>
a foaf:Person ;
foaf:name "Robin Davies" ;
foaf:mbox <mailto:rerdavies@gmail.com> ;
foaf:homepage <https://github.com/sponsors/rerdavies> .
<http://two-play.com/plugins/toob-convolution-reverb-stereo>
a lv2:Plugin ,
lv2:ReverbPlugin ;
doap:name "TooB Convolution Reverb (Stereo)" ,
"TooB Convolution Reverb (Stereo)"@en-gb-gb
;
doap:license <https://two-play.com/TooB/licenses/isc> ;
doap:maintainer <http://two-play.com/rerdavies#me> ;
lv2:minorVersion 0 ;
lv2:microVersion 15 ;
rdfs:comment """
Convolution reverb is a notoriously compute-intensive effect. If you are having performance issues, use the Max T control to constrain the length of the impulse file to
under two seconds.
The Max T control affects how much of the impulse file is used. If the length of the impulse file is longer than the specified time, samples occuring after
the specified time are discarded, and the tail of the impulse convolution is fed back into the imput of the convolution. This ensures a smooth reverb tail,
and has little effect on the quality of the resulting reverb. If the impulse file is shorter than the specified time, then all samples in the impulse
file are used, and no feedback occurs.
Because reverb impulse files typically include the original sound, you will often get strange comb filter effects if you use the Direct mix control;
but this varies depending on the impulse file in question. Usually, the Direct mix control should be set to -INF.
The Predelay control determines whether Toob Convolution Reverb will strip leading silence from the impulse data. Turning it on preserves silence in the
impulse signal; turning it off removes leading silence. If the the Direct mix control is set to -INF dB, there's no real point in
delaying the convolution reverb output; you want responses as quickly as possible; the Predelay control should be set to off.
The leading silence in impulse files can sometimes be quite significant.
If the input file has 4 channels, Toob Convolution Reverb assumes the signal is in Ambisonic b-format, and downmixes the channels accordingly. Unfortunately,
it currently dowmixes the Ambisonic audio to mono. The Width control determines
how wide the stereo image is.
Toob Convolution Reverb comes with a nominal set of reverb impulse files to get you started. You are strongly encouraged to explore the rich collections of
reverb impulse files that are widely available on the internet.
Special thanks are extended to the the OpenAir project, wich graciously provided the base set of impulse files distributed with Toob Convolution Reverb under
licensing terms that are compatible with the Toob Amp project's licensing terms.
---
Toob Convolution Reverb's impulse files were provided by the OpenAir project.
https://www.openair.hosted.york.ac.uk, under CC-By-4.0 licenses.
Arthur Sykes Rymer Auditorium.wav
---------------------------------------
By: www.openairlib.net, University of York
This work is provided under a Creative Commons Attribution 4.0 International License.
https://creativecommons.org/licenses/by/4.0/
Source: https://www.openair.hosted.york.ac.uk/?page_id=425
Jack Lyons Hall, University of York.wav
---------------------------------------
By: www.openairlib.net, Audiolab University of York, Alex Duffell, Aishwarya Sridhar, Zhong Li
This work is provided under a Creative Commons Attribution 4.0 International License.
https://creativecommons.org/licenses/by/4.0/
Source: https://www.openair.hosted.york.ac.uk/?page_id=571
Koli National Park - Winter.wav
---------------------------------------
By: www.openairlib.net, Audio Lab University of York, Andrew Chadwick, Simon Shelley
This work is provided under a Creative Commons Attribution 4.0 International License.
https://creativecommons.org/licenses/by/4.0/
Source: https://www.openair.hosted.york.ac.uk/?page_id=584
St. Margarets Church.wav
---------------------------------------
By: www.openairlib.net, AudioLab University of York, www.ncem.co.uk
This work is provided under a Creative Commons Attribution 4.0 International License.
https://creativecommons.org/licenses/by/4.0/
Source: https://www.openair.hosted.york.ac.uk/?page_id=702
Genesis 6 Studio Live Room.wav
---------------------------------------
By: www.openairlib.net
This work is provided under a Creative Commons Attribution 4.0 International License.
https://creativecommons.org/licenses/by/4.0/
Source: https://www.openair.hosted.york.ac.uk/?page_id=483
""" ;
mod:brand "TooB";
mod:label "Convolution Reverb (Stereo)";
lv2:requiredFeature urid:map;
lv2:optionalFeature state::freePath, state:makePath, state:mapPath, work:schedule ;
lv2:extensionData state:interface;
lv2:optionalFeature lv2:hardRTCapable;
pg:mainInput toobcrs:mainIn ;
pg:mainOutput toobcrs:mainOut ;
patch:readable
toobimpulse:impulseFile
;
patch:writable
toobimpulse:impulseFile
;
lv2:extensionData state:interface,
work:interface;
lv2:port
[
a lv2:InputPort ,
lv2:ControlPort ;
lv2:index 0;
lv2:symbol "time" ;
lv2:name "Max T";
lv2:portProperty epp:logarithmic;
lv2:default 1.5 ;
lv2:minimum 0.1 ;
lv2:maximum 10.0 ;
lv2:portProperty epp:notAutomatic ;
lv2:portProperty epp:expensive ;
units:unit units:s ;
rdfs:comment "Maximum length of impulse data to use." ;
],
[
a lv2:InputPort ,
lv2:ControlPort ;
lv2:index 1;
lv2:symbol "direct_mix" ;
lv2:name "Direct";
lv2:default -40.0 ;
lv2:minimum -40.0 ;
lv2:maximum 20.0 ;
units:unit units:db ;
lv2:scalePoint [
rdfs:label "-INF" ;
rdf:value -40.0
];
rdfs:comment "Direct mix. Set to minimum to disable." ;
],
[
a lv2:InputPort ,
lv2:ControlPort ;
lv2:index 2 ;
lv2:symbol "reverb_mix" ;
lv2:name "Reverb";
lv2:default -10.0 ;
lv2:minimum -40.0 ;
lv2:maximum 20.0 ;
units:unit units:db ;
lv2:scalePoint [
rdfs:label "-INF" ;
rdf:value -40.0
];
rdfs:comment "Reverb mix. Set to minimum to disable." ;
],
[
a lv2:InputPort ,
lv2:ControlPort ;
lv2:index 3 ;
lv2:symbol "width" ;
lv2:name "Width";
lv2:default 1.0 ;
lv2:minimum 0.0 ;
lv2:maximum 1.0 ;
rdfs:comment "Stereo image width." ;
],
[
a lv2:InputPort ,
lv2:ControlPort ;
lv2:portProperty epp:notOnGUI; # doens't produce convincing stereo imaging.
lv2:index 4 ;
lv2:symbol "pan" ;
lv2:name "Pan";
lv2:default 0.0 ;
lv2:minimum -1.0 ;
lv2:maximum 1.0 ;
rdfs:comment "Pan." ;
],
[
a lv2:InputPort ,
lv2:ControlPort ;
lv2:index 5 ;
lv2:symbol "predelay" ;
lv2:name "Predelay";
lv2:default 1 ;
lv2:minimum 0 ;
lv2:maximum 1 ;
lv2:portProperty lv2:enumeration ;
lv2:scalePoint [
rdfs:label "Remove" ;
rdf:value 0.0;
],
[
rdfs:label "Keep" ;
rdf:value 1.0;
];
rdfs:comment "Removes leading silence in impulse when set to false." ;
],
[
a lv2:OutputPort ,
lv2:ControlPort ;
lv2:index 6 ;
lv2:symbol "loading_state" ;
lv2:name "Status";
lv2:portProperty lv2:enumeration ;
lv2:default 0.0 ;
lv2:minimum 0.0 ;
lv2:maximum 5.0 ;
# NotLoaded = 0,
# Idle = 1,
# Error = 2,
# SentRequest = 3,
# GotResponse = 4,
# CleaningUp = 5,
lv2:scalePoint [
rdfs:label "Not loaded" ;
rdf:value 0.0
],[
rdfs:label "Ready" ;
rdf:value 1.0
],[
rdfs:label "Error" ;
rdf:value 2.0
],[
rdfs:label "Loading" ;
rdf:value 3.0
],[
rdfs:label "Loading" ;
rdf:value 4.0
],[
rdfs:label "Loading" ;
rdf:value 5.0
];
rdfs:comment "Plugin status." ;
],
[
a lv2:AudioPort ,
lv2:InputPort ;
lv2:index 7 ;
lv2:symbol "inL" ;
lv2:name "InL" ;
lv2:designation pg:left ;
pg:group toobcrs:mainIn
],
[
a lv2:AudioPort ,
lv2:InputPort ;
lv2:index 8 ;
lv2:symbol "inR" ;
lv2:name "InR" ;
lv2:designation pg:right ;
pg:group toobcrs:mainIn;
],
[
a lv2:AudioPort ,
lv2:OutputPort ;
lv2:index 9 ;
lv2:symbol "outL" ;
lv2:name "OutL" ;
lv2:designation pg:left ;
pg:group toobcrs:mainOut;
],
[
a lv2:AudioPort ,
lv2:OutputPort ;
lv2:index 10 ;
lv2:symbol "outR" ;
lv2:name "OutR" ;
lv2:designation pg:right ;
pg:group toobcrs:mainOut;
],
[
a atom:AtomPort ,
lv2:InputPort;
atom:bufferType atom:Sequence ;
atom:supports patch:Message;
lv2:designation lv2:control ;
atom:supports patch:Message ;
lv2:index 11 ;
lv2:symbol "control" ;
lv2:name "Control" ;
rdfs:comment "Control" ;
] , [
a atom:AtomPort ,
lv2:OutputPort ;
atom:bufferType atom:Sequence ;
atom:supports patch:Message;
lv2:designation lv2:control ;
lv2:index 12;
lv2:symbol "notify" ;
lv2:name "Notify" ;
rdfs:comment "Notification" ;
]
.
<http://two-play.com/plugins/toob-convolution-reverb-stereo> pipedal_ui:ui toobcrs:ui .
toobcrs:ui
a pipedal_ui:ui ;
pipedal_ui:fileProperties
[
a pipedal_ui:fileProperty;
rdfs:label "Impulse File" ;
lv2:index 3 ;
pipedal_ui:patchProperty toobimpulse:impulseFile ;
pipedal_ui:directory "ReverbImpulseFiles";
pipedal_ui:fileTypes
[
a pipedal_ui:fileType;
rdfs:label "WAV File";
pipedal_ui:mimeType "audio/wav";
],
[
a pipedal_ui:fileType;
rdfs:label "FLAC File";
pipedal_ui:mimeType "audio/flac";
] ;
];
ui:portNotification
[
lv2:symbol "loading_state";
ui:plugin <http://two-play.com/plugins/toob-convolution-reverb-stereo>;
ui:protocol ui:floatProtocol;
]
.
+1 -1
View File
@@ -1 +1 @@
ToobAmp.so.1.0.14
ToobAmp.so.1.0.15
Binary file not shown.
Binary file not shown.
+9 -2
View File
@@ -41,7 +41,7 @@
lv2:minorVersion 0 ;
lv2:microVersion 14 ;
rdfs:comment """
Emulation of Boss CE-2 Chorus.
Emulation of a Boss CE-2 Chorus.
""" ;
@@ -72,7 +72,7 @@ Emulation of Boss CE-2 Chorus.
lv2:default 0.5 ;
lv2:minimum 0.0 ;
lv2:maximum 1.0 ;
],
],
[
a lv2:AudioPort ,
lv2:InputPort ;
@@ -86,6 +86,13 @@ Emulation of Boss CE-2 Chorus.
lv2:index 3 ;
lv2:symbol "out" ;
lv2:name "Out"
],
[
a lv2:AudioPort ,
lv2:OutputPort ;
lv2:index 4 ;
lv2:symbol "outr" ;
lv2:name "OutR"
]
.
+135
View File
@@ -0,0 +1,135 @@
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix units: <http://lv2plug.in/ns/extensions/units#> .
@prefix urid: <http://lv2plug.in/ns/ext/urid#> .
@prefix atom: <http://lv2plug.in/ns/ext/atom#> .
@prefix midi: <http://lv2plug.in/ns/ext/midi#> .
@prefix epp: <http://lv2plug.in/ns/ext/port-props#> .
@prefix uiext: <http://lv2plug.in/ns/extensions/ui#> .
@prefix idpy: <http://harrisonconsoles.com/lv2/inlinedisplay#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix mod: <http://moddevices.com/ns/mod#> .
@prefix param: <http://lv2plug.in/ns/ext/parameters#> .
@prefix work: <http://lv2plug.in/ns/ext/worker#> .
@prefix pg: <http://lv2plug.in/ns/ext/port-groups#> .
@prefix atom: <http://lv2plug.in/ns/ext/atom#> .
@prefix patch: <http://lv2plug.in/ns/ext/patch#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix state: <http://lv2plug.in/ns/ext/state#> .
@prefix urid: <http://lv2plug.in/ns/ext/urid#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix toobChorus: <http://two-play.com/plugins/toob-chorus#> .
<http://two-play.com/rerdavies#me>
a foaf:Person ;
foaf:name "Robin Davies" ;
foaf:mbox <mailto:rerdavies@gmail.com> ;
foaf:homepage <https://github.com/sponsors/rerdavies> .
<http://two-play.com/plugins/toob-flanger>
a lv2:Plugin ,
lv2:FlangerPlugin ;
doap:name "TooB BF-2 Flanger" ,
"TooB BF-2 Flanger"@en-gb-gb
;
doap:license <https://two-play.com/TooB/licenses/isc> ;
doap:maintainer <http://two-play.com/rerdavies#me> ;
lv2:minorVersion 0 ;
lv2:microVersion 14 ;
rdfs:comment """
Emulation of a Boss BF-2 Flanger*.
* Use of Boss Audio Systems trademarks is purely nominative. The TooB project is not associated in any way with, nor endorsed by Boss Audio Systems.
""" ;
mod:brand "TooB";
mod:label "BF-2 Flanger";
lv2:optionalFeature lv2:hardRTCapable;
lv2:port
[
a lv2:InputPort ,
lv2:ControlPort ;
lv2:index 0;
lv2:symbol "manual" ;
rdfs:comment "LFO offset";
lv2:name "Manual";
lv2:default 0.5 ;
lv2:minimum 0.0;
lv2:maximum 1.0;
],
[
a lv2:InputPort ,
lv2:ControlPort ;
lv2:index 1 ;
lv2:symbol "depth" ;
rdfs:comment "LFO depth";
lv2:name "Depth";
lv2:default 0.5 ;
lv2:minimum 0.0 ;
lv2:maximum 1.0 ;
],
[
a lv2:InputPort ,
lv2:ControlPort ;
lv2:index 2 ;
lv2:symbol "rate" ;
lv2:name "Rate";
rdfs:comment "LFO rate";
lv2:default 0.5 ;
lv2:minimum 0.0 ;
lv2:maximum 1.0 ;
],
[
a lv2:OutputPort ,
lv2:ControlPort ;
lv2:index 3 ;
lv2:symbol "lfo" ;
lv2:name "LFO";
lv2:minimum -1.0 ;
lv2:maximum 1.0 ;
],
[
a lv2:InputPort ,
lv2:ControlPort ;
lv2:index 4 ;
lv2:symbol "res" ;
lv2:name "Res";
rdfs:comment "Delay feedback";
lv2:default 0.5 ;
lv2:minimum 0.0 ;
lv2:maximum 1.0 ;
],
[
a lv2:AudioPort ,
lv2:InputPort ;
lv2:index 5 ;
lv2:symbol "in" ;
lv2:name "In"
],
[
a lv2:AudioPort ,
lv2:OutputPort ;
lv2:index 6 ;
lv2:symbol "outl" ;
lv2:name "OutL"
]
.
@@ -0,0 +1,145 @@
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix units: <http://lv2plug.in/ns/extensions/units#> .
@prefix urid: <http://lv2plug.in/ns/ext/urid#> .
@prefix atom: <http://lv2plug.in/ns/ext/atom#> .
@prefix midi: <http://lv2plug.in/ns/ext/midi#> .
@prefix epp: <http://lv2plug.in/ns/ext/port-props#> .
@prefix uiext: <http://lv2plug.in/ns/extensions/ui#> .
@prefix idpy: <http://harrisonconsoles.com/lv2/inlinedisplay#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix mod: <http://moddevices.com/ns/mod#> .
@prefix param: <http://lv2plug.in/ns/ext/parameters#> .
@prefix work: <http://lv2plug.in/ns/ext/worker#> .
@prefix pg: <http://lv2plug.in/ns/ext/port-groups#> .
@prefix atom: <http://lv2plug.in/ns/ext/atom#> .
@prefix patch: <http://lv2plug.in/ns/ext/patch#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix state: <http://lv2plug.in/ns/ext/state#> .
@prefix urid: <http://lv2plug.in/ns/ext/urid#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix toobChorus: <http://two-play.com/plugins/toob-chorus#> .
<http://two-play.com/rerdavies#me>
a foaf:Person ;
foaf:name "Robin Davies" ;
foaf:mbox <mailto:rerdavies@gmail.com> ;
foaf:homepage <https://github.com/sponsors/rerdavies> .
<http://two-play.com/plugins/toob-flanger-stereo>
a lv2:Plugin ,
lv2:FlangerPlugin ;
doap:name "TooB BF-2 Stereo Flanger" ,
"TooB BF-2 Stereo Flanger"@en-gb-gb
;
doap:license <https://two-play.com/TooB/licenses/isc> ;
doap:maintainer <http://two-play.com/rerdavies#me> ;
lv2:minorVersion 0 ;
lv2:microVersion 14 ;
rdfs:comment """
Digital emulation of a Boss BF-2 Flanger*.
WARNING: use of this plugin in monophonic signal chains, on some hosts, may completely cancel out the flanger effect, since the right channel is
created by subtracting the output of the flanger delay line instead of adding it. If you are using this effect in a monophonic effect chain, you
should use the monophonic version of this effect.
* Use of Boss Audio Systems trademarks is purely nominative. The TooB project is not associated in any way with, nor endorsed by Boss Audio Systems.
""" ;
mod:brand "TooB";
mod:label "BF-2 Stereo Flanger";
lv2:optionalFeature lv2:hardRTCapable;
lv2:port
[
a lv2:InputPort ,
lv2:ControlPort ;
lv2:index 0;
lv2:symbol "manual" ;
rdfs:comment "LFO offset";
lv2:name "Manual";
lv2:default 0.5 ;
lv2:minimum 0.0;
lv2:maximum 1.0;
],
[
a lv2:InputPort ,
lv2:ControlPort ;
lv2:index 1 ;
lv2:symbol "depth" ;
rdfs:comment "LFO depth";
lv2:name "Depth";
lv2:default 0.5 ;
lv2:minimum 0.0 ;
lv2:maximum 1.0 ;
],
[
a lv2:InputPort ,
lv2:ControlPort ;
lv2:index 2 ;
lv2:symbol "rate" ;
lv2:name "Rate";
rdfs:comment "LFO rate";
lv2:default 0.5 ;
lv2:minimum 0.0 ;
lv2:maximum 1.0 ;
],
[
a lv2:OutputPort ,
lv2:ControlPort ;
lv2:index 3 ;
lv2:symbol "lfo" ;
lv2:name "LFO";
lv2:minimum -1.0 ;
lv2:maximum 1.0 ;
],
[
a lv2:InputPort ,
lv2:ControlPort ;
lv2:index 4 ;
lv2:symbol "res" ;
lv2:name "Res";
rdfs:comment "Delay feedback";
lv2:default 0.5 ;
lv2:minimum 0.0 ;
lv2:maximum 1.0 ;
],
[
a lv2:AudioPort ,
lv2:InputPort ;
lv2:index 5 ;
lv2:symbol "in" ;
lv2:name "In"
],
[
a lv2:AudioPort ,
lv2:OutputPort ;
lv2:index 6 ;
lv2:symbol "outl" ;
lv2:name "OutL"
],
[
a lv2:AudioPort ,
lv2:OutputPort ;
lv2:index 7 ;
lv2:symbol "outr" ;
lv2:name "OutR"
]
.
+125 -217
View File
@@ -1,6 +1,7 @@
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix modgui: <http://moddevices.com/ns/modgui#> .
@prefix pset: <http://lv2plug.in/ns/ext/presets#> .
@prefix tpset: <http://two-play.com/plugins/preset#> .
<http://two-play.com/plugins/toob-tone-stack> a lv2:Plugin ;
@@ -11,6 +12,11 @@
lv2:binary <ToobAmp.so> ;
rdfs:seeAlso <ConvolutionReverb.ttl> .
<http://two-play.com/plugins/toob-convolution-reverb-stereo> a lv2:Plugin ;
lv2:binary <ToobAmp.so> ;
rdfs:seeAlso <ConvolutionReverbStereo.ttl> .
<http://two-play.com/plugins/toob-cab-ir> a lv2:Plugin ;
lv2:binary <ToobAmp.so> ;
rdfs:seeAlso <CabIR.ttl> .
@@ -54,234 +60,136 @@
lv2:binary <ToobAmp.so> ;
rdfs:seeAlso <ToobChorus.ttl> .
<http://two-play.com/plugins/toob-flanger> a lv2:Plugin ;
lv2:binary <ToobAmp.so> ;
rdfs:seeAlso <ToobFlanger.ttl> .
<http://two-play.com/plugins/toob-flanger-stereo> a lv2:Plugin ;
lv2:binary <ToobAmp.so> ;
rdfs:seeAlso <ToobFlangerStereo.ttl> .
tpset:toob-flanger-preset-0
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-flanger> ;
rdfs:seeAlso <toob-flanger-presets.ttl> .
tpset:toob-flanger-preset-1
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-flanger> ;
rdfs:seeAlso <toob-flanger-presets.ttl> .
tpset:toob-flanger-preset-2
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-flanger> ;
rdfs:seeAlso <toob-flanger-presets.ttl> .
tpset:toob-flanger-preset-3
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-flanger> ;
rdfs:seeAlso <toob-flanger-presets.ttl> .
tpset:toob-flanger-stereo-preset-0
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-flanger-stereo> ;
rdfs:seeAlso <toob-flanger-stereo-presets.ttl> .
tpset:toob-flanger-stereo-preset-1
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-flanger-stereo> ;
rdfs:seeAlso <toob-flanger-stereo-presets.ttl> .
tpset:toob-flanger-stereo-preset-2
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-flanger-stereo> ;
rdfs:seeAlso <toob-flanger-stereo-presets.ttl> .
tpset:toob-flanger-stereo-preset-3
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-flanger-stereo> ;
rdfs:seeAlso <toob-flanger-stereo-presets.ttl> .
# <http://two-play.com/plugins/toob-power-stage>
# modgui:gui [
# modgui:resourcesDirectory <modgui> ;
# modgui:iconTemplate <modgui/icon-toob-power-stage.html> ;
# modgui:stylesheet <modgui/stylesheet-toob.css> ;
# modgui:screenshot <modgui/screenshot-toob-power-stage.png> ;
# modgui:thumbnail <modgui/thumbnail-toob-power-stage.png> ;
# modgui:javascript <modgui/script-toob-power-stage.js> ;
tpset:toob-delay-preset-0
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-delay> ;
rdfs:seeAlso <toob-delay-presets.ttl> .
# modgui:brand "TooB" ;
# modgui:label "TooB Power Stage" ;
tpset:toob-delay-preset-1
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-delay> ;
rdfs:seeAlso <toob-delay-presets.ttl> .
# modgui:monitoredOutputs [ lv2:symbol "notify"] ;
# modgui:port [
# lv2:index 0 ;
# lv2:symbol "trim1" ;
# lv2:name "TRIM" ;
# ] , [
# lv2:index 1 ;
# lv2:symbol "gain1" ;
# lv2:name "GAIN" ;
# ] , [
# lv2:index 2 ;
# lv2:symbol "locut1" ;
# lv2:name "LO CUT" ;
# ] , [
# lv2:index 3 ;
# lv2:symbol "hicut1" ;
# lv2:name "HI CUT" ;
# ], [
# lv2:index 22 ;
# lv2:symbol "shape1" ;
# lv2:name "SHAPE1" ;
# ], [
# lv2:index 4 ;
# lv2:symbol "gain2_enable" ;
# lv2:name "Ena" ;
# ] , [
# lv2:index 5 ;
# lv2:symbol "trim2" ;
# lv2:name "TRIM" ;
# ] , [
# lv2:index 6 ;
# lv2:symbol "gain2" ;
# lv2:name "GAIN" ;
# ] , [
# lv2:index 7 ;
# lv2:symbol "locut2" ;
# lv2:name "LO CUT" ;
# ] , [
# lv2:index 8 ;
# lv2:symbol "hicut2" ;
# lv2:name "HI CUT" ;
# ], [
# lv2:index 23 ;
# lv2:symbol "shape2" ;
# lv2:name "SHAPE2" ;
# ] , [
# lv2:index 9 ;
# lv2:symbol "gain3_enable" ;
# lv2:name "Ena" ;
# ] ,
# [
# lv2:index 10 ;
# lv2:symbol "trim3" ;
# lv2:name "TRIM" ;
# ] , [
# lv2:index 11 ;
# lv2:symbol "gain3" ;
# lv2:name "GAIN" ;
# ] , [
# lv2:index 12 ;
# lv2:symbol "locut3" ;
# lv2:name "LO CUT" ;
# ] , [
# lv2:index 13 ;
# lv2:symbol "hicut3" ;
# lv2:name "HI CUT" ;
# ] , [
# lv2:index 24 ;
# lv2:symbol "shape3" ;
# lv2:name "SHAPE3" ;
# ], [
# lv2:index 14 ;
# lv2:symbol "sag" ;
# lv2:name "SAG" ;
# ] , [
# lv2:index 15 ;
# lv2:symbol "sagd" ;
# lv2:name "SAGD" ;
# ], [
# lv2:index 16 ;
# lv2:symbol "master" ;
# lv2:name "MASTER" ;
# ],
# [
# a lv2:InputPort ,
# lv2:ControlPort ;
tpset:toob-ml-preset-0
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-ml> ;
rdfs:seeAlso <toob-ml-presets.ttl> .
# lv2:index 21 ;
# lv2:symbol "sagf" ;
# lv2:name "SagF";
# ]
# ;
# ] .
tpset:toob-ml-preset-1
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-ml> ;
rdfs:seeAlso <toob-ml-presets.ttl> .
# <http://two-play.com/plugins/toob-input_stage>
# modgui:gui [
# modgui:resourcesDirectory <modgui> ;
# modgui:javascript <modgui/script-toob-input-stage.js> ;
# modgui:iconTemplate <modgui/icon-toob-input-stage.html> ;
# modgui:stylesheet <modgui/stylesheet-toob.css> ;
# modgui:screenshot <modgui/screenshot-toob-input-stage.png> ;
# modgui:thumbnail <modgui/thumbnail-toob-input-stage.png> ;
tpset:toob-ml-preset-2
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-ml> ;
rdfs:seeAlso <toob-ml-presets.ttl> .
# modgui:brand "TooB" ;
# modgui:label "TooB Input Stage" ;
tpset:toob-freeverb-preset-0
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-freeverb> ;
rdfs:seeAlso <toob-freeverb-presets.ttl> .
# modgui:monitoredOutputs [ lv2:symbol "notify"] ;
# modgui:port [
# lv2:index 0 ;
# lv2:symbol "trim" ;
# lv2:name "Trim" ;
# ] , [
# lv2:index 1 ;
# lv2:symbol "locut" ;
# lv2:name "Lo Cut" ;
# ] , [
# lv2:index 2 ;
# lv2:symbol "bright" ;
# lv2:name "Bright" ;
# ] , [
# lv2:index 3 ;
# lv2:symbol "brightf" ;
# lv2:name "Bright F" ;
# ] , [
# lv2:index 4 ;
# lv2:symbol "hicut" ;
# lv2:name "Hi Cut" ;
# ] , [
# lv2:index 5 ;
# lv2:symbol "gate_t" ;
# lv2:name "Gate T" ;
# ] , [
# lv2:index 6 ;
# lv2:symbol "boost" ;
# lv2:name "Boost" ;
# ]
# ;
# ] .
tpset:toob-freeverb-preset-1
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-freeverb> ;
rdfs:seeAlso <toob-freeverb-presets.ttl> .
# <http://two-play.com/plugins/toob-cab-sim>
# modgui:gui [
# modgui:resourcesDirectory <modgui> ;
# modgui:javascript <modgui/script-toob-cab-sim.js> ;
# modgui:iconTemplate <modgui/icon-toob-cab-sim.html> ;
# modgui:stylesheet <modgui/stylesheet-toob.css> ;
# modgui:screenshot <modgui/screenshot-toob-cab-sim.png> ;
# modgui:thumbnail <modgui/thumbnail-toob-cab-sim.png> ;
tpset:toob-freeverb-preset-2
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-freeverb> ;
rdfs:seeAlso <toob-freeverb-presets.ttl> .
# modgui:brand "TooB" ;
# modgui:label "TooB Cab Simulator" ;
###
tpset:toob-convolution-reverb-stereo-preset-0
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-convolution-reverb-stereo> ;
rdfs:seeAlso <toob-convolution-reverb-stereo-presets.ttl> .
# modgui:monitoredOutputs [ lv2:symbol "notify"] ;
# modgui:port [
# lv2:index 0 ;
# lv2:symbol "locut" ;
# lv2:name "Lo Cut" ;
# ] , [
# lv2:index 1 ;
# lv2:symbol "bright" ;
# lv2:name "Bright" ;
# ] , [
# lv2:index 2 ;
# lv2:symbol "brightf" ;
# lv2:name "F" ;
# ] , [
# lv2:index 3 ;
# lv2:symbol "hicut" ;
# lv2:name "Hi Cut" ;
# ], [
# lv2:index 4 ;
# lv2:symbol "comb" ;
# lv2:name "Comb" ;
# ], [
# lv2:index 5 ;
# lv2:symbol "combf" ;
# lv2:name "F" ;
# ], [
# lv2:index 6 ;
# lv2:symbol "trim" ;
# lv2:name "Trim" ;
# ]
# ;
# ] .
tpset:toob-convolution-reverb-stereo-preset-1
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-convolution-reverb-stereo> ;
rdfs:seeAlso <toob-convolution-reverb-stereo-presets.ttl> .
# <http://two-play.com/plugins/toob-tone-stack>
# modgui:gui [
# modgui:resourcesDirectory <modgui> ;
# modgui:javascript <modgui/script-toob-tone-stack.js> ;
# modgui:iconTemplate <modgui/icon-toob-tone-stack.html> ;
# modgui:stylesheet <modgui/stylesheet-toob.css> ;
# modgui:screenshot <modgui/screenshot-toob-tone-stack.png> ;
# modgui:thumbnail <modgui/thumbnail-toob-tone-stack.png> ;
tpset:toob-convolution-reverb-stereo-preset-2
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-convolution-reverb-stereo> ;
rdfs:seeAlso <toob-convolution-reverb-stereo-presets.ttl> .
# modgui:brand "TooB" ;
# modgui:label "TooB Tone Stack" ;
tpset:toob-convolution-reverb-stereo-preset-3
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-convolution-reverb-stereo> ;
rdfs:seeAlso <toob-convolution-reverb-stereo-presets.ttl> .
###
tpset:toob-convolution-reverb-preset-0
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-convolution-reverb> ;
rdfs:seeAlso <toob-convolution-reverb-presets.ttl> .
tpset:toob-convolution-reverb-preset-1
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-convolution-reverb> ;
rdfs:seeAlso <toob-convolution-reverb-presets.ttl> .
tpset:toob-convolution-reverb-preset-2
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-convolution-reverb> ;
rdfs:seeAlso <toob-convolution-reverb-presets.ttl> .
tpset:toob-convolution-reverb-preset-3
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-convolution-reverb> ;
rdfs:seeAlso <toob-convolution-reverb-presets.ttl> .
# modgui:monitoredOutputs [ lv2:symbol "notify"] ;
# modgui:port [
# lv2:index 0 ;
# lv2:symbol "bass" ;
# lv2:name "Bass" ;
# ] , [
# lv2:index 1 ;
# lv2:symbol "mid" ;
# lv2:name "Mid" ;
# ], [
# lv2:index 2 ;
# lv2:symbol "treble" ;
# lv2:name "Treble" ;
# ] , [
# lv2:index 3 ;
# lv2:symbol "ampmodel" ;
# lv2:name "Amp Model" ;
# ]
# ;
# ] .
@@ -0,0 +1,102 @@
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix pset: <http://lv2plug.in/ns/ext/presets#> .
@prefix tpset: <http://two-play.com/plugins/preset#> .
@prefix state: <http://lv2plug.in/ns/ext/state#> .
tpset:toob-convolution-reverb-preset-0
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-convolution-reverb> ;
rdfs:label "Hall" ;
lv2:port [
lv2:symbol "direct_mix" ;
pset:value -2.222214 ;
] , [
lv2:symbol "loading_state" ;
pset:value 0.0 ;
] , [
lv2:symbol "predelay" ;
pset:value 0.0 ;
] , [
lv2:symbol "reverb_mix" ;
pset:value -12.77779 ;
] , [
lv2:symbol "time" ;
pset:value 1.5 ;
] ;
state:state [
<http://two-play.com/plugins/toob-impulse#impulseFile> "ReverbImpulseFiles/St. Margaret\u0027s Church.wav" ;
] .
tpset:toob-convolution-reverb-preset-1
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-convolution-reverb> ;
rdfs:label "Large Hall" ;
lv2:port [
lv2:symbol "direct_mix" ;
pset:value -3.333313 ;
] , [
lv2:symbol "loading_state" ;
pset:value 0.0 ;
] , [
lv2:symbol "predelay" ;
pset:value 1.0 ;
] , [
lv2:symbol "reverb_mix" ;
pset:value -15.0 ;
] , [
lv2:symbol "time" ;
pset:value 1.5 ;
] ;
state:state [
<http://two-play.com/plugins/toob-impulse#impulseFile> "ReverbImpulseFiles/Jack Lyons Hall, University of York.wav" ;
] .
tpset:toob-convolution-reverb-preset-2
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-convolution-reverb> ;
rdfs:label "Club" ;
lv2:port [
lv2:symbol "direct_mix" ;
pset:value -40.0 ;
] , [
lv2:symbol "loading_state" ;
pset:value 0.0 ;
] , [
lv2:symbol "predelay" ;
pset:value 0.0 ;
] , [
lv2:symbol "reverb_mix" ;
pset:value -5.0 ;
] , [
lv2:symbol "time" ;
pset:value 1.5 ;
] ;
state:state [
<http://two-play.com/plugins/toob-impulse#impulseFile> "ReverbImpulseFiles/Arthur Sykes Rymer Auditorium.wav" ;
] .
tpset:toob-convolution-reverb-preset-3
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-convolution-reverb> ;
rdfs:label "Live Room" ;
lv2:port [
lv2:symbol "direct_mix" ;
pset:value -1.111115 ;
] , [
lv2:symbol "loading_state" ;
pset:value 0.0 ;
] , [
lv2:symbol "predelay" ;
pset:value 0.0 ;
] , [
lv2:symbol "reverb_mix" ;
pset:value -9.444443 ;
] , [
lv2:symbol "time" ;
pset:value 1.5 ;
] ;
state:state [
<http://two-play.com/plugins/toob-impulse#impulseFile> "ReverbImpulseFiles/Genesis 6 Studio Live Room.wav" ;
] .
@@ -0,0 +1,114 @@
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix pset: <http://lv2plug.in/ns/ext/presets#> .
@prefix tpset: <http://two-play.com/plugins/preset#> .
@prefix state: <http://lv2plug.in/ns/ext/state#> .
tpset:toob-convolution-reverb-stereo-preset-0
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-convolution-reverb-stereo> ;
rdfs:label "Hall" ;
lv2:port [
lv2:symbol "direct_mix" ;
pset:value -2.222214 ;
] , [
lv2:symbol "loading_state" ;
pset:value 0.0 ;
] , [
lv2:symbol "predelay" ;
pset:value 0.0 ;
] , [
lv2:symbol "reverb_mix" ;
pset:value -12.77779 ;
] , [
lv2:symbol "time" ;
pset:value 1.5 ;
] , [
lv2:symbol "width" ;
pset:value 1.0 ;
] ;
state:state [
<http://two-play.com/plugins/toob-impulse#impulseFile> "ReverbImpulseFiles/St. Margaret\u0027s Church.wav" ;
] .
tpset:toob-convolution-reverb-stereo-preset-1
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-convolution-reverb-stereo> ;
rdfs:label "Large Hall" ;
lv2:port [
lv2:symbol "direct_mix" ;
pset:value -3.333313 ;
] , [
lv2:symbol "loading_state" ;
pset:value 0.0 ;
] , [
lv2:symbol "predelay" ;
pset:value 1.0 ;
] , [
lv2:symbol "reverb_mix" ;
pset:value -15.0 ;
] , [
lv2:symbol "time" ;
pset:value 1.5 ;
] , [
lv2:symbol "width" ;
pset:value 1.0 ;
] ;
state:state [
<http://two-play.com/plugins/toob-impulse#impulseFile> "ReverbImpulseFiles/Jack Lyons Hall, University of York.wav" ;
] .
tpset:toob-convolution-reverb-stereo-preset-2
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-convolution-reverb-stereo> ;
rdfs:label "Club" ;
lv2:port [
lv2:symbol "direct_mix" ;
pset:value -40.0 ;
] , [
lv2:symbol "loading_state" ;
pset:value 0.0 ;
] , [
lv2:symbol "predelay" ;
pset:value 0.0 ;
] , [
lv2:symbol "reverb_mix" ;
pset:value -5.0 ;
] , [
lv2:symbol "time" ;
pset:value 1.5 ;
] , [
lv2:symbol "width" ;
pset:value 1.0 ;
] ;
state:state [
<http://two-play.com/plugins/toob-impulse#impulseFile> "ReverbImpulseFiles/Arthur Sykes Rymer Auditorium.wav" ;
] .
tpset:toob-convolution-reverb-stereo-preset-3
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-convolution-reverb-stereo> ;
rdfs:label "Live Room" ;
lv2:port [
lv2:symbol "direct_mix" ;
pset:value -1.111115 ;
] , [
lv2:symbol "loading_state" ;
pset:value 0.0 ;
] , [
lv2:symbol "predelay" ;
pset:value 0.0 ;
] , [
lv2:symbol "reverb_mix" ;
pset:value -9.444443 ;
] , [
lv2:symbol "time" ;
pset:value 1.5 ;
] , [
lv2:symbol "width" ;
pset:value 1.0 ;
] ;
state:state [
<http://two-play.com/plugins/toob-impulse#impulseFile> "ReverbImpulseFiles/Genesis 6 Studio Live Room.wav" ;
] .
@@ -0,0 +1,35 @@
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix pset: <http://lv2plug.in/ns/ext/presets#> .
@prefix tpset: <http://two-play.com/plugins/preset#> .
tpset:toob-delay-preset-0
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-delay> ;
rdfs:label "Classic" ;
lv2:port [
lv2:symbol "delay" ;
pset:value 340.0 ;
] , [
lv2:symbol "feedback" ;
pset:value 39.1667 ;
] , [
lv2:symbol "level" ;
pset:value 27.0 ;
] .
tpset:toob-delay-preset-1
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-delay> ;
rdfs:label "Slapback" ;
lv2:port [
lv2:symbol "delay" ;
pset:value 94.6447 ;
] , [
lv2:symbol "feedback" ;
pset:value 39.1667 ;
] , [
lv2:symbol "level" ;
pset:value 42.0 ;
] .
@@ -0,0 +1,77 @@
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix pset: <http://lv2plug.in/ns/ext/presets#> .
@prefix tpset: <http://two-play.com/plugins/preset#> .
tpset:toob-flanger-preset-0
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-flanger> ;
rdfs:label "Vibe" ;
lv2:port [
lv2:symbol "depth" ;
pset:value 0.341667 ;
] , [
lv2:symbol "manual" ;
pset:value 0.3 ;
] , [
lv2:symbol "rate" ;
pset:value 0.991667 ;
] , [
lv2:symbol "res" ;
pset:value 0.35 ;
] .
tpset:toob-flanger-preset-1
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-flanger> ;
rdfs:label "Default" ;
lv2:port [
lv2:symbol "depth" ;
pset:value 0.5 ;
] , [
lv2:symbol "manual" ;
pset:value 0.5 ;
] , [
lv2:symbol "rate" ;
pset:value 0.5 ;
] , [
lv2:symbol "res" ;
pset:value 0.5 ;
] .
tpset:toob-flanger-preset-2
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-flanger> ;
rdfs:label "Chorus" ;
lv2:port [
lv2:symbol "depth" ;
pset:value 0.158333 ;
] , [
lv2:symbol "manual" ;
pset:value 0.0 ;
] , [
lv2:symbol "rate" ;
pset:value 0.925 ;
] , [
lv2:symbol "res" ;
pset:value 0.0 ;
] .
tpset:toob-flanger-preset-3
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-flanger> ;
rdfs:label "Rotary" ;
lv2:port [
lv2:symbol "depth" ;
pset:value 0.675 ;
] , [
lv2:symbol "manual" ;
pset:value 0.0 ;
] , [
lv2:symbol "rate" ;
pset:value 0.966667 ;
] , [
lv2:symbol "res" ;
pset:value 0.0 ;
] .
@@ -0,0 +1,77 @@
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix pset: <http://lv2plug.in/ns/ext/presets#> .
@prefix tpset: <http://two-play.com/plugins/preset#> .
tpset:toob-flanger-stereo-preset-0
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-flanger-stereo> ;
rdfs:label "Vibe" ;
lv2:port [
lv2:symbol "depth" ;
pset:value 0.341667 ;
] , [
lv2:symbol "manual" ;
pset:value 0.3 ;
] , [
lv2:symbol "rate" ;
pset:value 0.991667 ;
] , [
lv2:symbol "res" ;
pset:value 0.35 ;
] .
tpset:toob-flanger-stereo-preset-1
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-flanger-stereo> ;
rdfs:label "Default" ;
lv2:port [
lv2:symbol "depth" ;
pset:value 0.5 ;
] , [
lv2:symbol "manual" ;
pset:value 0.5 ;
] , [
lv2:symbol "rate" ;
pset:value 0.5 ;
] , [
lv2:symbol "res" ;
pset:value 0.5 ;
] .
tpset:toob-flanger-stereo-preset-2
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-flanger-stereo> ;
rdfs:label "Chorus" ;
lv2:port [
lv2:symbol "depth" ;
pset:value 0.158333 ;
] , [
lv2:symbol "manual" ;
pset:value 0.0 ;
] , [
lv2:symbol "rate" ;
pset:value 0.925 ;
] , [
lv2:symbol "res" ;
pset:value 0.0 ;
] .
tpset:toob-flanger-stereo-preset-3
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-flanger-stereo> ;
rdfs:label "Rotary" ;
lv2:port [
lv2:symbol "depth" ;
pset:value 0.675 ;
] , [
lv2:symbol "manual" ;
pset:value 0.0 ;
] , [
lv2:symbol "rate" ;
pset:value 0.966667 ;
] , [
lv2:symbol "res" ;
pset:value 0.0 ;
] .
@@ -0,0 +1,50 @@
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix pset: <http://lv2plug.in/ns/ext/presets#> .
@prefix tpset: <http://two-play.com/plugins/preset#> .
tpset:toob-freeverb-preset-0
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-freeverb> ;
rdfs:label "Room" ;
lv2:port [
lv2:symbol "damping" ;
pset:value 0.9851851 ;
] , [
lv2:symbol "dryWet" ;
pset:value 0.6537038 ;
] , [
lv2:symbol "roomSize" ;
pset:value 0.3 ;
] .
tpset:toob-freeverb-preset-1
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-freeverb> ;
rdfs:label "Cathedral" ;
lv2:port [
lv2:symbol "damping" ;
pset:value 1.0 ;
] , [
lv2:symbol "dryWet" ;
pset:value 0.564815 ;
] , [
lv2:symbol "roomSize" ;
pset:value 0.8555557 ;
] .
tpset:toob-freeverb-preset-2
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-freeverb> ;
rdfs:label "Hall" ;
lv2:port [
lv2:symbol "damping" ;
pset:value 1.0 ;
] , [
lv2:symbol "dryWet" ;
pset:value 0.6740743 ;
] , [
lv2:symbol "roomSize" ;
pset:value 0.6333336 ;
] .
@@ -0,0 +1,86 @@
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix pset: <http://lv2plug.in/ns/ext/presets#> .
@prefix tpset: <http://two-play.com/plugins/preset#> .
tpset:toob-ml-preset-0
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-ml> ;
rdfs:label "Fender Clean" ;
lv2:port [
lv2:symbol "bass" ;
pset:value 0.783333 ;
] , [
lv2:symbol "gain" ;
pset:value 0.0 ;
] , [
lv2:symbol "master" ;
pset:value 1.5 ;
] , [
lv2:symbol "mid" ;
pset:value 0.5 ;
] , [
lv2:symbol "model" ;
pset:value 8.0 ;
] , [
lv2:symbol "treble" ;
pset:value 0.55 ;
] , [
lv2:symbol "trim" ;
pset:value -3.0 ;
] .
tpset:toob-ml-preset-1
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-ml> ;
rdfs:label "Mesa Crunch" ;
lv2:port [
lv2:symbol "bass" ;
pset:value 0.65 ;
] , [
lv2:symbol "gain" ;
pset:value 0.0 ;
] , [
lv2:symbol "master" ;
pset:value 1.5 ;
] , [
lv2:symbol "mid" ;
pset:value 0.5 ;
] , [
lv2:symbol "model" ;
pset:value 17.0 ;
] , [
lv2:symbol "treble" ;
pset:value 0.55 ;
] , [
lv2:symbol "trim" ;
pset:value -3.0 ;
] .
tpset:toob-ml-preset-2
a pset:Preset ;
lv2:appliesTo <http://two-play.com/plugins/toob-ml> ;
rdfs:label "Sparkling Clean" ;
lv2:port [
lv2:symbol "bass" ;
pset:value 0.65 ;
] , [
lv2:symbol "gain" ;
pset:value 0.0 ;
] , [
lv2:symbol "master" ;
pset:value 1.5 ;
] , [
lv2:symbol "mid" ;
pset:value 0.5 ;
] , [
lv2:symbol "model" ;
pset:value 19.0 ;
] , [
lv2:symbol "treble" ;
pset:value 0.55 ;
] , [
lv2:symbol "trim" ;
pset:value -3.0 ;
] .