VoiceWorks Plus MIDI System Exclusive Version 1.00

Size: px
Start display at page:

Download "VoiceWorks Plus MIDI System Exclusive Version 1.00"

Transcription

1 TC-IVL VoiceWorks Plus MIDI System Exclusive Version 1.00 Last Modified: December 17th, 2005 Introduction This document describes how to control and configure VoiceWorks Plus through standard MIDI System Exclusive communication. Hexadecimal Notation Many values in this document are presented in hexadecimal notation. Hexadecimal numbers will be prefixed with 0x. Example: Hexadecimal 0x123 = Decimal 291 Decimal 123 = Hexadecimal 0x7B VoiceWorks Plus SYSEX message template: Every SYSEX package VoiceWorks Plus sends and receives must conform to the following template: 0xF0 MIDI System exclusive message start 0x00 3 byte manufactors ID for TC-Helicon 0x x38... <Device ID> System exclusive device ID (user parameter) 0x51 VoiceWorks Plus model ID <Message ID> VoiceWorks Plus message type identifier <Data> Start of message data... Variable number of data bytes based on message type 0xF7 MIDI System exclusive message terminator Data Packing (28-bit words to 4x7-bit bytes, or 14-bit words to 2x7-bit bytes) The idea of data packing is to take a 14 or 28-bit value and split it into 7-bit segments, so that it can be sent easily with SYSEX. SYSEX data can only be 7 bits in size. Below is an example of how 14-bit and 28-bit signed integers can be converted into SYSEX strings using Visual Basic for Applications: Function create_hex(val As Integer) As String ' Creates a nicely formatted hex string from a value create_hex = Hex(val) If Len(create_hex) = 1 Then create_hex = "0" & create_hex Page 1

2 End Function Function create_14_compliment(byval val As Long) As String Dim msb As Integer Dim lsb As Integer Dim msb_s As String Dim lsb_s As String Dim temp As Long temp = val ' deal with negative numbers If val < 0 Then temp = val End If msb = Int(temp / 128) lsb = temp - (msb * 128) ' create hex string from values msb_s = create_hex(msb) lsb_s = create_hex(lsb) ' and return the sysex data portion create_14_compliment = msb_s & " " & lsb_s End Function Function create_28_compliment(byval val As Long) As String Dim msb As Integer Dim msb2 As Integer Dim msb3 As Integer Dim lsb As Integer Dim msb_s As String Dim msb2_s As String Dim msb3_s As String Dim lsb_s As String Dim temp As Long temp = val ' deal with negative numbers If val < 0 Then temp = * val End If msb = Int(temp / 128) msb2 = Int(temp / 16384) msb3 = Int(temp / ) lsb = temp - ((msb * 128) + (msb2 * 16384) + (msb3 * )) ' create hex string from values msb_s = create_hex(msb) msb2_s = create_hex(msb2) msb3_s = create_hex(msb3) lsb_s = create_hex(lsb) Page 2

3 ' and return the sysex data portion create_28_compliment = msb3_s & " " & msb2_s & " " & msb_s & " " & lsb_s End Function Preset numbers Preset numbers are represented in SYSEX messages using 14-bit data packing. Preset zero references the currently loaded preset (possibly being edited by the user). Presets numbered 1 through 99 reference all factory presets. Numbers between 100 and 198 represent user. Requesting a user preset that does not exist will cause VoiceWorks Plus to return an empty preset notification message. Checksum Checksums are 1 byte, holding the 7 least significant bits of the sum of all bytes contributing to the checksum. Example: If the byte values used in a checksum calculation were the series 1,2,3,...,126 their sum total would be Dividing 8001 by 128 leaves a remainder of 65, which becomes the checksum byte. Message data format The format of the data of each SYSEX message type varies. Below are descriptions for each message type, explaining their specific data formatting requirements. SYSEX message type Request Preset Request Parameter Request Setup Notification Message Preset Data Parameter Data Setup Data Set Editor Mode Presets Utility Identifier 0x45 0x47 0x15 0x34 0x20 0x22 0x13 0x53 0x54 VoiceWorks Plus Data Request messages The following describes the data part of the standard SYSEX message template. Request Preset 0x45: <Data> is 2 bytes (packed 14-bit integer) representing the number of the preset requested. See above for a description of preset number representation. The data transmitted by VoiceWorks Plus upon receiving this message will be formatted as a Preset Data message. Request Parameter 0x47: Page 3

4 <Data> is 2 bytes (packed 14-bit integer) representing the Universal Parameter Identifier. See the parameter table for a list of accessible parameters and their Ids. The data transmitted by VoiceWorks Plus upon receiving this message will be formatted as a Parameter Data message (see below for complete description). Request Setup Data 0x15: <Data> is 1 byte. The value of this byte is ignored. The data transmitted by VoiceWorks Plus upon receiving this message will be formatted as a Setup Data message. VoiceWorks Plus Data messages Notification message (Preset Receive, Empty Preset) 0x34: <Data> is 1 byte. If Data=1, the VoiceWorks Plus has successfully received a Preset Data message Sometimes VoiceWorks Plus needs to reorganize its internal preset bank after receiving a SYSEX preset. While this is happening, VoiceWorks Plus has to ignore incoming preset SYSEX packages. If this happens while you are dumping several presets to the unit, you might lose a preset in transmission without realizing it. This situation can be avoided by waiting for VoiceWorks Plus to send this message indicating that the preset was successfully stored, before attempting to send the next. For a non-programmatic solution to this problem, refer to the section on Buffering Presets. If Data=2, VoiceWorks Plus is reporting that the last requested user preset is non-existent. VoiceWorks Plus allows the user to save user presets nonconsecutively. This message allows for scanning the VoiceWorks Plus to determine which user presets have been created. If Data=3, VoiceWorks Plus is reporting that the user attempted to overwrite a factory preset with a SYSEX preset message. VoiceWorks Plus will only accept presets with numbers in the user bank range ( ). If Data=4, VoiceWorks Plus is reporting that that the last received preset had an incompatible version number and was therefore rejected. Preset Data 0x20: Presets are sent in a series of SYSEX messages. This is done to enhance compatibility with MIDI devices that cannot handle large SYSEX data messages. Each package contains the preset information along with 50 parameters. The last package may contain empty parameters. The total number of packages required for a preset can be calculated by taking the ceiling of the number of preset parameters divided by 50. Page 4

