Before posting, please read: When to use this forum, when to submit a help ticket

Voicelive 3 key and scale midi

Started by James Schaper, April 09, 2016, 04:21:06 AM

Previous topic - Next topic

James Schaper

From the VL3 manual CC implementation list this is the data for setting scale and key for more accurate harmonies. I've tried applying these a couple of different ways with no luck. How should they be typed into the SLM screen?


CC 30 Vocal Harmony – Key (C, C#, D, D#, E, F, F#, G, G#, A, A#, B) – values 0-11 respectively
CC 31 Vocal Harmony – Scale (MAJ1, MAJ2, MAJ3, MIN1, MIN2, MIN3, CUST) – values 0-7 respectively

arlo

You would need to enter these into the Raw MIDI field in hex code. Here are some examples:

B0 1E 00 - set the key of C on channel 1
explanation:
B0 - control change on channel 1
1E - hex for 30
00 - hex for 0

B3 1E 0B - set the key of B on channel 4
explanation:
B3 - control change on channel 4
1E - hex for 30
0B - hex for 11

BF 1F 03 - set the MIN1 scale on channel 16
explanation:
BF - control change on channel 16
1F - hex for 31
03 - hex for 3

James Schaper