PREFIX atom:    <http://lv2plug.in/ns/ext/atom#>
PREFIX aufx:    <https://w3id.org/aufx/ontology/1.0#>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX doap:    <http://usefulinc.com/ns/doap#>
PREFIX foaf:    <http://xmlns.com/foaf/0.1/>
PREFIX lv2:     <http://lv2plug.in/ns/lv2core#>
PREFIX midi:    <http://lv2plug.in/ns/ext/midi#>
PREFIX mo:      <http://purl.org/ontology/mo/>
PREFIX owl:     <http://www.w3.org/2002/07/owl#>
PREFIX prov:    <http://www.w3.org/ns/prov#>
PREFIX pu:      <http://purl.org/stuff/plugin-universe/>
PREFIX rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs:    <http://www.w3.org/2000/01/rdf-schema#>
PREFIX schema:  <https://schema.org/>
PREFIX sh:      <http://www.w3.org/ns/shacl#>
PREFIX skos:    <http://www.w3.org/2004/02/skos/core#>
PREFIX spdx:    <http://spdx.org/rdf/terms#>
PREFIX studio:  <http://purl.org/ontology/studio/main/>
PREFIX time:    <http://lv2plug.in/ns/ext/time#>
PREFIX trn:     <http://purl.org/stuff/transmissions/>
PREFIX ui:      <http://lv2plug.in/ns/extensions/ui#>
PREFIX units:   <http://lv2plug.in/ns/extensions/units#>
PREFIX void:    <http://rdfs.org/ns/void#>
PREFIX xsd:     <http://www.w3.org/2001/XMLSchema#>

<http://purl.org/stuff/plugin-universe/plugin/nymph-tilt-filter-6964d2f8>
        rdf:type         trn:PluginProfile , doap:Project , lv2:FilterPlugin;
        rdfs:comment     "\nA tilt EQ audio filter.\n";
        rdfs:label       "nymph tilt filter";
        rdfs:seeAlso     <https://github.com/SpotlightKid/nymph>;
        lv2:port         [ rdf:type          lv2:InputPort , lv2:ControlPort;
                           lv2:default       0;
                           lv2:maximum       2;
                           lv2:minimum       0;
                           lv2:name          "Filter mode";
                           lv2:portProperty  lv2:integer;
                           lv2:scalePoint    [ rdf:value   2;
                                               rdfs:label  "Bandpass"
                                             ];
                           lv2:scalePoint    [ rdf:value   1;
                                               rdfs:label  "Highpass"
                                             ];
                           lv2:scalePoint    [ rdf:value   0;
                                               rdfs:label  "Lowpass"
                                             ];
                           lv2:symbol        "mode"
                         ];
        lv2:port         [ rdf:type     lv2:InputPort , lv2:ControlPort;
                           lv2:default  1;
                           lv2:maximum  1;
                           lv2:minimum  0;
                           lv2:name     "Steepness";
                           lv2:symbol   "steepness"
                         ];
        lv2:port         [ rdf:type      lv2:InputPort , lv2:ControlPort;
                           units:unit    units:hz;
                           lv2:default   10000;
                           lv2:maximum   20000;
                           lv2:minimum   20;
                           lv2:name      "Cutoff";
                           lv2:symbol    "cutoff";
                           pu:unitLabel  "hz"
                         ];
        dcterms:created  "2026-09-10T12:45:50.435Z"^^xsd:dateTime;
        dcterms:license  "https://spdx.org/licenses/MIT";
        pu:category      <http://purl.org/stuff/plugin-universe/category/effect> , <http://purl.org/stuff/plugin-universe/category/filter>;
        pu:licenceId     "MIT";
        pu:tag           "nim-lang" , "faust-dsp" , "lv2-plugins" , "lv2";
        trn:accepts      trn:Audio;
        trn:format       trn:LV2;
        trn:produces     trn:Audio;
        trn:role         trn:AudioEffect;
        trn:vendor       "Christopher Arndt";
        owl:sameAs       <urn:nymph:examples:tiltfilter>;
        foaf:homepage    <https://gitlab.com/SpotlightKid/nymph> .

<http://purl.org/stuff/plugin-universe/plugin/nymph-multi-mode-filter-b1ffd629>
        rdf:type         trn:PluginProfile , doap:Project , lv2:FilterPlugin;
        rdfs:comment     "\nA multi-mode (LPF/HPF/BPF/Notch) audio filter.\n";
        rdfs:label       "nymph multi-mode filter";
        rdfs:seeAlso     <https://github.com/SpotlightKid/nymph>;
        lv2:port         [ rdf:type          lv2:InputPort , lv2:ControlPort;
                           lv2:default       0;
                           lv2:maximum       3;
                           lv2:minimum       0;
                           lv2:name          "Filter mode";
                           lv2:portProperty  lv2:integer;
                           lv2:scalePoint    [ rdf:value   3;
                                               rdfs:label  "Bandreject"
                                             ];
                           lv2:scalePoint    [ rdf:value   2;
                                               rdfs:label  "Bandpass"
                                             ];
                           lv2:scalePoint    [ rdf:value   1;
                                               rdfs:label  "Highpass"
                                             ];
                           lv2:scalePoint    [ rdf:value   0;
                                               rdfs:label  "Lowpass"
                                             ];
                           lv2:symbol        "mode"
                         ];
        lv2:port         [ rdf:type     lv2:InputPort , lv2:ControlPort;
                           lv2:default  0.8;
                           lv2:maximum  10;
                           lv2:minimum  0.8;
                           lv2:name     "Q";
                           lv2:symbol   "q"
                         ];
        lv2:port         [ rdf:type      lv2:InputPort , lv2:ControlPort;
                           units:unit    units:hz;
                           lv2:default   7000;
                           lv2:maximum   7000;
                           lv2:minimum   16;
                           lv2:name      "Cutoff";
                           lv2:symbol    "cutoff";
                           pu:unitLabel  "hz"
                         ];
        dcterms:created  "2026-09-10T12:45:50.435Z"^^xsd:dateTime;
        dcterms:license  "https://spdx.org/licenses/MIT";
        pu:category      <http://purl.org/stuff/plugin-universe/category/effect> , <http://purl.org/stuff/plugin-universe/category/filter>;
        pu:licenceId     "MIT";
        pu:tag           "nim-lang" , "faust-dsp" , "lv2-plugins" , "lv2";
        trn:accepts      trn:Audio;
        trn:format       trn:LV2;
        trn:produces     trn:Audio;
        trn:role         trn:AudioEffect;
        trn:vendor       "Christopher Arndt";
        owl:sameAs       <urn:nymph:examples:multimodefilter>;
        foaf:homepage    <https://gitlab.com/SpotlightKid/nymph> .