5 <Data> is organized as follows 2 bytes Preset number (14-bit packed) 15 bytes Preset name (unpacked - ASCII characters) 2 bytes Preset Set Version (14-bit packed) 2 bytes Total number of parameters in preset (14-bit packed) 1 byte Package Number (1 is the first package) 200 bytes(cs) The bit preset parameters for current package. 1 byte Checksum The preset name is null terminated. VoiceWorks Plus can display names 22 characters in length. Refer to the preset table to see how the preset parameters fit into each package. On requesting a preset, VoiceWorks Plus will automatically send all necessary packages. VoiceWorks Plus must receive preset packages sequentially and completely before it will process the information. Note: The checksum is calculated only on the data marked with (cs). Parameter data 0x22: <Data> is 6 bytes. The first two bytes identify the Universal Parameter ID. The last four bytes determine the value of the parameter represented as a 28-bit 2 s complement signed value. If a value exceeds the limits of the parameter, the value will be automatically limited. Setup Data 0x13: Like presets, setup data packages are also sent as a series of SYSEX messages. <Data> is organized as follows 2 bytes Preset Set Version (14-bit packed) 2 bytes Total number of parameters in setup (14-bit packed) 1 byte Package Number 200 bytes(cs) The bit preset parameters for current package. 1 byte Checksum Refer to the setup table to see how the preset parameters fit into each package. On requesting a setup package, VoiceWorks Plus will automatically send all necessary packages. VoiceWorks Plus must receive setup packages sequentially and completely before it will process the information. VoiceWorks Plus Editor Mode Messages Set Editor Mode 0x53: <Data> is 1 byte. A value of zero turns off Editor Mode and a value of 1 turns it on. In Editor mode, VoiceWorks Plus echoes all parameter changes (via the front panel user interface controls) to SYSEX as Parameter Data, instead of forcing the user to request parameter data manually. Presets Utility 0x54: Page 5

6 <Data> is 1 byte. Sending 50 erases the user bank. 1 means enable preset buffering, 0 means disable buffering and commit buffer to the file system. The size and complexity of VoiceWorks Plus presets makes it difficult for the unit to keep up with a large number of incoming SYSEX presets. To support the reception of an entire user bank, the buffer presets function was created. Enabling preset buffering causes VoiceWorks Plus to store all incoming presets temporarily without processing them, allowing it to keep up with full-rate MIDI. Once all presets have been received, disabling buffering causes VoiceWorks Plus to process and write all presets to its non-volatile file system. Using the Utility menu to dump all presets automatically wraps the entire preset dump with these messages. An alternative to using this feature is to programmatically rely on the notification messages. I.e. wait for a preset received success message before sending the next. Example: F F7 (enable buffering) F E *** many presets *** F7 F F7 (disable buffering) Page 6

7 Universal Parameter ID Tables Preset Package Parameter Set Version: 0.21 SYSEX Offset Universal ID Parameter Name Min Max 0 56 Harmony Mode Harmony Key Harmony Scale Harmony Root Harmony Chord PresetControl Harmony or Model LeadShift Lead Shift Mode LeadShift Lead Shift Chromatic LeadShift Lead Shift Amount Blocks Harmony/VM Enable Blocks Correction Enable Blocks Effects Enable Blocks Harmony Enable Voice Blocks Harmony Enable Voice Blocks Harmony Enable Voice Blocks Harmony Enable Voice LeadPitchCorrect Root LeadPitchCorrect Scale LeadPitchCorrect Window LeadPitchCorrect Attack LeadPitchCorrect Amount Harmony Bend_Control Harmony Tuning Harmony Attack Harmony Decay Harmony Release Harmony Release Time Randomize Harmony Latch Harmony Hold Harmony Hold Release Harmony Detune Harmony Notes Extension Switch Harmony Shift V1 Voicing Harmony Shift V2 Voicing Harmony Shift V3 Voicing Harmony Shift V4 Voicing Harmony Scale V1 Voicing Harmony Scale V2 Voicing Harmony Scale V3 Voicing Harmony Scale V4 Voicing Harmony Chord V1 Voicing 0 19 Page 7

8 41 81 Harmony Chord V2 Voicing Harmony Chord V3 Voicing Harmony Chord V4 Voicing Harmony Gender V Harmony Gender V Harmony Gender V Harmony Gender V Harmony Humanize Style V Harmony Humanize Style V Harmony Humanize Style V Harmony Humanize Style V Harm_Infl_V1 Humaize Amount V Harm_Infl_V2 Humaize Amount V Harm_Infl_V3 Humaize Amount V Harm_Infl_V4 Humaize Amount V Harmony Smoothing Amount V Harmony Smoothing Amount V Harmony Smoothing Amount V Harmony Smoothing Amount V Harmony Vibrato Style V Harmony Vibrato Style V Harmony Vibrato Style V Harmony Vibrato Style V Harm_Vib_V1 Vibrato Amount V Harm_Vib_V2 Vibrato Amount V Harm_Vib_V3 Vibrato Amount V Harm_Vib_V4 Vibrato Amount V Harmony Portamento V Harmony Portamento V Harmony Portamento V Harmony Portamento V VoiceMixer VM Lead Pan VoiceMixer VM Lead Level HarmonyMixer Pan Voice HarmonyMixer Level Voice HarmonyMixer Pan Voice HarmonyMixer Level Voice HarmonyMixer Pan Voice HarmonyMixer Level Voice HarmonyMixer Pan Voice HarmonyMixer Level Voice LeadMixer Dry Pan LeadMixer Dry Level MicroModMixer Dry Send MicroModMixer Harm/VM Send MicroModMixer Aux Send DelayMixer Dry Send Page 8

9 DelayMixer Harm/VM Send DelayMixer Aux Send DelayMixer MicroMod Send ReverbMixer Dry Send ReverbMixer Harm/VM Send ReverbMixer Aux Send ReverbMixer Delay Send FxMixer MicroMod Level FxMixer Delay Level FxMixer Reverb Level FxMixer MicroMod Width FxMixer Delay Width FxMixer Reverb Width MicroMod Style MicroMod Detune Left MicroMod Detune Right MicroMod Mod Depth L MicroMod Mod Depth R MicroMod Mod Speed MicroMod Mod L/R Phase MicroMod Mod Wave MicroMod Delay Left MicroMod Delay Right MicroMod Feedback L MicroMod Feedback R MicroMod X Feedback L MicroMod X Feedback R MicroMod Low Cut L MicroMod Low Cut R MicroMod High Cut L MicroMod High Cut R MicroMod Phase Inverse Delay Style Delay Source Delay Tempo Delay Time L Delay Time R Delay Division L Delay Division R Delay Feedback L Delay Feedback R Delay Cross Feedback Left to Right Delay Cross Feedback Right to Left Delay Low Cut L Delay Low Cut R Delay High Cut L Delay High Cut R Page 9

10 Reverb Style Reverb Pre Delay Reverb Room Level Reverb Decay Time Reverb Lo Color Reverb Hi Color Reverb Tail Level Transducer Style Transducer Routing Transducer Distortion Amount Transducer PreGain Transducer PostGain Transducer Low Cut Transducer High Cut Transducer Distortion Type Harmony Notes V1 Voicing Harmony Notes V2 Voicing Harmony Notes V3 Voicing Harmony Notes V4 Voicing Harmony Global Pitch Amount Harmony Global Time Amount Harmony Global Level Amount Inflection Style Inflection Amount Inflection Rand Mod Inflection Scoop Dur Inflection Scoop Amt Naturalization UV Atten Naturalization Pitch Rand Naturalization Pitch Rate Naturalization Time Rand Naturalization Time Rate Naturalization Level Rand Naturalization Level Rate Vibrato Style Vibrato Amount Vibrato Rand Mod Vibrato Rate Vibrato Depth Vibrato Onset Delay Vibrato Attack Vibrato Sustain Vibrato Release Vibrato Trem Amt Vibrato Trem Phase Breath Style Breath Amount Page 10

