-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
1,244 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@prefix lv2: <http://lv2plug.in/ns/lv2core#> . | ||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
|
||
<https://github.com/zwaba/Zinvert_phase> | ||
a lv2:Plugin ; | ||
lv2:binary <max-gen-plugin_dsp.so> ; | ||
rdfs:seeAlso <max-gen-plugin_dsp.ttl> . | ||
|
||
<https://github.com/zwaba/Zinvert_phase> rdfs:seeAlso <modgui.ttl> . | ||
<https://github.com/zwaba/Zinvert_phase> rdfs:seeAlso <modgui.ttl> . |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
@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 opts: <http://lv2plug.in/ns/ext/options#> . | ||
@prefix pg: <http://lv2plug.in/ns/ext/port-groups#> . | ||
@prefix patch: <http://lv2plug.in/ns/ext/patch#> . | ||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
@prefix spdx: <http://spdx.org/rdf/terms#> . | ||
@prefix unit: <http://lv2plug.in/ns/extensions/units#> . | ||
|
||
<https://github.com/zwaba/Zinvert_phase> | ||
a lv2:UtilityPlugin, lv2:Plugin, doap:Project ; | ||
|
||
lv2:extensionData opts:interface ; | ||
|
||
lv2:optionalFeature <http://lv2plug.in/ns/lv2core#hardRTCapable> , | ||
<http://lv2plug.in/ns/ext/buf-size#boundedBlockLength> ; | ||
|
||
lv2:requiredFeature opts:options , | ||
<http://lv2plug.in/ns/ext/urid#map> ; | ||
|
||
opts:supportedOption <http://lv2plug.in/ns/ext/buf-size#nominalBlockLength> , | ||
<http://lv2plug.in/ns/ext/buf-size#maxBlockLength> , | ||
<http://lv2plug.in/ns/ext/parameters#sampleRate> ; | ||
|
||
lv2:port [ | ||
a lv2:InputPort, lv2:AudioPort ; | ||
lv2:index 0 ; | ||
lv2:symbol "lv2_audio_in_1" ; | ||
lv2:name "Audio Input 1" ; | ||
pg:group <https://github.com/zwaba/Zinvert_phase#portGroup_dpf_mono> ; | ||
lv2:designation pg:center ; | ||
] ; | ||
|
||
lv2:port [ | ||
a lv2:OutputPort, lv2:AudioPort ; | ||
lv2:index 1 ; | ||
lv2:symbol "lv2_audio_out_1" ; | ||
lv2:name "Audio Output 1" ; | ||
pg:group <https://github.com/zwaba/Zinvert_phase#portGroup_dpf_mono> ; | ||
lv2:designation pg:center ; | ||
] ; | ||
|
||
lv2:port [ | ||
a lv2:InputPort, lv2:ControlPort ; | ||
lv2:index 2 ; | ||
lv2:name "INVERT" ; | ||
lv2:symbol "INVERT" ; | ||
lv2:default 0.000000 ; | ||
lv2:minimum 0.000000 ; | ||
lv2:maximum 1.000000 ; | ||
lv2:portProperty lv2:toggled; | ||
] ; | ||
|
||
rdfs:comment """ | ||
Simple phase inverter. i.e. useful on stage for acoustic instrument amplification | ||
""" ; | ||
|
||
mod:brand "Zwabo" ; | ||
mod:label "Zinvert_phase" ; | ||
|
||
doap:name "Zinvert_phase" ; | ||
doap:license <http://spdx.org/licenses/ISC.html> ; | ||
|
||
doap:maintainer [ | ||
foaf:name "Zwabo" ; | ||
foaf:homepage <https://github.com/moddevices/max-gen-plugins> ; | ||
] ; | ||
|
||
lv2:microVersion 0 ; | ||
lv2:minorVersion 0 . | ||
|
||
<https://github.com/zwaba/Zinvert_phase#portGroup_dpf_mono> | ||
a pg:Group , pg:MonoGroup ; | ||
lv2:name "Mono" ; | ||
lv2:symbol "dpf_mono" . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
@prefix modgui: <http://moddevices.com/ns/modgui#> . | ||
@prefix lv2: <http://lv2plug.in/ns/lv2core#> . | ||
|
||
<https://github.com/zwaba/Zinvert_phase> | ||
modgui:gui [ | ||
modgui:resourcesDirectory <modgui> ; | ||
modgui:iconTemplate <modgui/icon-zinvertphase.html> ; | ||
modgui:stylesheet <modgui/stylesheet-zinvertphase.css> ; | ||
modgui:screenshot <modgui/screenshot-zinvertphase.png> ; | ||
modgui:thumbnail <modgui/thumbnail-zinvertphase.png> ; | ||
modgui:brand "Zwabo" ; | ||
modgui:label "Zinvert_phase" ; | ||
modgui:model "boxy-small" ; | ||
modgui:panel "1-footswitch" ; | ||
modgui:color "cream" ; | ||
modgui:port [ | ||
lv2:index 0 ; | ||
lv2:symbol "INVERT" ; | ||
lv2:name "INVERT" ; | ||
] ; | ||
] . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<div class="mod-pedal mod-pedal-boxy{{{cns}}} mod-boxy50 mod-one-footswitch mod-{{color}} {{color}}"> | ||
<div mod-role="drag-handle" class="mod-drag-handle"></div> | ||
<div class="mod-plugin-brand"><h1>{{brand}}</h1></div> | ||
<div class="mod-plugin-name"><h1>{{label}}</h1></div> | ||
<div class="mod-light on" mod-role="bypass-light"></div> | ||
<div class="mod-footswitch" mod-role="bypass"></div> | ||
<div class="mod-pedal-input"> | ||
{{#effect.ports.audio.input}} | ||
<div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-audio-port" mod-port-symbol="{{symbol}}"> | ||
<div class="mod-pedal-input-image"></div> | ||
</div> | ||
{{/effect.ports.audio.input}} | ||
{{#effect.ports.midi.input}} | ||
<div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-midi-port" mod-port-symbol="{{symbol}}"> | ||
<div class="mod-pedal-input-image"></div> | ||
</div> | ||
{{/effect.ports.midi.input}} | ||
{{#effect.ports.cv.input}} | ||
<div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-cv-port" mod-port-symbol="{{symbol}}"> | ||
<div class="mod-pedal-input-image"></div> | ||
</div> | ||
{{/effect.ports.cv.input}} | ||
</div> | ||
<div class="mod-pedal-output"> | ||
{{#effect.ports.audio.output}} | ||
<div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-audio-port" mod-port-symbol="{{symbol}}"> | ||
<div class="mod-pedal-output-image"></div> | ||
</div> | ||
{{/effect.ports.audio.output}} | ||
{{#effect.ports.midi.output}} | ||
<div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-midi-port" mod-port-symbol="{{symbol}}"> | ||
<div class="mod-pedal-output-image"></div> | ||
</div> | ||
{{/effect.ports.midi.output}} | ||
{{#effect.ports.cv.output}} | ||
<div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-cv-port" mod-port-symbol="{{symbol}}"> | ||
<div class="mod-pedal-output-image"></div> | ||
</div> | ||
{{/effect.ports.cv.output}} | ||
</div> | ||
</div> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.