aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/eg05-scope.lv2/README.txt
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2013-12-15 21:18:33 +0000
committerDavid Robillard <d@drobilla.net>2013-12-15 21:18:33 +0000
commit8f2c1ead95ed11f42f0c9801c397ec2c9df45707 (patch)
treeb2d8b3c78a27b986691f5e505c0717381ff0b888 /plugins/eg05-scope.lv2/README.txt
parent96ff3ee63a97c4f8a87813685340a0270c64c436 (diff)
downloadlv2-8f2c1ead95ed11f42f0c9801c397ec2c9df45707.tar.xz
Add example scope plugin from Robin Gareus.
Diffstat (limited to 'plugins/eg05-scope.lv2/README.txt')
-rw-r--r--plugins/eg05-scope.lv2/README.txt30
1 files changed, 30 insertions, 0 deletions
diff --git a/plugins/eg05-scope.lv2/README.txt b/plugins/eg05-scope.lv2/README.txt
new file mode 100644
index 0000000..ec3578b
--- /dev/null
+++ b/plugins/eg05-scope.lv2/README.txt
@@ -0,0 +1,30 @@
+== Simple Oscilloscope ==
+
+This plugin displays the wave-form of an incoming audio-signal using a simple
+GTK+Cairo GUI.
+
+This plugin illustrates:
+
+- UI <==> Plugin communication via LV2 atom events
+- LV2 Atom vector usage and resize-port extension
+- Save/Restore UI state by communicating state to backend
+- Cairo drawing and partial exposure
+
+This plugin intends to outline the basics for building visualization plugins
+that rely on Atom communication. The UI looks likean oscilloscope, but is not a real oscilloscope implementation:
+
+- There is no display synchronisation, results will depend on LV2 host.
+- It displays raw audio samples, which a proper scope must not do.
+- The display itself just connects min/max line segments.
+- No triggering or synchronization.
+- No labels, no scale, no calibration, no markers, no numeric readout, etc.
+
+Addressing these issues is beyond the scope of this example.
+
+Please see http://lac.linuxaudio.org/2013/papers/36.pdf for scope design,
+https://wiki.xiph.org/Videos/Digital_Show_and_Tell for background information,
+and http://lists.lv2plug.in/pipermail/devel-lv2plug.in/2013-November/000545.html
+for general LV2 related conceptual criticism regarding real-time visualizations.
+
+A proper oscilloscope based on this example can be found at
+https://github.com/x42/sisco.lv2