11 Breath Aspiration Level Breath Voice Level Resonance Style Resonance Amount Resonance Tract Ratio LeadShift Lead Shift Formant LeadShift Lead Shift Hybrid LeadShift Lead Shift Portamento LeadShift Lead Shift Smoothing Reserved For Future Use LeadShift Allow MIDI RePitching Harmony Map V12_Root Harmony Map V12_Minor Harmony Map V12_Major Harmony Map V12_Minor Harmony Map V12_Major Harmony Map V12_Perfect Harmony Map V12_Augmented Harmony Map V12_Peftect Harmony Map V12_Minor Harmony Map V12_Major Harmony Map V12_Minor Harmony Map V12_Major Harmony Map V34_Root Harmony Map V34_Minor Harmony Map V34_Major Harmony Map V34_Minor Harmony Map V34_Major Harmony Map V34_Perfect Harmony Map V34_Augmented Harmony Map V34_Peftect Harmony Map V34_Minor Harmony Map V34_Major Harmony Map V34_Minor Harmony Map V34_Major Correction Map BitField LeadShift CustomNote LeadShift CustomNote LeadShift CustomNote LeadShift CustomNote LeadShift CustomNote LeadShift CustomNote LeadShift CustomNote LeadShift CustomNote LeadShift CustomNote LeadShift CustomNote LeadShift CustomNote Page 11

12 LeadShift CustomNote System Package Parameter Set Version: 0.21 SYSEX Offset Universal ID Parameter Name Min Max 0 0 Utility Input Utility DryVoiceIn Utility AuxIn Utility Output Utility Clock Utility Mic Sensitivity Utility Input Sensitivity Utility Output Level Utility Digital In Gain Utility Digital Channel Status Utility Voice Latency Compensation Utility Bypass Mode Utility MIDI Channel Utility CC Control Utility Filter Utility Program Bank Utility Bypass Utility Tuning Reference Utility Global Effect Utility Global Chord Utility Pitch Bend Range Utility Transpose Utility Keyboard Split Above/Below Utility Keyboard Split Point Utility Chord Mode Operation Utility Notes Mode Operation Utility MIDI Aftertouch Utility Expression Pedal Assignment Utility Footswitch Button Utility Footswitch Button Utility Footswitch Button Utility umod or Transducer Switch Utility Mic Phantom Power Utility Mic Input Select Utility Mic -20dB Pad PreFX LowCut Frequency PreFX Dynamics Configuration PreFX Compressor Threshold Page 12

13 38 46 PreFX Compressor Ratio PreFX Noise Gate Threshold PreFX EQ Configuration PreFX Low Shelf Frequency PreFX Low Shelf Gain PreFX High Shelf Frequency PreFX High Shelf Gain PreFX Mid Parametric Frequency PreFX Mid Parametric Gain PreFX Mid Parametric Q Factor Utility Vibrato Control Master Lead Level Master Harmony/VM Level Master Effects Level Master Output Level Miscellaneous Controllable Parameters Version 0.21 Universal ID Parameter Name Min Max 511 Harmony Custom Scale V Harmony Custom Scale V Harmony Custom Scale V Harmony Custom Scale V Select Shift Map Program Mode Select Effects Outs Select Human Rand Parm Select Effects Type Select Vibrato Envelope Control Global Vibrato Amount Control Aftertouch Control Expression Pedal Harmony Input Node 0 11 Page 13

VOICEWORKSPLUS v1.2 Manual Addendum

VOICEWORKSPLUS v1.2 Manual Addendum VOICEWORKSPLUS v1.2 Manual Addendum Overview Useful features and bug fixes comprise this update for VoiceWorksPlus. This manual addendum lists and describes these as well as details how to install the

More information

APPENDIX. MIDI Controller List. MIDI Controller List

APPENDIX. MIDI Controller List. MIDI Controller List Some controllers adhere to the normal midi-specified use (eg modwheel, volume) but most are used arbitrarily (and therefore may clash with parameter assignments of other products). We have tried to avoid

More information

YDP-S34. MIDI Reference. Table of Contents

YDP-S34. MIDI Reference. Table of Contents YDP-S34 MIDI Reference Table of Contents MIDI Functions...2 MIDI Transmit/Receive Channel Selection...2 Local Control ON/OFF...2 Program Change ON/OFF...3 Control Change ON/OFF...3 Changing Playback Channels...3

More information

ELS-02C. MIDI Reference. Contents. MIDI Data Format... 2 MIDI Implementation Chart DIGITAL ORGAN. ELS-02/ELS-02C MIDI Reference

ELS-02C. MIDI Reference. Contents. MIDI Data Format... 2 MIDI Implementation Chart DIGITAL ORGAN. ELS-02/ELS-02C MIDI Reference ELS-02 ELS-02C MIDI Reference Contents MIDI Data Format... 2 MIDI Implementation Chart... 15 1 ELS-02/ELS-02C MIDI Reference DIGITAL ORGAN EN MIDI Data Format 1. Channel Messages 1.1 EL Mode indicates

More information

OB-8 New Firmware CC information and other information R. Grieb January 10, 2019 (numbers are decimal, except as noted)

OB-8 New Firmware CC information and other information R. Grieb January 10, 2019 (numbers are decimal, except as noted) OB-8 New Firmware CC information and other information R. Grieb January 10, 2019 (numbers are decimal, except as noted) Note: CC's do not work in Manual mode. Function CC # Global Parm Range Value Port

More information

Table of Contents. MIDI Functions... 2

Table of Contents. MIDI Functions... 2 DIGITAL PIANO P - 125 MIDI Reference MIDI-Referenz Référence MIDI Referencia MIDI Table of Contents MIDI Functions... 2 MIDI Transmit/Receive Channel Selection... 2 Local Control ON/OFF... 2 Program Change

More information

Dual Footswitch Controller OPERATING INSTRUCTIONS

Dual Footswitch Controller OPERATING INSTRUCTIONS MIDI Solutions Dual Footswitch Controller OPERATING INSTRUCTIONS MIDI Solutions Dual Footswitch Controller Operating Instructions M414-100 2014 MIDI Solutions Inc. All rights reserved. MIDI Solutions Inc.

More information

TC Electronic D-Two MIDI specification Document revision history: V D-Two release 1.01

TC Electronic D-Two MIDI specification Document revision history: V D-Two release 1.01 MIDI specification Document revision history: V1.00 2000-01-26 release 1.01 General message format: MIDI System Exclusive message start 3 byte manufacturer ID for System Exclusive device ID (User parameter)

More information

REVERB (PEDAL) MANUAL v.2 MORE THAN LOGIC. UNITING ART + ENGINEERING. CONTACT.

REVERB (PEDAL) MANUAL v.2 MORE THAN LOGIC. UNITING ART + ENGINEERING. CONTACT. REVERB (PEDAL) MANUAL v.2 MORE THAN LOGIC. UNITING ART + ENGINEERING. CONTACT email: info@meris.us phone: 747.233.1440 website: www.meris.us TABLE OF CONTENTS SECTION 1 PG. 1 FRONT PANEL CONTROLS SECTION

More information

Kemper Profiler Midi parameters

