/usr/lib/lv2/ZamPhono.lv2/ZamPhono_dsp.ttl is in zam-plugins 3.9~repack3-1.
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 | @prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rsz: <http://lv2plug.in/ns/ext/resize-port#> .
@prefix ui: <http://lv2plug.in/ns/extensions/ui#> .
@prefix unit: <http://lv2plug.in/ns/extensions/units#> .
<urn:zamaudio:ZamPhono>
a lv2:Plugin ;
lv2:extensionData <http://lv2plug.in/ns/ext/state#interface> ,
<http://kxstudio.sf.net/ns/lv2ext/programs#Interface> ;
lv2:optionalFeature <http://lv2plug.in/ns/lv2core#hardRTCapable> ,
<http://lv2plug.in/ns/ext/buf-size#boundedBlockLength> ;
lv2:requiredFeature <http://lv2plug.in/ns/ext/options#options> ,
<http://lv2plug.in/ns/ext/urid#map> ;
ui:ui <urn:zamaudio:ZamPhono#UI> ;
lv2:port [
a lv2:InputPort, lv2:AudioPort ;
lv2:index 0 ;
lv2:symbol "lv2_audio_in_1" ;
lv2:name "Audio Input 1" ;
] ;
lv2:port [
a lv2:OutputPort, lv2:AudioPort ;
lv2:index 1 ;
lv2:symbol "lv2_audio_out_1" ;
lv2:name "Audio Output 1" ;
] ;
lv2:port [
a lv2:InputPort, lv2:ControlPort ;
lv2:index 2 ;
lv2:name "Reproduction/Production" ;
lv2:symbol "inv" ;
lv2:default 0.000000 ;
lv2:minimum 0.000000 ;
lv2:maximum 1.000000 ;
unit:unit [
rdfs:label " " ;
unit:symbol " " ;
unit:render "%f " ;
] ;
lv2:portProperty lv2:toggled ;
] ,
[
a lv2:InputPort, lv2:ControlPort ;
lv2:index 3 ;
lv2:name "Phono Filter Type" ;
lv2:symbol "type" ;
lv2:default 3 ;
lv2:minimum 0 ;
lv2:maximum 4 ;
unit:unit [
rdfs:label " " ;
unit:symbol " " ;
unit:render "%f " ;
] ;
lv2:portProperty lv2:integer ;
] ;
doap:name "ZamPhono" ;
doap:license "GPL v2+" ;
doap:maintainer [
foaf:name "Damien Zammit" ;
] ;
lv2:microVersion 9 ;
lv2:minorVersion 2 .
|