diff options
author | Robert Jonsson <spamatica@gmail.com> | 2011-09-15 12:14:55 +0000 |
---|---|---|
committer | Robert Jonsson <spamatica@gmail.com> | 2011-09-15 12:14:55 +0000 |
commit | b0546e5e7f7044019892543c6c82029db8d564a7 (patch) | |
tree | 1b96a6260900f3fbf3513fb48a5a72aa89052dc8 /attic/muse2-oom/muse2/share/scripts/README.txt | |
parent | 583c73d1a07154d3d2672d65d8cce6495f490454 (diff) |
moved attic to a branch of it's own
Diffstat (limited to 'attic/muse2-oom/muse2/share/scripts/README.txt')
-rw-r--r-- | attic/muse2-oom/muse2/share/scripts/README.txt | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/attic/muse2-oom/muse2/share/scripts/README.txt b/attic/muse2-oom/muse2/share/scripts/README.txt deleted file mode 100644 index 8490dd69..00000000 --- a/attic/muse2-oom/muse2/share/scripts/README.txt +++ /dev/null @@ -1,36 +0,0 @@ -MusE midi event scripting format 0.5 - -Some information for the budding script writer, here is some info -about the format currently used. - -Scripts can be put in two different dirs. -<install_path>/share/muse/scripts -for scripts bundled -or $HOME/.muse/scripts -for user created scripts - -There are two main requirements on scripts. - -1. a script must have the executable flag set, that is, it must be considered -an executable from the perspective of the operating system. -2. a script shall take an input file as argument and will update this -file with the sought output. - -The tags that may occur in the file sent to the script are: -PARTLEN <len in ticks> -BEATLEN <len in ticks> -QUANTLEN <len in ticks> -NOTE <tick> <pitch> <len in ticks> <velocity> -CONTROLLER <tick> <a> <b> <c> - -PARTLEN, BEATLEN and QUANTLEN are there for informational purposes, to -make some transformations possible. e.g. quantization, beat delay. - -NOTE and CONTROLLER are the ones that are read back into MusE when the filter -stops executing. These may be manipulated, removed or multiplied as seen -fit by the filter. --- Note that it is a good idea to just pass on the lines your script is not -interested in, otherwise data may unintentionally be removed -- - -A short example in pyton that does nothing but pass on output from input -to output is available in script DoNothing |