Kemper Profiler Midi parameters Kemper Profiler Midi parameters contents: midi CC list NRPN values values for effect type (related to NRPN data) KEMEPER MIDI CC REFERENCE CHART, V.4.2 CC RANGE FUNCTION CC RANGE FUNCTION kemper midi data:

More information

GEN/MDM INTERFACE USER GUIDE 1.00

GEN/MDM INTERFACE USER GUIDE 1.00 GEN/MDM INTERFACE USER GUIDE 1.00 Page 1 of 22 Contents Overview...3 Setup...3 Gen/MDM MIDI Quick Reference...4 YM2612 FM...4 SN76489 PSG...6 MIDI Mapping YM2612...8 YM2612: Global Parameters...8 YM2612:

More information

MANUAL v.1c CONTACT MORE THAN LOGIC. UNITING ART + ENGINEERING.

MANUAL v.1c CONTACT MORE THAN LOGIC. UNITING ART + ENGINEERING. MANUAL v.1c MORE THAN LOGIC. UNITING ART + ENGINEERING. CONTACT email: info@meris.us phone: 747.233.1440 website: www.meris.us TABLE OF CONTENTS SECTION 1 PG. 1 FRONT PANEL CONTROLS SECTION 2 PG. 2-4 GLOBAL

More information

Features, Benefits, and Operation

Features, Benefits, and Operation Features, Benefits, and Operation 2013 Decibel Eleven Features, Benefits, and Operation Contents Introduction... 2 Features... 2 Top Panel Controls... 3 Operation Basics... 4 Connections... 5 Rear Panel

More information

VK-1 Viking Synthesizer

VK-1 Viking Synthesizer VK-1 Viking Synthesizer 1.0.2 User Manual 2 Overview VK-1 is an emulation of a famous monophonic analog synthesizer. It has three continuously variable wave oscillators, two ladder filters with a Dual

More information

TABLE OF CONTENTS 1. MAIN PAGE 2. EDIT PAGE 3. LOOP EDIT ADVANCED PAGE 4. FX PAGE - LAYER FX 5. FX PAGE - GLOBAL FX 6. RHYTHM PAGE 7.

TABLE OF CONTENTS 1. MAIN PAGE 2. EDIT PAGE 3. LOOP EDIT ADVANCED PAGE 4. FX PAGE - LAYER FX 5. FX PAGE - GLOBAL FX 6. RHYTHM PAGE 7. Owner s Manual OWNER S MANUAL 2 TABLE OF CONTENTS 1. MAIN PAGE 2. EDIT PAGE 3. LOOP EDIT ADVANCED PAGE 4. FX PAGE - LAYER FX 5. FX PAGE - GLOBAL FX 6. RHYTHM PAGE 7. ARPEGGIATOR 8. MACROS 9. PRESETS 10.

More information

Table of contents. Saving and Loading Data...65 Saving to internal memory...65 Loading from internal memory...65 Import...65

Table of contents. Saving and Loading Data...65 Saving to internal memory...65 Loading from internal memory...65 Import...65 E 1 Table of contents Introduction... 3 Main Features... 3 Quick Start... 4 Getting ready to play...4 Selecting and playing sounds...4 Selecting a program... 4 Using the full-size keyboard or a Kaoss Pad

More information

PRODUCT SUPPORT. (516) USER (8737) Fax: (516) Triton Series Products

PRODUCT SUPPORT. (516) USER (8737) Fax: (516) Triton Series Products PRODUCT SUPPORT (516) 333 - USER (8737) product_support@korgusa.com Fax: (516) 333-9108 Triton Series Products Basic Guidelines for Setting Controller Assignments The Triton Keyboards and Triton Rack feature

More information

Ample China Pipa User Manual

Ample China Pipa User Manual Ample China Pipa User Manual Ample Sound Co.,Ltd @ Beijing 1 Contents 1 INSTALLATION & ACTIVATION... 7 1.1 INSTALLATION ON MAC... 7 1.2 INSTALL SAMPLE LIBRARY ON MAC... 9 1.3 INSTALLATION ON WINDOWS...

More information

Owner s Manual. Page 1 of 23

Owner s Manual. Page 1 of 23 Page 1 of 23 Installation Instructions Table of Contents 1. Getting Started! Installation via Connect! Activation with Native Instruments Service Center 2. Pulse Engines Page! Pulse Engine Layers! Pulse

More information

ENSEMBLE String Synthesizer

ENSEMBLE String Synthesizer ENSEMBLE String Synthesizer by Max for Cats (+ Chorus Ensemble & Ensemble Phaser) Thank you for purchasing the Ensemble Max for Live String Synthesizer. Ensemble was inspired by the string machines from

More information

Contents. Parameter Guide. Arpeggio Program Parameters Analog Part Digital Part Effects Pattern Sequencer...

Contents. Parameter Guide. Arpeggio Program Parameters Analog Part Digital Part Effects Pattern Sequencer... Parameter Guide Contents Program Parameters....................................... 2 Program Edit............................................. 2 Part Edit.................................................

More information

Spider Valve MkII. Advanced Guide Addendum Spider FX Infusion (Firmware version 1.50, or later) Spider Valve MkII 112, 212 and HD100

Spider Valve MkII. Advanced Guide Addendum Spider FX Infusion (Firmware version 1.50, or later) Spider Valve MkII 112, 212 and HD100 Spider Valve MkII Advanced Guide Addendum Spider FX Infusion (Firmware version 1.50, or later) Spider Valve MkII 112, 212 and HD100 Electrophonic Limited Edition Table of Contents Overview... 1 1 Spider

More information

Square I User Manual

Square I User Manual Square I User Manual Copyright 2001 rgcaudio Software. All rights reserved. VST is a trademark of Steinberg Soft- und Hardware GmbH Manual original location: http://web.archive.org/web/20050210093127/www.rgcaudio.com/manuals/s1/

More information

Effect Gizmo. User s Manual. RJM Music Technology, Inc.

Effect Gizmo. User s Manual. RJM Music Technology, Inc. Effect Gizmo User s Manual RJM Music Technology, Inc. Effect Gizmo User s Manual Version 1.0 April 27, 2009 RJM Music Technology, Inc. 2525 Pioneer Ave. Suite 1 Vista, CA 92081 +1-760-597-9450 email:

More information

MP-201 Multi-Pedal Manual. Firmware v2.0 Addendum

MP-201 Multi-Pedal Manual. Firmware v2.0 Addendum This document provides information about the features and menu items which are new in MP-201 firmware version 2.0. For a more complete description of the various channel modes and functions, please read

More information

Helm Manual. v Developed by: Matt Tytel

Helm Manual. v Developed by: Matt Tytel Helm Manual v0.9.0 Developed by: Matt Tytel Table of Contents General Usage... 5 Default Values... 5 Midi Learn... 5 Turn a Module On and Of... 5 Audio Modules... 6 OSCILLATORS... 7 1. Waveform selector...

More information

If you have just purchased Solid State Symphony, thank-you very much!

If you have just purchased Solid State Symphony, thank-you very much! If you have just purchased Solid State Symphony, thank-you very much! Before you do anything else- Please BACK UP YOUR DOWNLOAD! Preferably on DVD, but please make sure that it s someplace that can t be

