franta-hg@0: # The full description of the plugin is in this file, which is linked to from franta-hg@0: # `manifest.ttl`. This is done so the host only needs to scan the relatively franta-hg@0: # small `manifest.ttl` files to quickly discover all plugins. franta-hg@0: franta-hg@0: @prefix doap: . franta-hg@0: @prefix lv2: . franta-hg@0: @prefix rdf: . franta-hg@0: @prefix rdfs: . franta-hg@0: @prefix units: . franta-hg@0: franta-hg@0: # First the type of the plugin is described. All plugins must explicitly list franta-hg@0: # `lv2:Plugin` as a type. A more specific type should also be given, where franta-hg@0: # applicable, so hosts can present a nicer UI for loading plugins. Note that franta-hg@0: # this URI is the identifier of the plugin, so if it does not match the one in franta-hg@0: # `manifest.ttl`, the host will not discover the plugin data at all. franta-hg@0: franta-hg@0: a lv2:Plugin , franta-hg@0: lv2:AmplifierPlugin ; franta-hg@0: # Plugins are associated with a project, where common information like franta-hg@0: # developers, home page, and so on are described. This plugin is part of the franta-hg@0: # LV2 project, which has URI , and is described franta-hg@0: # elsewhere. Typical plugin collections will describe the project in franta-hg@0: # manifest.ttl franta-hg@0: lv2:project ; franta-hg@0: # Every plugin must have a name, described with the doap:name property. franta-hg@0: # Translations to various languages can be added by putting a language tag franta-hg@0: # after strings as shown. franta-hg@0: doap:name "Simple Amplifier" , franta-hg@0: "简单放大器"@zh , franta-hg@0: "Einfacher Verstärker"@de , franta-hg@0: "Simple Amplifier"@en-gb , franta-hg@0: "Amplificador Simple"@es , franta-hg@0: "Amplificateur de Base"@fr , franta-hg@0: "Amplificatore Semplice"@it , franta-hg@0: "簡単なアンプ"@jp , franta-hg@0: "Просто Усилитель"@ru ; franta-hg@0: doap:license ; franta-hg@0: lv2:optionalFeature lv2:hardRTCapable ; franta-hg@0: lv2:port [ franta-hg@0: # Every port must have at least two types, one that specifies direction franta-hg@0: # (lv2:InputPort or lv2:OutputPort), and another to describe the data type. franta-hg@0: # This port is a lv2:ControlPort, which means it contains a single float. franta-hg@0: a lv2:InputPort , franta-hg@0: lv2:ControlPort ; franta-hg@0: lv2:index 0 ; franta-hg@0: lv2:symbol "gain" ; franta-hg@0: lv2:name "Gain" , franta-hg@0: "收益"@zh , franta-hg@0: "Verstärkung"@de , franta-hg@0: "Gain"@en-gb , franta-hg@0: "Aumento"@es , franta-hg@0: "Gain"@fr , franta-hg@0: "Guadagno"@it , franta-hg@0: "利益"@jp , franta-hg@0: "Увеличение"@ru ; franta-hg@0: # An lv2:ControlPort should always describe its default value, and usually a franta-hg@0: # minimum and maximum value. Defining a range is not strictly required, but franta-hg@0: # should be done wherever possible to aid host support, particularly for UIs. franta-hg@0: lv2:default 0.0 ; franta-hg@0: lv2:minimum -90.0 ; franta-hg@0: lv2:maximum 24.0 ; franta-hg@0: # Ports can describe units and control detents to allow better UI generation franta-hg@0: # and host automation. franta-hg@0: units:unit units:db ; franta-hg@0: lv2:scalePoint [ franta-hg@0: rdfs:label "+5" ; franta-hg@0: rdf:value 5.0 franta-hg@0: ] , [ franta-hg@0: rdfs:label "0" ; franta-hg@0: rdf:value 0.0 franta-hg@0: ] , [ franta-hg@0: rdfs:label "-5" ; franta-hg@0: rdf:value -5.0 franta-hg@0: ] , [ franta-hg@0: rdfs:label "-10" ; franta-hg@0: rdf:value -10.0 franta-hg@0: ] franta-hg@0: ] , [ franta-hg@0: a lv2:AudioPort , franta-hg@0: lv2:InputPort ; franta-hg@0: lv2:index 1 ; franta-hg@0: lv2:symbol "in" ; franta-hg@0: lv2:name "In" franta-hg@0: ] , [ franta-hg@0: a lv2:AudioPort , franta-hg@0: lv2:OutputPort ; franta-hg@0: lv2:index 2 ; franta-hg@0: lv2:symbol "out" ; franta-hg@0: lv2:name "Out" franta-hg@0: ] .