diff options
-rw-r--r-- | test/kit/0000.wav | bin | 0 -> 46 bytes | |||
-rw-r--r-- | test/kit/1111.wav | bin | 0 -> 46 bytes | |||
-rw-r--r-- | test/kit/2222.wav | bin | 0 -> 46 bytes | |||
-rw-r--r-- | test/kit/ffff.wav | bin | 0 -> 46 bytes | |||
-rw-r--r-- | test/kit/instr1.xml | 16 | ||||
-rw-r--r-- | test/kit/instr2.xml | 16 | ||||
-rw-r--r-- | test/kit/kit1.xml | 23 | ||||
-rw-r--r-- | test/kit/kit2.xml | 23 | ||||
-rw-r--r-- | test/kit/midimap.xml | 5 |
9 files changed, 83 insertions, 0 deletions
diff --git a/test/kit/0000.wav b/test/kit/0000.wav Binary files differnew file mode 100644 index 0000000..76d3db2 --- /dev/null +++ b/test/kit/0000.wav diff --git a/test/kit/1111.wav b/test/kit/1111.wav Binary files differnew file mode 100644 index 0000000..ae5b743 --- /dev/null +++ b/test/kit/1111.wav diff --git a/test/kit/2222.wav b/test/kit/2222.wav Binary files differnew file mode 100644 index 0000000..aa2f6e6 --- /dev/null +++ b/test/kit/2222.wav diff --git a/test/kit/ffff.wav b/test/kit/ffff.wav Binary files differnew file mode 100644 index 0000000..76d3db2 --- /dev/null +++ b/test/kit/ffff.wav diff --git a/test/kit/instr1.xml b/test/kit/instr1.xml new file mode 100644 index 0000000..6b600d5 --- /dev/null +++ b/test/kit/instr1.xml @@ -0,0 +1,16 @@ +<?xml version='1.0' encoding='UTF-8'?> +<instrument name="instr1"> + <samples> + <sample name="stroke1"> + <audiofile channel="ch1" file="1111.wav"/> + <audiofile channel="ch2" file="1111.wav"/> + <audiofile channel="ch3" file="1111.wav"/> + <audiofile channel="ch4" file="1111.wav"/> + </sample> + </samples> + <velocities> + <velocity lower="0" upper="1"> + <sampleref probability="1" name="stroke1"/> + </velocity> + </velocities> +</instrument> diff --git a/test/kit/instr2.xml b/test/kit/instr2.xml new file mode 100644 index 0000000..76cbc80 --- /dev/null +++ b/test/kit/instr2.xml @@ -0,0 +1,16 @@ +<?xml version='1.0' encoding='UTF-8'?> +<instrument name="instr2"> + <samples> + <sample name="stroke1"> + <audiofile channel="ch1" file="2222.wav"/> + <audiofile channel="ch2" file="2222.wav"/> + <audiofile channel="ch3" file="2222.wav"/> + <audiofile channel="ch4" file="2222.wav"/> + </sample> + </samples> + <velocities> + <velocity lower="0" upper="1"> + <sampleref probability="1" name="stroke1"/> + </velocity> + </velocities> +</instrument> diff --git a/test/kit/kit1.xml b/test/kit/kit1.xml new file mode 100644 index 0000000..dd4c93e --- /dev/null +++ b/test/kit/kit1.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8"?> +<drumkit name="Test drumkit" description="A test drumkit"> + <channels> + <channel name="ch1"/> + <channel name="ch2"/> + <channel name="ch3"/> + <channel name="ch4"/> + </channels> + <instruments> + <instrument name="instr1" file="instr1.xml"> + <channelmap in="ch1" out="ch1"/> + <channelmap in="ch2" out="ch2"/> + <channelmap in="ch3" out="ch3"/> + <channelmap in="ch4" out="ch4"/> + </instrument> + <instrument name="instr2" file="instr2.xml"> + <channelmap in="ch1" out="ch1"/> + <channelmap in="ch2" out="ch2"/> + <channelmap in="ch3" out="ch3"/> + <channelmap in="ch4" out="ch4"/> + </instrument> + </instruments> +</drumkit> diff --git a/test/kit/kit2.xml b/test/kit/kit2.xml new file mode 100644 index 0000000..dd4c93e --- /dev/null +++ b/test/kit/kit2.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8"?> +<drumkit name="Test drumkit" description="A test drumkit"> + <channels> + <channel name="ch1"/> + <channel name="ch2"/> + <channel name="ch3"/> + <channel name="ch4"/> + </channels> + <instruments> + <instrument name="instr1" file="instr1.xml"> + <channelmap in="ch1" out="ch1"/> + <channelmap in="ch2" out="ch2"/> + <channelmap in="ch3" out="ch3"/> + <channelmap in="ch4" out="ch4"/> + </instrument> + <instrument name="instr2" file="instr2.xml"> + <channelmap in="ch1" out="ch1"/> + <channelmap in="ch2" out="ch2"/> + <channelmap in="ch3" out="ch3"/> + <channelmap in="ch4" out="ch4"/> + </instrument> + </instruments> +</drumkit> diff --git a/test/kit/midimap.xml b/test/kit/midimap.xml new file mode 100644 index 0000000..746c745 --- /dev/null +++ b/test/kit/midimap.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<midimap> + <map note="1" instr="instr1"/> + <map note="2" instr="instr2"/> +</midimap> |