More information

KIRNU - CREAM MOBILE Kirnu Interactive

KIRNU - CREAM MOBILE Kirnu Interactive KIRNU - CREAM MOBILE Kirnu Interactive www.kirnuarp.com 1 Top elements Song selection MIDI in/out channel Status Messages Loading/Saving track presets Panic button MIDI learn Global section Track section

More information

ChordPolyPad Midi Chords Player iphone, ipad Laurent Colson

ChordPolyPad Midi Chords Player iphone, ipad Laurent Colson ChordPolyPad 1 ChordPolyPad Midi Chords Player iphone, ipad Laurent Colson 1. ipad overview... 2 2. iphone overview... 3 3. Preset manager... 4 4. Save preset... 5 5. Midi... 6 6. Midi setup... 7 7. Pads...

More information

MIDI realtime parameters and effects

MIDI realtime parameters and effects 19 MIDI realtime parameters and effects Introduction For each MIDI track, you can set up a number of track parameters and MIDI effects. These affect how the MIDI data is played back, transforming MIDI

More information

TURN2ON BLACKPOLE STATION POLYPHONIC SYNTHESIZER MANUAL. version device by Turn2on Software

TURN2ON BLACKPOLE STATION POLYPHONIC SYNTHESIZER MANUAL. version device by Turn2on Software MANUAL version 1.2.1 device by Turn2on Software http://turn2on.ru Introduction Blackpole Station is a new software polyphonic synthesizer for Reason Propellerhead. Based on 68 waveforms in 3 oscillators

More information

CHAPTER 7 1 SOUND. Effects. Level

CHAPTER 7 1 SOUND. Effects. Level Editing Effects: Chapter 7 CHAPTER 7 EDITING EFFECTS ABOUT SIGNAL PROCESSING TIP: The built-in effects processor of the QS6 is similar to that of the Alesis QuadraVerb 2, capable of generating multiple,

More information

Owners Manual LFO 1 AND 2 OSCILLATORS 1 AND 2 MIXER FILTER ENVELOPE 1 AMPLIFIER OSC 1 1 & 2 DEMO COMPARE ENVELOPE 2 FILTER PROGRAM MIDI RX CH

Owners Manual LFO 1 AND 2 OSCILLATORS 1 AND 2 MIXER FILTER ENVELOPE 1 AMPLIFIER OSC 1 1 & 2 DEMO COMPARE ENVELOPE 2 FILTER PROGRAM MIDI RX CH Owners Manual LFO 1 AND 2 OSCILLATORS 1 AND 2 MIXER FILTER ENVELOPE 1 AMPLIFIER OSC 1 1 & 2 PITCH B/ MOD D AT/ BTH MOD VELOCITY 0 10 0 DATA 10 VOLUME PORTAMENTO CHORUS / DIST ARPEGGIO PANNING 0 10 0 10

More information

Table of Contents Insert Effect size1

Table of Contents Insert Effect size1 E 1 Table of Contents Table of Contents Overview... 1 Insert Effects... 1 Effect Size... 2 Effect Input/Output... 2 Grouping... 3 Master Effects... 3 Program... 4 Program - Single/Double OSC mode... 4

More information

Quick Start. Overview Blamsoft, Inc. All rights reserved.

Quick Start. Overview Blamsoft, Inc. All rights reserved. 1.0.1 User Manual 2 Quick Start Viking Synth is an Audio Unit Extension Instrument that works as a plug-in inside host apps. To start using Viking Synth, open up your favorite host that supports Audio

More information

ETHERA EVI MANUAL VERSION 1.0

ETHERA EVI MANUAL VERSION 1.0 ETHERA EVI MANUAL VERSION 1.0 INTRODUCTION Thank you for purchasing our Zero-G ETHERA EVI Electro Virtual Instrument. ETHERA EVI has been created to fit the needs of the modern composer and sound designer.

More information

OCS-2 User Documentation

OCS-2 User Documentation OCS-2 User Documentation nozoid.com 1/17 Feature This is the audio path wired inside the synthesizer. The VCOs are oscillators that generates tune The MIX allow to combine this 2 sound sources into 1 The

More information

Solo Mode. Chords Mode

Solo Mode. Chords Mode Indiginus The Mandolin has been designed to help you create realistic mandolin parts easily, using both key velocity switching as well as momentary key switches to control articulations and chords. The

More information

Performance Editor Essential Owner s Manual

Performance Editor Essential Owner s Manual Performance Editor Essential Owner s Manual Copying of the commercially available music sequence data and/or digital audio files is strictly prohibited except for your personal use. The software and this

More information

REPLIKA SOUND GUITAR LIBRARY : ELECTRIC GUITAR v7 FEATURE GUIDE

REPLIKA SOUND GUITAR LIBRARY : ELECTRIC GUITAR v7 FEATURE GUIDE REPLIKA SOUND GUITAR LIBRARY : ELECTRIC GUITAR v7 FEATURE GUIDE 1 TABLE OF CONTENTS Important (Requirements) 3 MIDI Requirements 3 Pack Contents 3 Main Interface 4 Articulation Key Switches 5 Articulation

More information

Solo Mode. Strum Mode

Solo Mode. Strum Mode Indiginus Renegade Acoustic Guitar has been designed to help you create realistic acoustic guitar parts easily, using both key velocity switching as well as momentary key switches to control articulations

More information

Manual. Powered by RPCX

Manual. Powered by RPCX Powered by RPCX Manual WELCOME In the Rob Papen world of synthesis there was one type of synthesizer missing A synthesizer that presents all its controls and features in a single window. The current Rob

More information

Contents. Basic Operation... 3 EFFECT... 5 MENU... 24

Contents. Basic Operation... 3 EFFECT... 5 MENU... 24 Parameter Guide * Company names and product names appearing in this document are registered trademarks or trademarks of their respective owners. 2018 Roland Corporation 01 Contents Basic Operation...........................................

More information

MMO-4 User Documentation

MMO-4 User Documentation MMO-4 User Documentation nozoid.com This is a preliminary documentation 1/9 Feature This is the audio path wired inside the synthesizer. Modulation CV are routed to modulation fader in a digital matrix.

More information

1.TRANSMITTED DATA. n : MIDI Channel (0~15) vv: Value

1.TRANSMITTED DATA. n : MIDI Channel (0~15) vv: Value 1.TRANSMITTED DATA KORG Z1 MIDI Implementation Revision 1.0 (1997.9.12) 1-1 CHANNEL MESSAGES [H]:Hex, [D]:Decimal +--------+---------+-------------+--------------------------------------+ Status Second

More information

ÂØÒňΠGuitar synthesizer July 10, 1995

ÂØÒňΠGuitar synthesizer July 10, 1995 GR-1 ÂØÒňΠGuitar synthesizer July 10, 1995 Supplemental Notes MIDI Sequencing with the GR-1 This is an application guide for use with the GR-1 and an external MIDI sequencer. This guide will cover MIDI

More information

CONTENTS. Contents. MIDI Tutorial Introduction How MIDI Ports Are Used MIDI Messages... 10

