/usr/lib/lv2/gxechocat.lv2/gxechocat.ttl is in guitarix 0.28.2-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #
# Copyright (C) 2012 Hermann Meyer, Andreas Degert, Pete Shorthose, Steve Poskitt
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
# --------------------------------------------------------------------------
#
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix guiext: <http://lv2plug.in/ns/extensions/ui#>.
<http://guitarix.sourceforge.net#me>
a foaf:Person ;
foaf:name "Guitarix team" ;
foaf:mbox <mailto:brummer@web.de> ;
rdfs:seeAlso <http://guitarix.sourceforge.net> .
<http://guitarix.sourceforge.net/plugins/gxechocat>
a doap:Project ;
doap:maintainer <http://guitarix.sourceforge.net#me> ;
doap:name "GxEchoCat" .
<http://guitarix.sourceforge.net/plugins/gxechocat#echocat>
a lv2:Plugin ,
lv2:EffectPlugin ;
doap:maintainer <http://guitarix.sourceforge.net#me> ;
doap:name "GxEchoCat";
doap:license <http://opensource.org/licenses/isc> ;
lv2:project <http://guitarix.sourceforge.net/plugins/gxechocat> ;
lv2:optionalFeature lv2:hardRTCapable ;
guiext:ui <http://guitarix.sourceforge.net/plugins/gxechocat#gui>;
lv2:port [
a lv2:InputPort ,
lv2:ControlPort ;
lv2:index 0 ;
lv2:symbol "input_gain" ;
lv2:name "Input Gain";
lv2:default 0.5 ;
lv2:minimum 0.0 ;
lv2:maximum 1.0 ;
] , [
a lv2:InputPort ,
lv2:ControlPort ;
lv2:index 1 ;
lv2:symbol "swell" ;
lv2:name "Swell";
lv2:default 0.0 ;
lv2:minimum 0.0 ;
lv2:maximum 1.0 ;
] , [
a lv2:InputPort ,
lv2:ControlPort ;
lv2:index 2 ;
lv2:symbol "sustain" ;
lv2:name "Sustain";
lv2:default 0.0 ;
lv2:minimum 0.0 ;
lv2:maximum 1.0 ;
] , [
a lv2:InputPort ,
lv2:ControlPort ;
lv2:index 3 ;
lv2:symbol "outputgain" ;
lv2:name "OutputGain";
lv2:default 0.5 ;
lv2:minimum 0.0 ;
lv2:maximum 1.0 ;
] , [
a lv2:InputPort ,
lv2:ControlPort ;
lv2:index 4 ;
lv2:symbol "head1" ;
lv2:name "Head 1";
lv2:portProperty lv2:integer;
lv2:portProperty lv2:enumeration ;
lv2:default 0 ;
lv2:minimum 0 ;
lv2:maximum 1 ;
] , [
a lv2:InputPort ,
lv2:ControlPort ;
lv2:index 5 ;
lv2:symbol "head2" ;
lv2:name "Head 2";
lv2:portProperty lv2:integer;
lv2:portProperty lv2:enumeration ;
lv2:default 0 ;
lv2:minimum 0 ;
lv2:maximum 1 ;
] , [
a lv2:InputPort ,
lv2:ControlPort ;
lv2:index 6 ;
lv2:symbol "head3" ;
lv2:name "Head 3";
lv2:portProperty lv2:integer;
lv2:portProperty lv2:enumeration ;
lv2:default 0 ;
lv2:minimum 0 ;
lv2:maximum 1 ;
] ,[
a lv2:AudioPort ,
lv2:OutputPort ;
lv2:index 7 ;
lv2:symbol "out" ;
lv2:name "Out"
] , [
a lv2:AudioPort ,
lv2:InputPort ;
lv2:index 8 ;
lv2:symbol "in" ;
lv2:name "In"
].
<http://guitarix.sourceforge.net/plugins/gxechocat#gui>
a guiext:GtkUI;
guiext:binary <gxechocat_gui.so>;
guiext:requiredFeature guiext:makeResident .
|