summaryrefslogtreecommitdiff
path: root/non-posts/lv2/mdapiano/index.skr
diff options
context:
space:
mode:
authorrekado <rekado@elephly.net>2015-08-16 05:15:04 +0200
committerrekado <rekado@elephly.net>2015-08-17 22:56:02 +0200
commit0d58b658a63f4ec3e938deffee22763131a816b8 (patch)
tree95f5475f5bb021209f9d239af29d6c58d11c72a0 /non-posts/lv2/mdapiano/index.skr
parent69b4e3db8cac30029fb94640f30354ac7c338b5b (diff)
Convert articles to skribe format.
Diffstat (limited to 'non-posts/lv2/mdapiano/index.skr')
-rw-r--r--non-posts/lv2/mdapiano/index.skr70
1 files changed, 70 insertions, 0 deletions
diff --git a/non-posts/lv2/mdapiano/index.skr b/non-posts/lv2/mdapiano/index.skr
new file mode 100644
index 0000000..4509701
--- /dev/null
+++ b/non-posts/lv2/mdapiano/index.skr
@@ -0,0 +1,70 @@
+(define meta
+ `((title . "LV2 plugin: mda Piano")))
+
+(list
+ (h1 [mda Piano])
+
+ (p [This is an LV2 port of the mda Piano VSTi (not to be confused
+ with the ,(ref "/lv2/mdaepiano/" "mda EPiano")). The original
+ VST that this port is based on was written by Paul Kellett.])
+
+
+ (h2 [Compiling])
+
+ (p [To compile the mda Piano plugin, just execute the following
+ statement:])
+
+ (p (pre (code
+ [make TYPE=mdaPiano
+sudo make install TYPE=mdaPiano])))
+
+ (p [This will copy the compiled plugin to ,(code
+ [/usr/local/lib/lv2]). To change the target prefix, pass the
+ ,(code [PREFIX]) variable to ,(code [make]).])
+
+ (p [To build the ,(ref "/lv2/mdaepiano/" "mda EPiano plugin")
+ instead, pass ,(code [TYPE=mdaEPiano]) to ,(code [make]):])
+
+ (p (pre (code
+ [make TYPE=mdaEPiano
+sudo make install TYPE=mdaEPiano])))
+
+ (p [,(strong [NOTE]): you will need the ,(ref "http://lvtoolkit.org"
+ "lvtoolkit libraries") to compile this plugin.])
+
+
+ (h2 [Connecting])
+
+ (p [You will need an LV2 host to use the plugin. I’m using ,(code
+ [jalv.gtk]):])
+
+ (p (pre (code [jalv.gtk http://elephly.net/lv2/mdaPiano])))
+
+ (p [You should now be able to connect your MIDI device to the plugin
+ via JACK. Also don’t forget to connect the plugin’s stereo output
+ to your system’s outputs:])
+
+ (p (pre (code
+ [jack_connect system:playback_1 mdaPiano:left
+jack_connect system:playback_2 mdaPiano:right])))
+
+ (p [I provide a simple connect script with the code which does these
+ things automatically.])
+
+
+ (h2 [License])
+
+ (p [The original mda VST plug-ins by Paul Kellett are released under
+ the MIT license or under the GPL ,(em [“either version 2 of the
+ License, or (at your option) any later version”]). The LV2 ports
+ of the mdaPiano and mdaEPiano plugins by rekado are released
+ under GPLv3, or (at your option) any later version.])
+
+
+ (h2 [Download])
+
+ (p [,(ref "http://git.elephly.net/software/lv2-mdametapiano.git"
+ "Fetch the source here").
+ The latest
+ ,(ref "http://git.elephly.net/software/lv2-mdametapiano.git/archive/0.0.2.tar.gz"
+ "release tarball can be downloaded here").]))