CONTENTS. Contents. MIDI Tutorial Introduction How MIDI Ports Are Used MIDI Messages... 10 X-Station manual V1.0.qxd 12/05/04 16:14 Page 1 CONTENTS Contents Introduction... 2 Using This Manual... 2 MIDI Controller Section Main Features... 2 Audio Section Main Features... 2 Conventions used in

More information

2017 Yonac Inc. Owner s Manual

2017 Yonac Inc. Owner s Manual 2017 Yonac Inc. Owner s Manual Congratulations and Thank You for choosing KASPAR Supersynthesizer. As one of the pioneers of ios music, Yonac are proud to introduce our latest generation synthesis and

More information

CA48 MIDI Settings Manual MIDI Settings

CA48 MIDI Settings Manual MIDI Settings The term MIDI is an acronym for Musical Instrument Digital Interface, an international standard for connecting musical instruments, computers, and other devices to allow the exchange of performance data.

More information

There are 16 waveforms to choose from. The full list of waveforms can be found on page 8.

There are 16 waveforms to choose from. The full list of waveforms can be found on page 8. INSTRUCTIN MANUAL 1 Contents Contents 0 Functions 2 Waveform Select 2 Filter Type 2 Filter/Pitch Envelope 2 Amplitude Envelope 3 LF (Low Frequency scillator) Waveform Select 3 LF (Low Frequency scillator)

More information

Prophet '08. Operation Manual

Prophet '08. Operation Manual Prophet '08 Operation Manual Prophet '08 Operation Manual Version 1.1 March 2008 Dave Smith Instruments 1590 Sylvaner Avenue St. Helena, CA 94574 USA 2008 Dave Smith Instruments www.davesmithinstruments.com

More information

Matthias Klag, Michael Ruf Revision and quality control: Cristina Bachmann, Heiko Bischoff, Christina Kaboth, Insa Mingers, Sabine Pfeifer, Kevin

Matthias Klag, Michael Ruf Revision and quality control: Cristina Bachmann, Heiko Bischoff, Christina Kaboth, Insa Mingers, Sabine Pfeifer, Kevin 1 Operation Manual Matthias Klag, Michael Ruf Revision and quality control: Cristina Bachmann, Heiko Bischoff, Christina Kaboth, Insa Mingers, Sabine Pfeifer, Kevin Quarshie, Benjamin Schütte This PDF

More information

Get t ing Started. Adaptive latency compensation: Audio Interface:

Get t ing Started. Adaptive latency compensation: Audio Interface: Get t ing Started. Getting started with Trueno is as simple as running the installer and opening the plugin from your favourite host. As Trueno is a hybrid hardware/software product, it works differently

More information

K-Switch User Manual v1.1

K-Switch User Manual v1.1 K-Switch User Manual v1.1 Features and Functionality Overview 8 Switches: 4 Virtual Footswitches for controlling amplifier functions 4 Effect Loops for inserting effect units into a signal chain. Virtual

More information

1 - Mode Section This section contains the Performance, Program, Finder / Demo, Compare, Global, and Write buttons.

1 - Mode Section This section contains the Performance, Program, Finder / Demo, Compare, Global, and Write buttons. CONTENTS FRONT PANEL... 2 REAR PANEL... 3 SETTING UP... 4 APPLICATIONS-ADVANCED... 5 APPLICATIONS-BASIC... 4 ABOUT ANALOGUE SYNTHESIS... 6 NOVATIONISH... 1 4 SOUNDS-PROGRAMS & PERFORMANCES... 1 5 SELECTING

More information

REPLIKA SOUND GUITAR LIBRARY : BASS GUITAR v7 FEATURE GUIDE

REPLIKA SOUND GUITAR LIBRARY : BASS GUITAR v7 FEATURE GUIDE REPLIKA SOUND GUITAR LIBRARY : BASS GUITAR v7 FEATURE GUIDE 1 TABLE OF CONTENTS Important (Requirements) 3 Library Size 3 Pack Contents 3 Main Interface 4 Articulation Key Switches 5 Articulation Descriptions

More information

TG500 MIDI DATA FORMAT

TG500 MIDI DATA FORMAT TG500 MIDI DATA FORMAT 1.Synthesizer mode 1. MIDI reception/transmission block diagram 1/2 ch ---- Voice Receive ch. VCE,PFM ch $FE ACTIVE SENSING $8n NOTE OFF

More information

TiaR c-x-f synth rev 09. complex X filter synthesizer. A brief user guide

TiaR c-x-f synth rev 09. complex X filter synthesizer. A brief user guide 1 Introduction TiaR c-x-f synth rev 09 complex X filter synthesizer A brief user guide by Thierry Rochebois The cxf synthesizer is a jsfx software synthesizer designed for Reaper. It can be downloaded

More information

Photone Sound Design Tutorial

Photone Sound Design Tutorial Photone Sound Design Tutorial An Introduction At first glance, Photone s control elements appear dauntingly complex but this impression is deceiving: Anyone who has listened to all the instrument s presets

More information

R E F E R E N C E M A N U A L ETHERA VERSION 2.0

R E F E R E N C E M A N U A L ETHERA VERSION 2.0 REFERENCE MANUAL ETHERA VERSION 2.0 INTRODUCTION Thank you for purchasing our Zero-G ETHERA - Cinematic Vocal Instrument. ETHERA is created to fit the needs of the modern composer and sound designer. ETHERA

More information

12HP. Frequency Modulation, signal input and depth control scaled in V/octave.

12HP. Frequency Modulation, signal input and depth control scaled in V/octave. Frequency Modulation, signal input and depth control scaled in V/octave. Frequency Offset, added to modulation sets the frequency of the sample rate conversion and convolution. Amplitude Modulation, signal

More information

The included VST Instruments

The included VST Instruments The included VST Instruments - 1 - - 2 - Documentation by Ernst Nathorst-Böös, Ludvig Carlson, Anders Nordmark, Roger Wiklander Additional assistance: Cecilia Lilja Quality Control: Cristina Bachmann,

More information

Nemesis MIDI Implementation

Nemesis MIDI Implementation Nemesis MIDI Implementation Parameter CC# Range Value Description Factory Delay Engine 1 0-23 Selects and loads delay effect engine (with all parameters) 0 Digital 1 Diffuse 2 Analog 3 Tape 4 Noise Tape

More information

MIDX Boss GT-1 - MIDI Implementation

MIDX Boss GT-1 - MIDI Implementation MIDX Boss GT-1 - MIDI Implementation Version: May 03 2018 V2.9 PC# 00 - PC# 98 - Change Patch Number (U01-U99) PRESET CC s RECALL/SELECT PATCH = CC# 4 (0-98) STORE TO PATCH = CC# 5 (0-98) STORE TO CURRENT

More information

Manual written by Alessio Santini and Simone Fabbri. Manual Version 1.0 (11/2015) Product Version 1.0 (11/2015)

Manual written by Alessio Santini and Simone Fabbri. Manual Version 1.0 (11/2015) Product Version 1.0 (11/2015) Cedits bim bum bam Manual written by Alessio Santini and Simone Fabbri. Manual Version 1.0 (11/2015) Product Version 1.0 (11/2015) www.k-devices.com - support@k-devices.com K-Devices, 2015. All rights

More information

