Skip to content

Commit c397db1

Browse files
author
falkTX
committed
Add AVL Drumkits
1 parent f6b2300 commit c397db1

File tree

19 files changed

+636
-0
lines changed

19 files changed

+636
-0
lines changed
Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
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_AVL_Drumkits_Perc>
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+
a lv2:InputPort, lv2:ControlPort ;
42+
lv2:index 4 ;
43+
lv2:symbol "program" ;
44+
lv2:name "Program" ;
45+
lv2:portProperty lv2:enumeration , lv2:integer ;
46+
lv2:default 0 ;
47+
lv2:minimum 0 ;
48+
lv2:maximum 1 ;
49+
lv2:scalePoint [
50+
rdfs:label "Drumkits Percussion" ;
51+
rdf:value 0 ;
52+
] ;
53+
] ;
54+
55+
mod:brand "AV Linux" ;
56+
mod:label "Drumkits Perc." ;
57+
58+
doap:name "Drumkits Percussion" ;
59+
doap:license "LGPL" ;
60+
61+
doap:maintainer [
62+
foaf:name "falkTX" ;
63+
foaf:homepage <https://github.com/falkTX/FluidPlug> ;
64+
] ;
65+
66+
rdfs:comment """This plugin contains the 'Drumkits Percussion' section of the AVL Drumkits series.
67+
These 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,
68+
unlike many General MIDI kits that sound sterile.
69+
AVL 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.""" ;
70+
71+
lv2:minorVersion 2 ;
72+
lv2:microVersion 0 .

AVL_Drumkits_Perc.lv2/License.pdf

307 KB
Binary file not shown.

AVL_Drumkits_Perc.lv2/manifest.ttl

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
2+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
3+
4+
<http://kxstudio.linuxaudio.org/plugins/FluidPlug_AVL_Drumkits_Perc>
5+
a lv2:Plugin ;
6+
lv2:binary <FluidPlug.so> ;
7+
rdfs:seeAlso <FluidPlug.ttl> .

Black_Pearl_4A.lv2/FluidPlug.ttl

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
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_4A>
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+
a lv2:InputPort, lv2:ControlPort ;
42+
lv2:index 4 ;
43+
lv2:symbol "program" ;
44+
lv2:name "Program" ;
45+
lv2:portProperty lv2:enumeration , lv2:integer ;
46+
lv2:default 0 ;
47+
lv2:minimum 0 ;
48+
lv2:maximum 1 ;
49+
lv2:scalePoint [
50+
rdfs:label "Black Pearl 4" ;
51+
rdf:value 0 ;
52+
] ;
53+
] ;
54+
55+
mod:brand "AV Linux" ;
56+
mod:label "Black Pearl 4A" ;
57+
58+
doap:name "Black Pearl 4A" ;
59+
doap:license "LGPL" ;
60+
61+
doap:maintainer [
62+
foaf:name "falkTX" ;
63+
foaf:homepage <https://github.com/falkTX/FluidPlug> ;
64+
] ;
65+
66+
rdfs:comment """This plugin contains the 'Drumkits Percussion' section of the AVL Drumkits series.
67+
These 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,
68+
unlike many General MIDI kits that sound sterile.
69+
AVL 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.""" ;
70+
71+
lv2:minorVersion 2 ;
72+
lv2:microVersion 0 .

Black_Pearl_4A.lv2/License.pdf

307 KB
Binary file not shown.

Black_Pearl_4A.lv2/manifest.ttl

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
2+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
3+
4+
<http://kxstudio.linuxaudio.org/plugins/FluidPlug_Black_Pearl_4A>
5+
a lv2:Plugin ;
6+
lv2:binary <FluidPlug.so> ;
7+
rdfs:seeAlso <FluidPlug.ttl> .

Black_Pearl_4B.lv2/FluidPlug.ttl

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
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+
a lv2:InputPort, lv2:ControlPort ;
42+
lv2:index 4 ;
43+
lv2:symbol "program" ;
44+
lv2:name "Program" ;
45+
lv2:portProperty lv2:enumeration , lv2:integer ;
46+
lv2:default 0 ;
47+
lv2:minimum 0 ;
48+
lv2:maximum 1 ;
49+
lv2:scalePoint [
50+
rdfs:label "Black Pearl 4 Alt" ;
51+
rdf:value 0 ;
52+
] ;
53+
] ;
54+
55+
mod:brand "AV Linux" ;
56+
mod:label "Black Pearl 4B" ;
57+
58+
doap:name "Black Pearl 4B" ;
59+
doap:license "LGPL" ;
60+
61+
doap:maintainer [
62+
foaf:name "falkTX" ;
63+
foaf:homepage <https://github.com/falkTX/FluidPlug> ;
64+
] ;
65+
66+
rdfs:comment """This plugin contains the 'Drumkits Percussion' section of the AVL Drumkits series.
67+
These 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,
68+
unlike many General MIDI kits that sound sterile.
69+
AVL 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.""" ;
70+
71+
lv2:minorVersion 2 ;
72+
lv2:microVersion 0 .

Black_Pearl_4B.lv2/License.pdf

307 KB
Binary file not shown.

Black_Pearl_4B.lv2/manifest.ttl

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
2+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
3+
4+
<http://kxstudio.linuxaudio.org/plugins/FluidPlug_Black_Pearl_4B>
5+
a lv2:Plugin ;
6+
lv2:binary <FluidPlug.so> ;
7+
rdfs:seeAlso <FluidPlug.ttl> .

Black_Pearl_5.lv2/FluidPlug.ttl

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
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_5>
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+
a lv2:InputPort, lv2:ControlPort ;
42+
lv2:index 4 ;
43+
lv2:symbol "program" ;
44+
lv2:name "Program" ;
45+
lv2:portProperty lv2:enumeration , lv2:integer ;
46+
lv2:default 0 ;
47+
lv2:minimum 0 ;
48+
lv2:maximum 1 ;
49+
lv2:scalePoint [
50+
rdfs:label "Black Pearl 5" ;
51+
rdf:value 0 ;
52+
] ;
53+
] ;
54+
55+
mod:brand "AV Linux" ;
56+
mod:label "Black Pearl 5" ;
57+
58+
doap:name "Black Pearl 5" ;
59+
doap:license "LGPL" ;
60+
61+
doap:maintainer [
62+
foaf:name "falkTX" ;
63+
foaf:homepage <https://github.com/falkTX/FluidPlug> ;
64+
] ;
65+
66+
rdfs:comment """This plugin contains the 'Drumkits Percussion' section of the AVL Drumkits series.
67+
These 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,
68+
unlike many General MIDI kits that sound sterile.
69+
AVL 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.""" ;
70+
71+
lv2:minorVersion 2 ;
72+
lv2:microVersion 0 .

0 commit comments

Comments
 (0)