1#
2# Copyright (C) 2013 Hermann Meyer
3#
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation; either version 2 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program; if not, write to the Free Software
16# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17# --------------------------------------------------------------------------
18#
19
20
21@prefix doap: <http://usefulinc.com/ns/doap#> .
22@prefix foaf: <http://xmlns.com/foaf/0.1/> .
23@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
24@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
25@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
26
27<https://github.com/brummer10#me>
28	a foaf:Person ;
29	foaf:name "hermann" ;
30	foaf:mbox <mailto:brummer@web.de> ;
31	rdfs:seeAlso <https://github.com/brummer10> .
32
33<https://github.com/brummer10/screcord#mono_record>
34    a lv2:Plugin ,
35        lv2:UtilityPlugin ;
36    doap:maintainer <https://github.com/brummer10#me> ;
37    doap:name "MonoRecord";
38    doap:license <http://opensource.org/licenses/isc> ;
39    lv2:project <https://github.com/brummer10/sc_record> ;
40    lv2:optionalFeature lv2:hardRTCapable ;
41
42    lv2:minorVersion 0;
43    lv2:microVersion 1;
44
45    lv2:port [
46        a lv2:InputPort ,
47            lv2:ControlPort ;
48        lv2:index 0 ;
49        lv2:symbol "FORMAT" ;
50        lv2:name "FORMAT";
51        lv2:default 0;
52        lv2:minimum 0 ;
53        lv2:maximum 1 ;
54        lv2:portProperty lv2:integer;
55        lv2:portProperty lv2:enumeration ;
56        lv2:scalePoint [rdfs:label "*.wav"; rdf:value 0];
57        lv2:scalePoint [rdfs:label "*.ogg"; rdf:value 1];
58    ] , [
59        a lv2:InputPort ,
60            lv2:ControlPort ;
61        lv2:index 1 ;
62        lv2:symbol "REC" ;
63        lv2:name "REC";
64        lv2:portProperty lv2:toggled;
65        lv2:portProperty lv2:integer;
66        lv2:default 0.0 ;
67        lv2:minimum 0.0 ;
68        lv2:maximum 1.0 ;
69        rdfs:comment "recorded files goes to ~/home/lv2record/" ,
70        "Aufnahmen gehen nach ~/home/lv2record/ "@de ,
71        "Les fichiers sont enregistrés dans ~/home/lv2record/ "@fr;
72    ] , [
73        a lv2:OutputPort ,
74            lv2:ControlPort ;
75        lv2:index 2 ;
76        lv2:symbol "CLIP" ;
77        lv2:name "CLIP";
78        lv2:portProperty lv2:toggled;
79        lv2:portProperty lv2:integer;
80        lv2:default 0.0 ;
81        lv2:minimum 0.0 ;
82        lv2:maximum 1.0 ;
83    ] , [
84        a lv2:AudioPort ,
85            lv2:OutputPort ;
86        lv2:index 3 ;
87        lv2:symbol "out" ;
88        lv2:name "Out"
89    ] , [
90        a lv2:AudioPort ,
91            lv2:InputPort ;
92        lv2:index 4 ;
93        lv2:symbol "in" ;
94        lv2:name "In" ;
95    ].
96
97<https://github.com/brummer10/screcord#stereo_record>
98    a lv2:Plugin ,
99        lv2:UtilityPlugin ;
100    doap:maintainer <https://github.com/brummer10#me> ;
101    doap:name "StereoRecord";
102    doap:license <http://opensource.org/licenses/isc> ;
103    lv2:project <https://github.com/brummer10/sc_record> ;
104    lv2:optionalFeature lv2:hardRTCapable ;
105
106    lv2:minorVersion 0;
107    lv2:microVersion 1;
108
109    lv2:port [
110        a lv2:InputPort ,
111            lv2:ControlPort ;
112        lv2:index 0 ;
113        lv2:symbol "FORMAT" ;
114        lv2:name "FORMAT";
115        lv2:default 0;
116        lv2:minimum 0 ;
117        lv2:maximum 1 ;
118        lv2:portProperty lv2:integer;
119        lv2:portProperty lv2:enumeration ;
120        lv2:scalePoint [rdfs:label "*.wav"; rdf:value 0];
121        lv2:scalePoint [rdfs:label "*.ogg"; rdf:value 1];
122    ] , [
123        a lv2:InputPort ,
124            lv2:ControlPort ;
125        lv2:index 1 ;
126        lv2:symbol "REC" ;
127        lv2:name "REC";
128        lv2:portProperty lv2:toggled;
129        lv2:portProperty lv2:integer;
130        lv2:default 0.0 ;
131        lv2:minimum 0.0 ;
132        lv2:maximum 1.0 ;
133        rdfs:comment "recorded files goes to ~/home/lv2record/" ,
134        "Aufnahmen gehen nach ~/home/lv2record/ "@de ,
135        "Les fichiers sont enregistrés dans ~/home/lv2record/ "@fr;
136    ] , [
137        a lv2:OutputPort ,
138            lv2:ControlPort ;
139        lv2:index 2 ;
140        lv2:symbol "CLIP" ;
141        lv2:name "CLIP";
142        lv2:portProperty lv2:toggled;
143        lv2:portProperty lv2:integer;
144        lv2:default 0.0 ;
145        lv2:minimum 0.0 ;
146        lv2:maximum 1.0 ;
147    ] , [
148        a lv2:AudioPort ,
149            lv2:OutputPort ;
150        lv2:index 3 ;
151        lv2:symbol "out" ;
152        lv2:name "Out"
153    ] , [
154        a lv2:AudioPort ,
155            lv2:InputPort ;
156        lv2:index 4 ;
157        lv2:symbol "in" ;
158        lv2:name "In" ;
159    ] , [
160        a lv2:AudioPort ,
161            lv2:OutputPort ;
162        lv2:index 5 ;
163        lv2:symbol "out1" ;
164        lv2:name "Out1"
165    ] , [
166        a lv2:AudioPort ,
167            lv2:InputPort ;
168        lv2:index 6 ;
169        lv2:symbol "in1" ;
170        lv2:name "In1" ;
171    ].
172