User's Manual. ServoCenter 4.1. Volume 2: Protocol Reference. Yost Engineering, Inc. 630 Second Street Portsmouth, Ohio

User's Manual. ServoCenter 4.1. Volume 2: Protocol Reference. Yost Engineering, Inc. 630 Second Street Portsmouth, Ohio ServoCenter 4.1 Volume 2: Protocol Reference Yost Engineering, Inc. 630 Second Street Portsmouth, Ohio 45662 www.yostengineering.com 2002-2009 Yost Engineering, Inc. Printed in USA 1 Table of Contents

More information

PERFORM-VK. Ultimate Mic Stand-Mount Vocal Processor for Studio-Quality Sound with Expandable Effects and Keyboard I/O

PERFORM-VK. Ultimate Mic Stand-Mount Vocal Processor for Studio-Quality Sound with Expandable Effects and Keyboard I/O PERFORM-VK Ultimate Mic Stand-Mount Vocal Processor for Studio-Quality Sound with Expandable Effects and Keyboard I/O 2 PERFORM-VK User Manual Table of Contents Important Safety Instructions... 3 Legal

More information

REPLIKA SOUND GUITAR LIBRARY : BASS GUITAR v7 USER MANUAL

REPLIKA SOUND GUITAR LIBRARY : BASS GUITAR v7 USER MANUAL REPLIKA SOUND GUITAR LIBRARY : BASS GUITAR v7 USER MANUAL 1 TABLE OF CONTENTS Introduction 3 Important (Requirements) 4 MIDI Requirements 4 Pack Contents 4 Installation 5 Main Interface 6 Articulation

More information

BLOQ FOR KONTAKT 5 - USER MANUAL 1.0 by Sharooz Raoofi

BLOQ FOR KONTAKT 5 - USER MANUAL 1.0 by Sharooz Raoofi BLOQ FOR KONTAKT 5 - USER MANUAL 1.0 by Sharooz Raoofi IMPORTANT: Bloq does not include Kontakt 5. You will need to own or purchase the full software from Native Instruments. http://www.native-instruments.com/en/products/komplete/samplers/kontakt-5/

More information

Technical Recording Data

Technical Recording Data The sound of EPICA is rich, full and 'Real', its presets just fit into your projects ready to go. I have always found that virtual synths need a lot of work to make them fit into mixes, to my ears they

More information

ROTRONIC HygroClip Digital Input / Output

ROTRONIC HygroClip Digital Input / Output ROTRONIC HygroClip Digital Input / Output OEM customers that use the HygroClip have the choice of using either the analog humidity and temperature output signals or the digital signal input / output (DIO).

More information

Owner s Guide. DB-303 Version 1.0 Copyright Pulse Code, Inc. 2009, All Rights Reserved

Owner s Guide. DB-303 Version 1.0  Copyright Pulse Code, Inc. 2009, All Rights Reserved Owner s Guide DB-303 Version 1.0 www.pulsecodeinc.com/db-303 Copyright Pulse Code, Inc. 2009, All Rights Reserved INTRODUCTION Thank you for purchasing the DB-303 Digital Bass Line. The DB-303 is a bass

More information

the blooo Software Synthesizer Version by Björn Full Bucket Music

the blooo Software Synthesizer Version by Björn Full Bucket Music the blooo Software Synthesizer Version 2.1 2010 2017 by Björn Arlt @ Full Bucket Music http://www.fullbucket.de/music VST is a trademark of Steinberg Media Technologies GmbH Windows is a registered trademark

More information

Aalto Quickstart version 1.1

Aalto Quickstart version 1.1 Aalto Quickstart version 1.1 Welcome to Aalto! This quickstart guide assumes that you are familiar with using softsynths in your DAW or other host program of choice. It explains how Aalto's dial objects

More information

Matrix-12/Xpander MIDI Specification

Matrix-12/Xpander MIDI Specification Matrix-12/Xpander MIDI Specification image courtesy of http://www.soundofmusic.se Note: This document is a rework of three old plain text files dealing with the MIDI spec of the Xpander/Matrix-12. http://machines.hyperreal.org/manufacturers/oberheim/xpander.matrix-

More information

User Guide English 1

User Guide English 1 User Guide English 1 User Guide Introduction Box Contents HeadRush Gigboard USB Cable Power Adapter Software Download Card Quickstart Guide Safety & Warranty Manual Support For the latest information about

More information

Congratulations on purchasing Molten MIDI 5 by Molten Voltage

Congratulations on purchasing Molten MIDI 5 by Molten Voltage OWNER S MANUAL Congratulations on purchasing Molten MIDI 5 by Molten Voltage Molten MIDI 5 is designed to control the Digitech Whammy 5. When configured for Whammy & Clock output, Molten MIDI 5 also sends

More information

PI L SQUARED MIDI powered, duophonic Synth square wave synthesis digital & analog filter User Manual

PI L SQUARED MIDI powered, duophonic Synth square wave synthesis digital & analog filter User Manual PI L SQUARED MIDI powered, duophonic Synth square wave synthesis digital & analog filter User Manual Ploytec GmbH (PL2) Synthesizer - English Manual - Version 1.2, last revised: Dezember 2013 2 3 Disclaimer

More information

MANUAL ADDENDUM v2.3

MANUAL ADDENDUM v2.3 MANUAL ADDENDUM v2.3 EWI4000s Manual Addendum v2.3 1 About This Addendum The EWI4000s operating system is upgradeable and allows us to add new features and make changes to existing features after it has

More information

Safety. Safety Instructions. Caution

Safety. Safety Instructions. Caution Basics Manual Safety Safety Instructions 1 Read these instructions. 2 Keep these instructions. 3 Heed all warnings. 4 Follow all instructions. 5 Do not use this apparatus near water. 6 Clean only with

More information

DREAM DSP LIBRARY. All images property of DREAM.

DREAM DSP LIBRARY. All images property of DREAM. DREAM DSP LIBRARY One of the pioneers in digital audio, DREAM has been developing DSP code for over 30 years. But the company s roots go back even further to 1977, when their founder was granted his first

More information

SYSTEM-100 PLUG-OUT Software Synthesizer Owner s Manual

SYSTEM-100 PLUG-OUT Software Synthesizer Owner s Manual SYSTEM-100 PLUG-OUT Software Synthesizer Owner s Manual Copyright 2015 ROLAND CORPORATION All rights reserved. No part of this publication may be reproduced in any form without the written permission of

More information

the qyooo VST Polyphonic Synthesizer Version by Björn Full Bucket Music https://www.fullbucket.de/music

the qyooo VST Polyphonic Synthesizer Version by Björn Full Bucket Music https://www.fullbucket.de/music the qyooo VST Polyphonic Synthesizer Version 1.0 2016-2017 by Björn Arlt @ Full Bucket Music https://www.fullbucket.de/music Additional Presets by Krezie Sounds http://www.kreziesounds.com/ VST is a trademark

More information

User Guide. English. Manual Version 1.2.1

User Guide. English. Manual Version 1.2.1 User Guide English Manual Version 1.2.1 Table of Contents Introduction... 3 Box Contents... 3 Support... 3 Features... 4 Top Panel... 4 Rear Panel... 5 Setup... 7 Adjusting Settings... 16 Overview... 16

