/[svn]/linuxsampler/trunk/src/hostplugins/lv2/linuxsampler.ttl
ViewVC logotype

Contents of /linuxsampler/trunk/src/hostplugins/lv2/linuxsampler.ttl

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1777 - (show annotations) (download)
Mon Sep 15 16:58:10 2008 UTC (15 years, 7 months ago) by persson
File size: 933 byte(s)
* added experimental support for running LinuxSampler as a DSSI, LV2
  and VST plugin

1 @prefix lv2: <http://lv2plug.in/ns/lv2core#> .
2 @prefix doap: <http://usefulinc.com/ns/doap#> .
3 @prefix ev: <http://lv2plug.in/ns/ext/event#> .
4 @prefix guiext: <http://lv2plug.in/ns/extensions/ui#> .
5
6 <http://linuxsampler.org/plugins/linuxsampler>
7 a lv2:InstrumentPlugin ;
8 doap:name "LinuxSampler" ;
9 doap:license <http://linuxsampler.org/downloads.html#exception> ;
10 lv2:optionalFeature lv2:hardRtCapable ;
11 lv2:optionalFeature <http://ll-plugins.nongnu.org/lv2/ext/saverestore> ;
12 lv2:port [
13 a lv2:AudioPort , lv2:OutputPort ;
14 lv2:index 0 ;
15 lv2:symbol "out_left" ;
16 lv2:name "Output Left"
17 ] , [
18 a lv2:AudioPort , lv2:OutputPort ;
19 lv2:index 1 ;
20 lv2:symbol "out_right" ;
21 lv2:name "Output Right"
22 ] , [
23 a ev:EventPort , lv2:InputPort ;
24 lv2:index 2 ;
25 ev:supportsEvent <http://lv2plug.in/ns/ext/midi#MidiEvent> ;
26 lv2:symbol "midi" ;
27 lv2:name "MIDI Input"
28 ] .

  ViewVC Help
Powered by ViewVC