This file is indexed.

/usr/lib/lv2/midigen.lv2/midigen.ttl is in x42-plugins 20170428-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
@prefix atom:  <http://lv2plug.in/ns/ext/atom#> .
@prefix doap:  <http://usefulinc.com/ns/doap#> .
@prefix foaf:  <http://xmlns.com/foaf/0.1/> .
@prefix lv2:   <http://lv2plug.in/ns/lv2core#> .
@prefix midi:  <http://lv2plug.in/ns/ext/midi#> .
@prefix mod:   <http://moddevices.com/ns/mod#> .
@prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs:  <http://www.w3.org/2000/01/rdf-schema#> .
@prefix units: <http://lv2plug.in/ns/extensions/units#> .
@prefix urid:  <http://lv2plug.in/ns/ext/urid#> .

<http://gareus.org/rgareus#me>
	a foaf:Person;
	foaf:name "Robin Gareus";
	foaf:mbox <mailto:robin@gareus.org>;
	foaf:homepage <http://gareus.org/> .

<http://gareus.org/oss/lv2/midigen>
	a lv2:Plugin, doap:Project, lv2:UtilityPlugin;
	doap:license <http://usefulinc.com/doap/licenses/gpl>;
	doap:maintainer <http://gareus.org/rgareus#me>;
	doap:name "MIDI Generator";
	lv2:microVersion 0 ;lv2:minorVersion 516 ;
	lv2:optionalFeature lv2:hardRTCapable;
	lv2:requiredFeature urid:map;
	
	
	lv2:port [
		a atom:AtomPort, lv2:OutputPort;
		atom:bufferType atom:Sequence;
		atom:supports midi:MidiEvent;
		lv2:index 0;
		lv2:symbol "midiout";
		lv2:name "MIDI Out";
	] , [
		a lv2:InputPort, lv2:ControlPort;
		lv2:index 1;
		lv2:symbol "sequence";
		lv2:name "Select Sequence";
		lv2:minimum 0;
		lv2:default 0;
		lv2:maximum 7;
		lv2:portProperty lv2:integer, lv2:enumeration;
		lv2:scalePoint [ rdf:value 0; rdfs:label "C-4 major (chan 1)"; ];
		lv2:scalePoint [ rdf:value 1; rdfs:label "Cj7 chord (iterate channels)"; ];
		lv2:scalePoint [ rdf:value 2; rdfs:label "All note sweep (chan 1)"; ];
		lv2:scalePoint [ rdf:value 3; rdfs:label "Velocity sweep (chan 1)"; ];
		lv2:scalePoint [ rdf:value 4; rdfs:label "Sustain Pedal Test"; ];
		lv2:scalePoint [ rdf:value 5; rdfs:label "Rudi"; ];
		lv2:scalePoint [ rdf:value 6; rdfs:label "BWV 846"; ];
		lv2:scalePoint [ rdf:value 7; rdfs:label "The Cat"; ];
	] , [
		a lv2:InputPort, lv2:ControlPort;
		lv2:index 2;
		lv2:symbol "bpm";
		lv2:name "BPM";
		lv2:minimum 20.0;
		lv2:default 120.0;
		lv2:maximum 360.0;
	] , [
		a lv2:OutputPort, lv2:ControlPort;
		lv2:index 3;
		lv2:symbol "progress";
		lv2:name "Progress";
		lv2:minimum 0.0;
		lv2:maximum 100.0;
		units:unit units:pc ;
	];
	rdfs:comment "A MIDI generator that plays fixed, predefined sequences.";
	.