More information

the qyooo Polyphonic Synthesizer Version by Björn Full Bucket Music https://www.fullbucket.de/music

the qyooo Polyphonic Synthesizer Version by Björn Full Bucket Music https://www.fullbucket.de/music the qyooo Polyphonic Synthesizer Version 1.1 2016-2018 by Björn Arlt @ Full Bucket Music https://www.fullbucket.de/music Additional Presets by Krezie Sounds http://www.kreziesounds.com/ VST is a trademark

More information

What controller messages are sent using the knobs and buttons from the EA-1 and ER-1?

What controller messages are sent using the knobs and buttons from the EA-1 and ER-1? EA-1 - Electribe A Analog Modeling Synth FAQs What MIDI messages do the knobs transmit? What controller messages are sent using the knobs and buttons from the EA-1 and ER-1? ElecTribe EA-1/ER-1(and mkii)

More information

Supplemental Notes April 29, 1996 SN08 V1.0

Supplemental Notes April 29, 1996 SN08 V1.0 Supplemental Notes April 29, 1996 SN08 V1.0 Roland JV Master Class: The ABC s of Editing Tones & Performances AS SEEN IN KEYBOARD MAGAZINE There s a lot more to Roland s JV series instruments than just

More information

Arrange Mode STRG SPLIT FRET SPLIT PICK SPLIT 1 and E D T SEGM ARRANGE NAME Segmentparameter PROGRAM...

Arrange Mode STRG SPLIT FRET SPLIT PICK SPLIT 1 and E D T SEGM ARRANGE NAME Segmentparameter PROGRAM... TABLE OF CONTENTS Features of the AON... 8 How to use the Hold Pedal... 9 How to use the Mono Input... 9 How to use the optional sound module... First settings... How to install the guitar interface and

More information

malletkat Pro / Express v6 TABLE OF CONTENTS

malletkat Pro / Express v6 TABLE OF CONTENTS malletkat Pro / Express v6 TABLE OF CONTENTS Chapter One: malletkat Pro Overview page 1-4 MIDI Controllers page 1 Reassignments page 1 Controller Inputs page 2 Setups page 3 Pad Training page 4 Dynamic

More information

Matthias Klag, Michael Ruf Cristina Bachmann, Heiko Bischoff, Christina Kaboth, Insa Mingers, Matthias Obrecht, Sabine Pfeifer, Benjamin Schütte,

Matthias Klag, Michael Ruf Cristina Bachmann, Heiko Bischoff, Christina Kaboth, Insa Mingers, Matthias Obrecht, Sabine Pfeifer, Benjamin Schütte, Operation Manual Matthias Klag, Michael Ruf Cristina Bachmann, Heiko Bischoff, Christina Kaboth, Insa Mingers, Matthias Obrecht, Sabine Pfeifer, Benjamin Schütte, Marita Sladek This PDF provides improved

More information

PG-8X 2.0. Users Manual

PG-8X 2.0. Users Manual PG-8X 2.0 Users Manual by MLVST (Martin Lueders) 2016 Introduction The PG- 8X is a virtual synthesizer, inspired by the Roland JX-8P with the PG-800 programmer. The synth architecture is a standard 2-

More information

Matthias Klag, Michael Ruf Cristina Bachmann, Heiko Bischoff, Christina Kaboth, Insa Mingers, Matthias Obrecht, Sabine Pfeifer, Benjamin Schütte,

Matthias Klag, Michael Ruf Cristina Bachmann, Heiko Bischoff, Christina Kaboth, Insa Mingers, Matthias Obrecht, Sabine Pfeifer, Benjamin Schütte, Matthias Klag, Michael Ruf Cristina Bachmann, Heiko Bischoff, Christina Kaboth, Insa Mingers, Matthias Obrecht, Sabine Pfeifer, Benjamin Schütte, Marita Sladek This PDF provides improved access for vision-impaired

More information

OC 10 Crocodile Tail Loop Setup Utilising Tuner Out And One Loop

OC 10 Crocodile Tail Loop Setup Utilising Tuner Out And One Loop KEY All Red Lines Are Cables Taking Signal Into OC10 SETUP 1 All Green Lines Are Cables Taking Signal Out Of OC10 OC 10 Crocodile Tail Loop Setup Utilising Tuner Out And One Loop The above setup is using

More information

MAIA DUAL SYNTHESIZER OPERATION MANUAL. version 1.0.2

MAIA DUAL SYNTHESIZER OPERATION MANUAL. version 1.0.2 MAIA DUAL SYNTHESIZER OPERATION MANUAL version 1.0.2 Table of Contents 1. Structure of Maia 3 2. Front Panel overview 4 3. Using Maia 5 3.1 Patch Controls 6 3.2 Controlling parameters 6 3.3 Global performance

More information

D O C U M E N T A T I O N

D O C U M E N T A T I O N DOCUMENTATION Introduction This is the user manual for Enkl - Monophonic Synthesizer, developed by Klevgränd produktion. The synthesizer comes in two versions an ipad app and a Desktop plugin (AU & VST).

More information

SAMPLE LIBRARY FOR KONTAKT

SAMPLE LIBRARY FOR KONTAKT SAMPLE LIBRARY FOR KONTAKT Congratulations, and thank-you for your support! Indiginus Renegade is an electric guitar sample library with a bit of an attitude. Features like slides, hammer-ons, bends, trills,

More information

8/16-Voice Polyphonic Synthesizer

8/16-Voice Polyphonic Synthesizer 8/16-Voice Polyphonic Synthesizer User s Guide Version 1.0 May 2017 Dave Smith Instruments LLC 1527 Stockton Street, 3rd Floor San Francisco, CA 94133 USA 2017 Dave Smith Instruments LLC www.davesmithinstruments.com

More information

CONTENTS / INTRODUCTION

CONTENTS / INTRODUCTION CONTENTS / INTRODUCTION CONTENTS FRONT PANEL... 2 REAR PANEL... 3 SETTING UP... 4 APPLICATIONS-BASIC... 4 APPLICATIONS-ADVANCED... 5 ABOUT ANALOGUE SYNTHESIS... 6 NOVATIONISH... 14 SOUNDS-PROGRAMS & PERFORMANCES...

More information

Mono/Fury. VST Software Synthesizer. Version by Björn Full Bucket Music

Mono/Fury. VST Software Synthesizer. Version by Björn Full Bucket Music Mono/Fury VST Software Synthesizer Version 1.0 2010-2012 by Björn Arlt @ Full Bucket Music http://www.fullbucket.de/music VST is a trademark of Steinberg Media Technologies GmbH Mono/Poly is a registered

More information

JUNO-106. PLUG-OUT Software Synthesizer Owner s Manual 01A. Copyright 2017 ROLAND CORPORATION

JUNO-106. PLUG-OUT Software Synthesizer Owner s Manual 01A. Copyright 2017 ROLAND CORPORATION JUNO-106 PLUG-OUT Software Synthesizer Owner s Manual Copyright 2017 ROLAND CORPORATION 01A Introduction When using the JUNO-106 for the first time, you must specify the MIDI Input/Output setting in the

More information