<http://purl.org/stuff/plugin-universe/plugin/nymph-miditranspose-e3e32d4e>
        rdf:type         trn:PluginProfile , doap:Project , lv2:MIDIPlugin;
        rdfs:comment     "A simple MIDI transposition LV2 plugin.";
        rdfs:label       "nymph miditranspose";
        rdfs:seeAlso     <https://github.com/SpotlightKid/nymph>;
        lv2:port         [ rdf:type          lv2:InputPort , lv2:ControlPort;
                           units:unit        units:semitone12TET;
                           lv2:default       0;
                           lv2:maximum       12;
                           lv2:minimum       -12;
                           lv2:name          "Transposition";
                           lv2:portProperty  lv2:integer;
                           lv2:symbol        "transposition";
                           pu:unitLabel      "semitone12TET"
                         ];
        dcterms:created  "2026-09-10T12:45:50.435Z"^^xsd:dateTime;
        dcterms:license  "https://spdx.org/licenses/MIT";
        pu:category      <http://purl.org/stuff/plugin-universe/category/midi>;
        pu:licenceId     "MIT";
        pu:tag           "nim-lang" , "faust-dsp" , "lv2-plugins" , "lv2";
        trn:accepts      trn:Midi;
        trn:format       trn:LV2;
        trn:produces     trn:Midi;
        trn:role         trn:MidiProcessor;
        trn:vendor       "Christopher Arndt";
        owl:sameAs       <urn:nymph:examples:miditranspose>;
        foaf:homepage    <https://gitlab.com/SpotlightKid/nymph> .

<http://purl.org/stuff/plugin-universe/plugin/nymph-faust-lpf-16892177>
        rdf:type         trn:PluginProfile , doap:Project , lv2:FilterPlugin;
        rdfs:comment     "\nA 2-pole lowpass filter from the FAUST standard library.\n";
        rdfs:label       "nymph faust LPF";
        rdfs:seeAlso     <https://github.com/SpotlightKid/nymph>;
        lv2:port         [ rdf:type      lv2:InputPort , lv2:ControlPort;
                           units:unit    units:hz;
                           lv2:default   15000;
                           lv2:maximum   15000;
                           lv2:minimum   16;
                           lv2:name      "Cutoff";
                           lv2:symbol    "cutoff";
                           pu:unitLabel  "hz"
                         ];
        dcterms:created  "2026-09-10T12:45:50.435Z"^^xsd:dateTime;
        dcterms:license  "https://spdx.org/licenses/MIT";
        pu:category      <http://purl.org/stuff/plugin-universe/category/effect> , <http://purl.org/stuff/plugin-universe/category/filter>;
        pu:licenceId     "MIT";
        pu:tag           "nim-lang" , "faust-dsp" , "lv2-plugins" , "lv2";
        trn:accepts      trn:Audio;
        trn:format       trn:LV2;
        trn:produces     trn:Audio;
        trn:role         trn:AudioEffect;
        trn:vendor       "Christopher Arndt";
        owl:sameAs       <urn:nymph:examples:faustlpf>;
        foaf:homepage    <https://gitlab.com/SpotlightKid/nymph> .

<http://purl.org/stuff/plugin-universe/plugin/nymph-example-amp-a0e0c017>
        rdf:type         trn:PluginProfile , doap:Project , lv2:AmplifierPlugin;
        rdfs:comment     "\nA simple amplifier / attenuator.\n";
        rdfs:label       "nymph example amp";
        rdfs:seeAlso     <https://github.com/SpotlightKid/nymph>;
        lv2:port         [ rdf:type      lv2:InputPort , lv2:ControlPort;
                           units:unit    units:db;
                           lv2:default   0;
                           lv2:maximum   20;
                           lv2:minimum   -90;
                           lv2:name      "Gain";
                           lv2:symbol    "gain";
                           pu:unitLabel  "db"
                         ];
        dcterms:created  "2026-09-10T12:45:50.435Z"^^xsd:dateTime;
        dcterms:license  "https://spdx.org/licenses/MIT";
        pu:licenceId     "MIT";
        pu:tag           "nim-lang" , "faust-dsp" , "lv2" , "lv2-plugins";
        trn:accepts      trn:Audio;
        trn:format       trn:LV2;
        trn:produces     trn:Audio;
        trn:vendor       "Christopher Arndt";
        owl:sameAs       <urn:nymph:examples:amp>;
        foaf:homepage    <https://gitlab.com/SpotlightKid/nymph> .
