1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
|
# LV2 Port Groups Extension
# Copyright 2009-2012 David Robillard <d@drobilla.net>
# Copyright 2008-2009 Lars Luthman <lars.luthman@gmail.com>
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
@prefix amb: <http://ambisonics.ch/standards/channels/> .
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pg: <http://lv2plug.in/ns/ext/port-groups#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://lv2plug.in/ns/ext/port-groups>
a lv2:Specification ;
rdfs:seeAlso <../../people/people.ttl> ;
doap:license <http://opensource.org/licenses/isc> ;
doap:name "LV2 Port Groups" ;
doap:shortdesc "Multi-channel groups of LV2 ports." ;
rdfs:comment "Defines semantic groupings of LV2 ports" ;
doap:developer <http://lv2plug.in/ns/people#larsl> ,
<http://drobilla.net/drobilla#me> .
pg:Group
a rdfs:Class ;
rdfs:label "A group of channels or parameters." ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty lv2:symbol ;
owl:someValuesFrom xsd:string ;
owl:cardinality 1 ;
rdfs:comment """
A pg:Group MUST have exactly one string lv2:symbol. This symbol must be
unique according to the same rules as the lv2:symbol for an lv2:Port, where
group symbols and port symbols reside in the same namespace. In other words,
a group on a plugin MUST NOT have the same symbol as another group or a port
on that plugin. This makes it possible to uniquely reference a port or group
on a plugin with a single identifier and no context.
""" ;
] ;
rdfs:comment """
A grouping of ports that can be logically considered a single "stream", e.g.
two audio ports in a group may form a stereo stream. The pg:source predicate
can also be used to describe this correspondence between separate ports/groups.
""" .
pg:Element
a rdfs:Class ;
rdfs:label "Element" ;
rdfs:comment "An ordered element of a group." ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty lv2:index ;
owl:maxCardinality 1 ;
rdfs:comment "An element has at most one lv2:index." ;
] , [
a owl:Restriction ;
owl:onProperty lv2:designation ;
owl:cardinality 1 ;
rdfs:comment "An element MUST have exactly one lv2:designation." ;
] ;
rdfs:comment """
An element of a group, which has a designation and an optional index.
""" .
pg:element
a rdf:Property ;
rdfs:domain pg:Group ;
rdfs:range pg:Element ;
rdfs:label "element" ;
rdfs:comment """
Indicates that a group has a certain element (a parameter or channel
designation with a possible index).
""" .
pg:sideChainOf
a rdf:Property ;
rdfs:label "Side-chain of" ;
rdfs:comment """
Indicates that this port or group should be considered a "side chain" of
some other port or group. The precise definition of "side chain" depends
on the plugin, but in general this group should be considered a modifier to
some other group, rather than an independent input itself.
""" .
pg:subGroupOf
a rdf:Property ;
rdfs:domain pg:Group ;
rdfs:range pg:Group ;
rdfs:label "Sub-group of" ;
rdfs:comment """
Indicates that this group is a child of another group. This property has no
meaning with respect to plugin execution, but the host may find this
information useful (e.g. to provide a compact user interface). Note that being
a sub-group does not relax the restriction that the group MUST have a unique
symbol.
""" .
pg:source
a rdf:Property ;
rdfs:label "Source" ;
rdfs:comment """
Indicates that this port or group should be considered the "result" of
some other port or group. This property only makes sense on groups with
outputs when the source is a group with inputs. This can be used to convey
a relationship between corresponding input and output groups with different
types, e.g. a mono->stereo plugin.
""" .
pg:mainGroup
a rdf:Property ;
rdfs:domain lv2:Plugin ;
rdfs:range pg:Group ;
rdfs:label "Main port group" ;
rdfs:comment """
Indicates that this group should be considered the "main" inputs/outputs of
the plugin, e.g. it probably makes sense to just connect main groups and set
some controls. A plugin MUST NOT have more than one pg:mainGroup property.
High-level hosts that simply want to insert an plugin in a given stream
should use this property to determine where the plugin 'fits'.
""" .
pg:inGroup
a rdf:Property ;
rdfs:domain lv2:Port ;
rdfs:range pg:Group ;
rdfs:label "In port group" ;
rdfs:comment """
Indicates that this port is a part of a group of ports on the plugin.
""" .
pg:DiscreteGroup
a rdfs:Class ;
rdfs:subClassOf pg:Group ;
rdfs:comment """
"Discrete" channel configurations. These groups are divided into channels
where each represents a particular speaker location. The position of sound
in one of these groups depends on a particular speaker configuration.
""" .
pg:left
a lv2:Channel ;
rdfs:label "Left" .
pg:right
a lv2:Channel ;
rdfs:label "Right" .
pg:center
a lv2:Channel ;
rdfs:label "Center" .
pg:side
a lv2:Channel ;
rdfs:label "Side" .
pg:centerLeft
a lv2:Channel ;
rdfs:label "Center Left" .
pg:centerRight
a lv2:Channel ;
rdfs:label "Center Right" .
pg:sideLeft
a lv2:Channel ;
rdfs:label "Side Left" .
pg:sideRight
a lv2:Channel ;
rdfs:label "Side Right" .
pg:rearLeft
a lv2:Channel ;
rdfs:label "Rear Left" .
pg:rearRight
a lv2:Channel ;
rdfs:label "Rear Right" .
pg:rearCenter
a lv2:Channel ;
rdfs:label "Rear Center" .
pg:lowFrequencyEffects
a lv2:Channel ;
rdfs:label "Low-Frequency Effects (LFE)" .
pg:MonoGroup
a rdfs:Class ;
rdfs:subClassOf pg:DiscreteGroup ;
rdfs:label "Mono" ;
pg:element [
lv2:index 0 ;
lv2:designation pg:center ;
] .
pg:StereoGroup
a rdfs:Class ;
rdfs:subClassOf pg:DiscreteGroup ;
rdfs:label "Stereo" ;
pg:element [
lv2:index 0 ;
lv2:designation pg:left ;
] , [
lv2:index 1 ;
lv2:designation pg:right ;
] .
pg:MidSideGroup
a rdfs:Class ;
rdfs:subClassOf pg:DiscreteGroup ;
rdfs:label "Mid-Side Stereo" ;
pg:element [
lv2:index 0 ;
lv2:designation pg:center ;
] , [
lv2:index 1 ;
lv2:designation pg:side ;
] .
pg:ThreePointZeroGroup
a rdfs:Class ;
rdfs:subClassOf pg:DiscreteGroup ;
rdfs:label "3.0 Surround" ;
pg:element [
lv2:index 0 ;
lv2:designation pg:left ;
] , [
lv2:index 1 ;
lv2:designation pg:right ;
] , [
lv2:index 2 ;
lv2:designation pg:rearCenter ;
] .
pg:FourPointZeroGroup
a rdfs:Class ;
rdfs:subClassOf pg:DiscreteGroup ;
rdfs:label "4.0 Surround (Quadraphonic)" ;
pg:element [
lv2:index 0 ;
lv2:designation pg:left ;
] , [
lv2:index 1 ;
lv2:designation pg:center ;
] , [
lv2:index 2 ;
lv2:designation pg:right ;
] , [
lv2:index 3 ;
lv2:designation pg:rearCenter ;
] .
pg:FivePointZeroGroup
a rdfs:Class ;
rdfs:subClassOf pg:DiscreteGroup ;
rdfs:label "5.0 Surround (3-2 stereo)" ;
pg:element [
lv2:index 0 ;
lv2:designation pg:left ;
] , [
lv2:index 1 ;
lv2:designation pg:center ;
] , [
lv2:index 2 ;
lv2:designation pg:right ;
] , [
lv2:index 3 ;
lv2:designation pg:rearLeft ;
] , [
lv2:index 4 ;
lv2:designation pg:rearRight ;
] .
pg:FivePointOneGroup
a rdfs:Class ;
rdfs:subClassOf pg:DiscreteGroup ;
rdfs:label "5.1 Surround (3-2 stereo)" ;
pg:element [
lv2:index 0 ;
lv2:designation pg:left ;
] , [
lv2:index 1 ;
lv2:designation pg:center ;
] , [
lv2:index 2 ;
lv2:designation pg:right ;
] , [
lv2:index 3 ;
lv2:designation pg:rearLeft ;
] , [
lv2:index 4 ;
lv2:designation pg:rearRight ;
] , [
lv2:index 5 ;
lv2:designation pg:lowFrequencyEffects ;
] .
pg:SixPointOneGroup
a rdfs:Class ;
rdfs:subClassOf pg:DiscreteGroup ;
rdfs:label "6.1 Surround" ;
pg:element [
lv2:index 0 ;
lv2:designation pg:left ;
] , [
lv2:index 1 ;
lv2:designation pg:center ;
] , [
lv2:index 2 ;
lv2:designation pg:right ;
] , [
lv2:index 3 ;
lv2:designation pg:sideLeft ;
] , [
lv2:index 4 ;
lv2:designation pg:sideRight ;
] , [
lv2:index 5 ;
lv2:designation pg:rearCenter ;
] , [
lv2:index 6 ;
lv2:designation pg:lowFrequencyEffects ;
] .
pg:SevenPointOneGroup
a rdfs:Class ;
rdfs:subClassOf pg:DiscreteGroup ;
rdfs:label "7.1 Surround" ;
pg:element [
lv2:index 0 ;
lv2:designation pg:left ;
] , [
lv2:index 1 ;
lv2:designation pg:center ;
] , [
lv2:index 2 ;
lv2:designation pg:right ;
] , [
lv2:index 3 ;
lv2:designation pg:sideLeft ;
] , [
lv2:index 4 ;
lv2:designation pg:sideRight ;
] , [
lv2:index 5 ;
lv2:designation pg:rearLeft ;
] , [
lv2:index 6 ;
lv2:designation pg:rearRight ;
] , [
lv2:index 7 ;
lv2:designation pg:lowFrequencyEffects ;
] .
pg:SevenPointOneWideGroup
a rdfs:Class ;
rdfs:subClassOf pg:DiscreteGroup ;
rdfs:label "7.1 Surround (Wide)" ;
pg:element [
lv2:index 0 ;
lv2:designation pg:left ;
] , [
lv2:index 1 ;
lv2:designation pg:centerLeft ;
] , [
lv2:index 2 ;
lv2:designation pg:center ;
] , [
lv2:index 3 ;
lv2:designation pg:centerRight ;
] , [
lv2:index 4 ;
lv2:designation pg:right ;
] , [
lv2:index 5 ;
lv2:designation pg:rearLeft ;
] , [
lv2:index 6 ;
lv2:designation pg:rearRight ;
] , [
lv2:index 7 ;
lv2:designation pg:lowFrequencyEffects ;
] .
pg:AmbisonicGroup
a rdfs:Class ;
rdfs:subClassOf pg:Group ;
rdfs:comment """
"Ambisonic" channel configurations. These groups are divided into channels
which together represent a position in an abstract n-dimensional space.
The position of sound in one of these groups does not depend on a particular
speaker configuration; a decoder can be used to convert an ambisonic stream
for any speaker configuration.
""" .
pg:AmbisonicBH1P0Group
a rdfs:Class ;
rdfs:subClassOf pg:AmbisonicGroup ;
rdfs:label "Ambisonic B stream of horizontal order 1 and peripheral order 0." ;
pg:element [
lv2:index 0 ;
lv2:designation amb:ACN0 ;
] , [
lv2:index 1 ;
lv2:designation amb:ACN1 ;
] , [
lv2:index 2 ;
lv2:designation amb:ACN3 ;
] .
pg:AmbisonicBH1P1Group
a rdfs:Class ;
rdfs:subClassOf pg:AmbisonicGroup ;
rdfs:label "Ambisonic B stream of horizontal order 1 and peripheral order 1." ;
pg:element [
lv2:index 0 ;
lv2:designation amb:ACN0 ;
] , [
lv2:index 1 ;
lv2:designation amb:ACN1 ;
] , [
lv2:index 2 ;
lv2:designation amb:ACN2 ;
] , [
lv2:index 3 ;
lv2:designation amb:ACN3 ;
] .
pg:AmbisonicBH2P0Group
a rdfs:Class ;
rdfs:subClassOf pg:AmbisonicGroup ;
rdfs:label "Ambisonic B stream of horizontal order 2 and peripheral order 0." ;
pg:element [
lv2:index 0 ;
lv2:designation amb:ACN0 ;
] , [
lv2:index 1 ;
lv2:designation amb:ACN1 ;
] , [
lv2:index 2 ;
lv2:designation amb:ACN3 ;
] , [
lv2:index 3 ;
lv2:designation amb:ACN4 ;
] , [
lv2:index 4 ;
lv2:designation amb:ACN8 ;
] .
pg:AmbisonicBH2P1Group
a rdfs:Class ;
rdfs:subClassOf pg:AmbisonicGroup ;
rdfs:label "Ambisonic B stream of horizontal order 2 and peripheral order 1." ;
pg:element [
lv2:index 0 ;
lv2:designation amb:ACN0 ;
] , [
lv2:index 1 ;
lv2:designation amb:ACN1 ;
] , [
lv2:index 2 ;
lv2:designation amb:ACN2 ;
] , [
lv2:index 3 ;
lv2:designation amb:ACN3 ;
] , [
lv2:index 4 ;
lv2:designation amb:ACN4 ;
] , [
lv2:index 5 ;
lv2:designation amb:ACN8 ;
] .
pg:AmbisonicBH2P2Group
a rdfs:Class ;
rdfs:subClassOf pg:AmbisonicGroup ;
rdfs:label "Ambisonic B stream of horizontal order 2 and peripheral order 2." ;
pg:element [
lv2:index 0 ;
lv2:designation amb:ACN0 ;
] , [
lv2:index 1 ;
lv2:designation amb:ACN1 ;
] , [
lv2:index 2 ;
lv2:designation amb:ACN2 ;
] , [
lv2:index 3 ;
lv2:designation amb:ACN3 ;
] , [
lv2:index 4 ;
lv2:designation amb:ACN4 ;
] , [
lv2:index 5 ;
lv2:designation amb:ACN5 ;
] , [
lv2:index 6 ;
lv2:designation amb:ACN6 ;
] , [
lv2:index 7 ;
lv2:designation amb:ACN7 ;
] , [
lv2:index 8 ;
lv2:designation amb:ACN8 ;
] .
pg:AmbisonicBH3P0Group
a rdfs:Class ;
rdfs:subClassOf pg:AmbisonicGroup ;
rdfs:label "Ambisonic B stream of horizontal order 3 and peripheral order 0." ;
pg:element [
lv2:index 0 ;
lv2:designation amb:ACN0 ;
] , [
lv2:index 1 ;
lv2:designation amb:ACN1 ;
] , [
lv2:index 2 ;
lv2:designation amb:ACN3 ;
] , [
lv2:index 3 ;
lv2:designation amb:ACN4 ;
] , [
lv2:index 4 ;
lv2:designation amb:ACN8 ;
] , [
lv2:index 5 ;
lv2:designation amb:ACN9 ;
] , [
lv2:index 6 ;
lv2:designation amb:ACN15 ;
] .
pg:AmbisonicBH3P1Group
a rdfs:Class ;
rdfs:subClassOf pg:AmbisonicGroup ;
rdfs:label "Ambisonic B stream of horizontal order 3 and peripheral order 1." ;
pg:element [
lv2:index 0 ;
lv2:designation amb:ACN0 ;
] , [
lv2:index 1 ;
lv2:designation amb:ACN1 ;
] , [
lv2:index 2 ;
lv2:designation amb:ACN2 ;
] , [
lv2:index 3 ;
lv2:designation amb:ACN3 ;
] , [
lv2:index 4 ;
lv2:designation amb:ACN4 ;
] , [
lv2:index 5 ;
lv2:designation amb:ACN8 ;
] , [
lv2:index 6 ;
lv2:designation amb:ACN9 ;
] , [
lv2:index 7 ;
lv2:designation amb:ACN15 ;
] .
pg:AmbisonicBH3P2Group
a rdfs:Class ;
rdfs:subClassOf pg:AmbisonicGroup ;
rdfs:label "Ambisonic B stream of horizontal order 3 and peripheral order 2." ;
pg:element [
lv2:index 0 ;
lv2:designation amb:ACN0 ;
] , [
lv2:index 1 ;
lv2:designation amb:ACN1 ;
] , [
lv2:index 2 ;
lv2:designation amb:ACN2 ;
] , [
lv2:index 3 ;
lv2:designation amb:ACN3 ;
] , [
lv2:index 4 ;
lv2:designation amb:ACN4 ;
] , [
lv2:index 5 ;
lv2:designation amb:ACN5 ;
] , [
lv2:index 6 ;
lv2:designation amb:ACN6 ;
] , [
lv2:index 7 ;
lv2:designation amb:ACN7 ;
] , [
lv2:index 8 ;
lv2:designation amb:ACN8 ;
] , [
lv2:index 9 ;
lv2:designation amb:ACN9 ;
] , [
lv2:index 10 ;
lv2:designation amb:ACN15 ;
] .
pg:AmbisonicBH3P3Group
a rdfs:Class ;
rdfs:subClassOf pg:AmbisonicGroup ;
rdfs:label "Ambisonic B stream of horizontal order 3 and peripheral order 3." ;
pg:element [
lv2:index 0 ;
lv2:designation amb:ACN0 ;
] , [
lv2:index 1 ;
lv2:designation amb:ACN1 ;
] , [
lv2:index 2 ;
lv2:designation amb:ACN2 ;
] , [
lv2:index 3 ;
lv2:designation amb:ACN3 ;
] , [
lv2:index 4 ;
lv2:designation amb:ACN4 ;
] , [
lv2:index 5 ;
lv2:designation amb:ACN5 ;
] , [
lv2:index 6 ;
lv2:designation amb:ACN6 ;
] , [
lv2:index 7 ;
lv2:designation amb:ACN7 ;
] , [
lv2:index 8 ;
lv2:designation amb:ACN8 ;
] , [
lv2:index 9 ;
lv2:designation amb:ACN9 ;
] , [
lv2:index 10 ;
lv2:designation amb:ACN10 ;
] , [
lv2:index 11 ;
lv2:designation amb:ACN11 ;
] , [
lv2:index 12 ;
lv2:designation amb:ACN12 ;
] , [
lv2:index 13 ;
lv2:designation amb:ACN13 ;
] , [
lv2:index 14 ;
lv2:designation amb:ACN14 ;
] , [
lv2:index 15 ;
lv2:designation amb:ACN15 ;
] .
|