diff options
author | Graham Northup <grissess@nexusg.org> | 2022-03-07 15:01:22 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-07 15:01:22 -0500 |
commit | fdca5ccd30ebddd68a7b20b683d37dec1585d230 (patch) | |
tree | 63478da79ba42a1ccd298baa4788e13626a053c0 | |
parent | ebd8f4b242c1a83a222297aa80b2e5c64580e36d (diff) | |
parent | c446d6977b6b696b19aa4bba912634a621fa5479 (diff) |
Merge pull request #1 from thajohns/betabeta
added documentation for mapped file structure
-rw-r--r-- | render.py | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -1,5 +1,15 @@ # A visualizer for the Python client (or any other client) rendering to a mapped file +# The map file format should look like the following C structure: +# struct mapping { +# float disp_factor; // a factor to be displayed onscreen +# float last_samples[MAP_SAMPLES]; // samples from the waveform being played +# struct { +# unsigned long frequency; +# float amplitude; +# } values[STREAMS]; +# } + import optparse import mmap import os |