1@prefix atom: <http://lv2plug.in/ns/ext/atom#> .
2@prefix doap: <http://usefulinc.com/ns/doap#> .
3@prefix foaf: <http://xmlns.com/foaf/0.1/> .
4@prefix lv2:  <http://lv2plug.in/ns/lv2core#> .
5@prefix mod:  <http://moddevices.com/ns/mod#> .
6@prefix rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
7@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
8
9<http://kxstudio.linuxaudio.org/plugins/FluidPlug_Black_Pearl_4B>
10    a lv2:InstrumentPlugin, lv2:Plugin ;
11
12    lv2:requiredFeature <http://lv2plug.in/ns/ext/urid#map> ;
13
14    lv2:port [
15        a lv2:InputPort, atom:AtomPort ;
16        atom:bufferType atom:Sequence ;
17        atom:supports <http://lv2plug.in/ns/ext/midi#MidiEvent> ;
18        lv2:designation lv2:control ;
19        lv2:index 0 ;
20        lv2:symbol "events" ;
21        lv2:name "Events" ;
22    ] , [
23        a lv2:OutputPort, lv2:AudioPort ;
24        lv2:index 1 ;
25        lv2:symbol "audio_out_l" ;
26        lv2:name "Audio Output Left" ;
27    ] , [
28        a lv2:OutputPort, lv2:AudioPort ;
29        lv2:index 2 ;
30        lv2:symbol "audio_out_r" ;
31        lv2:name "Audio Output Right" ;
32    ] , [
33        a lv2:InputPort, lv2:ControlPort ;
34        lv2:index 3 ;
35        lv2:symbol "level" ;
36        lv2:name "Level" ;
37        lv2:default 1.0 ;
38        lv2:minimum 0.0 ;
39        lv2:maximum 2.0 ;
40    ] ;
41
42    mod:brand "AV Linux" ;
43    mod:label "Black Pearl 4B" ;
44
45    doap:name "Black Pearl 4B" ;
46    doap:license "LGPL" ;
47
48    doap:maintainer [
49        foaf:name "falkTX" ;
50        foaf:homepage <https://github.com/falkTX/FluidPlug> ;
51    ] ;
52
53    rdfs:comment """This plugin contains the 'Drumkits Percussion' section of the AVL Drumkits series.
54These kits are intended to bring an authentic acoustic, organic drum sound to your arrangements and preserve real-world characteristics such as tom ringing and overtones,
55unlike many General MIDI kits that sound sterile.
56AVL Drumkits feature 5 sample layers per kit piece. The shell samples provide both center and edge hits to emulate right and left hands and the cymbals are quite realistic without truncated samples.""" ;
57
58    lv2:minorVersion 2 ;
59    lv2:microVersion 0 .
60