User Tools

Site Tools


getting_started_vividshaper

Welcome/Apps/VividShaper/Getting started

Getting started

Historical overview

One of the first Wavetable synthesizers was the PPG Wavecomputer, which was released in 1978 and had 30 different wavetables. It was followed a few years later by the Wave 2 (1981), Wave 2.2 (1982), and Wave 2.3 (1984). Each wave had the length of 256 samples (probably one byte per sample). A wavetable is a table of waves that can be looped through to give an evolving sound. The PPG Wave 2.3 had 30 different wavetables, each consisting of 64 waves (a total of 1920 waves). With 256 samples per wave, that required a memory of 480 kB.

PPG Wave 2.2. Image licensed under CC-BY-SA-2.0. Original source: https://www.flickr.com/photos/krunkwerke/sets/72157623332441453/with/4366765092/

In addition to these wavetables, the PPG had also an analogue low-pass filter, two ADSR envelopes, and one AD envelope generator. The envelopes could not only be used for the volume, but also to instruct the oscillator to cycle through a given wavetable. It had furthermore eight voices, each with two oscillators, where each oscillator could play a different wave.

In 1986, the US synth company Sequential released their Prophet VS synthesizer. This was marketed as a “vector synthesizer”, because it could mix between different waveforms using the built in waveform joystick. The actual synth engine core was however a wavetable synthesizer, consisting of 96 factory-preset 12-bit waveforms. These waves had the length of 128 samples. It wasn't really the wavetable part that made this synth unique, but its combination of digital waves and vector synthesis. Despite this novel approach, it wasn't very successful and the Sequential company was sold to Yamaha in 1987. Dave Smith who owned the company went on to start a new company known has Dave Smith Instruments.

One would think that Yamaha bought Sequential for its innovative idea of the Prophet VS, but it was Korg that actually did something with the “vector” synth idea. They borrowed the idea of vector synthesis and made their own Korg Wavestation synthesizer (released in 1990). The Korg Wavestation is more like an hybrid between a wavetable synthesizer and a rompler, that is a synth that can play back recorded samples. However, since it has the ability to smoothly walk through different waveforms by building sequences of sounds, it may be regarded as a wavetable synth and it can for sure operate as one if the waves are short enough,

Later, in 2002, Dave Smith released his first instrument after selling Sequential to Yamaha. It was called the Evolver and it was a real wavetable synthesizer. It had the same waves as the Prophet VS, plus 32 user waves that could be uploaded via MIDI. That allowed users to create their own waves and play them back.

It should be noted that there is some misconception around the term “wavetable”. Sometimes, it is referred to a set of waves that you can loop through, and sometimes it is just referred to a single wave. Sometimes, this is then referred to as a “single-cycle” wavetable. Today, a wavetable synthesizer is just the overall technique of using very short samples that either changes dynamically or are played statically where other effects are added like a subtractive synthesizer.

VividShaper introduction

Today, there are many software synthesizers that have adapted the concept of wavetable synthesis, including Native Instrument's Massive, Reason Studios Europa, and Serum from xfer records. However, they are all built around the idea of predefined wavetables that you can manipulate using various effects.

VividShaper is quite different. It is a wavetable AUv3 plugin synthesizer for macOS and iOS that borrows the idea from the early wavetable synthesizers that had only 128 samples per wave and with a number of waves to cycle through. However, instead of having only a fixed number of waves to choose from, VividShaper lets you program and modify your waves over time using the built in Lua programming language.

When you start the plugin for the first time, you will see a window with the Lua coding editor on the left side and a waves view on the right side.

There are only a few buttons that you can select. On the left side, there's a patch menu button that will allow you to load and save patches (either locally or to iCloud). The New button will remove anything you have written and start from the simple patch you see in the image.

-- Patch: New
wave[1] = VSSin(1,0)
vol[1] = gate

This patch creates a sinewave and sets the volume to 1 if gate is on. The variable gate is either 1 if the key is pressed or 0 if the key is released, so in this very simple example the volume is either on or off.

The Parse button is pressed when you have coded something new and want to use the new code. You can also reset the synth using the parse button (even if it is the same code). The View button will change the view of the editor and the graph (only editor, only graph view, editor left to graph, editor below graph). Finally, there is also a Help button. This button loads some text into the editor, telling which version you have and gives you a simple example.

Another simple Lua program may look like this:

-- Patch: A simple example
wave[1] = VSTriangle(1,0)
vol[1] = velocity*VSADSRE(1,1,0.8,3,0,gatetimeon,gatetimeoff)

This is a slightly more advanced example than the one you get when you press the New button. Let us go through this example in detail. On the first row, you see a comment saying “– Patch: A simple exampel”. You don't need to add this row, but it will always be added as the first row in the code when you save the patch anyway. The first row always tell the name of the patch (which is equal to the filename).

Each generator has eight oscillators, where each oscillator plays one wave. A wave consists of 128 samples and the wave[] array consists of eight such wave arrays, one for each oscillator. In other words, wave[1] corresponds to the wave of the first oscillator, wave[2] corresponds to the wave of the second oscillator, and so on.

On the second row, we will call the built in function VSTriangle(frequency,phase). This function will create a new wave of 128 samples (array) and store it to the first oscillator. The frequency is set to 1 Hz, meaning it will fill the 128 samples with one cycle of the triangle wave. If we change this to e.g. 2 Hz, we will fill the wave with 2 repeating triangle waves.

The term 'frequency' in this context refers to the number of cycles of the wave that fit into the 128-sample, not the pitch of the note that will be played. For example:

  • A frequency of 1 Hz means that the wave will be filled with exactly one complete cycle of the triangle wave.
  • Increasing the frequency to 2 Hz results in two complete cycles within the sample 128-sample space.
  • Higher frequencies will pack more cycles of the wave into the sample.
  • A frequency of 1.5 does not mean it will create 1.5 higher frequency at playback, but rather that the waveform will not complete two cycles, ending at a point which may give interesting timbre.

The phase is given in degrees (0-360) and is here set to zero. The 'phase' of 0 means the wave starts at its beginning, while adjusting the phase shifts the start point of the waveform cycle, which can create subtle changes int he sound when combined with other waves.

It is important to grasp these concepts. VSSin, VSSaw, VSTriangle all works the same, with one argument for frequency and one for phase. VSSquare has an additional argument for the width. Here is some additional examples:

  • wave[1] = VSTriangle(2,0) – This creates a wave form with two triangle waves within the 128 sample space
  • wave[1] = VSSaw(1,45) – This create a saw wave form with one saw wave, phase shifted 45 degrees

On the third row, we set the output volume using the Attack, Decay, Sustain, Release (ADSR) envelope (VSADSRE). This is then multiplied by the velocity of the note. The E stands for Exponential release. If you don't want exponential release but a linear release, you can use VSADSR instead. They take the same arguments. The arguments are as follows:

attack = 1    -- This tells the time it takes to reach the peak volume (in seconds) 
decay = 1     -- This tells the time it takes to drop from the peak volume to a sustain volume (in seconds)
sustain = 0.8 -- This sets the sustain volume (in the range from 0 to 1).
release = 3   -- This set the time it takes for the volume to drop to zero after the user released the key.
initlevel = 0 -- This tells the initial volume level when the envelope starts, i.e. when they key is pressed. Often set to zero.
 
vol[1] = VSADSRE(attack,decay,sustain,release,initlevel,gatetimeon,gatetimeoff)

The variables gatetimeon and gatetimeoff tells how long time it has been since the key was pressed down (gatetimeon) and released (gatetimeoff). When the key is released, the gatetimeon time freezes at that time point. This means we can sum together gatetimeon+gatetimeoff to get the total time from when the key was pressed down.

The volume output of VSADSRE is then stored to vol[1], which is the volume for the first oscillator. Since we have eight oscillators, we can store eight different volumes as well.

When you now play this simple patch, you will see the wave on the right side view:

Using more oscillators

Playing back just one oscillator gives a quite thin sound. If you want to get a more dynamic sound, you can add a second slightly detuned oscillator. Try out this code:

-- Patch: A simple example with two oscillators
wave[1] = VSTriangle(1,0)
wave[2] = wave[1]
vol[1] = VSADSRE(1,1,0.8,3,0,gatetimeon,gatetimeoff)
vol[2] = vol[1]
 
note[1] = notein + 0.01
note[2] = notein - 0.01
 
panning[1] = 0.25
panning[2] = 0.75
gvol = 0.5

Here, we have added another wave[2]. We have set it to the same wave form as wave[1] and we have chosen the volume (vol[2]) to be the same volume as for the first oscillator. Then, we can also set what note that should be played for each of the oscillators. The variable notein will tell the MIDI note number corresponds to the note being played. For instance, the MIDI note value 48 corresponds to C-4.

note[x] is an array corresponding to the notes being played for the eight oscillators (x is between 1-8). If we don't set note[x] explicitly, each oscillator will keep the default notein value. Hence, you don't have to set the note[] array if you don't want to change the note.

Given that notein=48, note[1] will be 47.99 and note[2] will be 48.01. Setting these two oscillators slightly detuned will create a beat effect, which you can read more about here:

https://en.wikipedia.org/wiki/Beat_(acoustics)

It is this technique that synthesizers use to create a more fatty sound. For instance, a supersaw sound is created by mixing several detuned sawtooth oscillators.

We can also set the panning of each oscillator, telling them if the sound should be played on the left speaker, the right speaker, or anything in between. This is done by setting the panning[x] array, which again is an array of eight values, one value for each oscillator. A panning value of 0 means left, a panning value of 1 means right, and consequently a panning value of 0.5 means in the middle.

Finally, we set the gvol variable to 0.5. This is the global volume that VividShaper sends to the DAW and the default value is 1. If we add more than one oscillator, it can be a good idea to lower the global volume. Otherwise, the total volume will be saturated.

Waves view

By default, the waves view always show the first wave (wave[1]). You can change this by setting the wavesview variable. For instance, by setting wavesview = 3, you will tell VividShaper to show wave[3] instead. You can also change the y-axis scale of the waves view, by setting the scaleview variable. The default value is set to 1, but if you set scaleview to e.g. scaleview=2, you will magnify the wave being plotted without changing the volume.

Finally, there's a text variable that will display anything that you set it to at the bottom of the view. This is great for debugging. In this example, text=gatetimeoff, telling how many seconds it has been since the key was released.

Other waveforms

We have so far used the VSTriangle waveform, but VividShaper also comes with a few other waveforms:

-- Wave generators
wave[x] = VSSin(frequency,phase)           -- Sine-wave. frequency=1 is base, phase is in degrees.
wave[x] = VSTriangle(frequency,phase)      -- Triangle-wave.
wave[x] = VSSaw(frequency,phase)           -- Sawtooth-wave.
wave[x] = VSSquare(frequency,phase,width)  -- Square-wave. Width is between 0 to 1.
wave[x] = VSNoise(seed)                    -- Random generated wave, given the seed integer.

VSSin and VSSaw takes the same arguments as VSTriangle. VSSquare has one extra argument to set the width of the square wave (between 0 to 1). VSNoise generates a random wave given the seed variable, where seed is an integer, e.g. VSNoise(32). If you want the VSNoise to generate new waves every time you call it, you can write VSNoise(tick). The variable tick counts the number of times the Lua code has been called from when it was initiated. Since it is incrementing every time, you will make sure to generate a new random wave.

Variational Autoencoder

A Variational Autoencoder (VAE) is a neural network that has been trained to send out the input as output. However, since the network has a middle layer that only consists of a few neurons, all the data that is sent through the network need to pass through this middle layer and therefore the network needs to represent every single input using only a few variables.

The input part of this network (everything before the middle layer) is called the encoder and the output part of the network (everything after the middle layer) is called the decoder. The middle layer is often called the “latent space” and could for instance consists of only two neurons. In other words, this is a kind of a dimensionality reduction. Once the network has been trained, it can be used to generate new output by setting the latent neurons explicitly.

VividShaper has a variational autoencoder that has been trained with over 4000 different waves, where the middle layer consists of two neurons. This means it can represent all these different waves with just two variables. However, it won't be able to replicate the input waves perfectly.

There are two functions that you can use. First, you can use the VSAutoencoder2() function to obtain the latent space variables. The output of these two variables are between -1 to 1, so you can see the output as a 2D map.

saw = VSSaw(1,0)
latent = VSAutoencoder2(saw)

Then you can feed in the latent variables to VSAutodecoder2() and generate a new wave given the coordinates in this 2D map.

In this example, we can see how the decoded sawtooth wave looks like and we also obtain the latent space coordinates by printing them. The volume has been set to vol=1 just to allow it to play constantly even when the note has been released. You may want to replace this vol with an ADSR-envelope instead, but it made it easier to make a screenshot to keep the volume on.

wave[1] = VSAutodecoder2(latent)

Using gatetimeon and gatetimeoff variables makes it possible to dynamically change the position of the latent space over time. For instance, you can let it spin around (like a record):

-- Circular movement in latent space
local t = gatetimeon + gatetimeoff
local radius = 1 -- Radius of circular motion
local x = radius * math.cos(t/5) -- Divide time by a factor for slower movement
local y = radius * math.sin(t/5)
wave[1] = VSAutodecoder2({x,y}) -- Generate waveform from latent space

The functions are called VSAutoencoder2 and VSAutodecoder2 since the latent space is two variables. There may be other auto encoder networks with a latent space having more dimensions in a future update.

Filter functions

The lowpass/bandpass/highpass filters work a little bit different from other apps. Instead of filtering the output from the oscillators, you can filter the wave itself. The wave filter function in VividSynths is a biquad filter. A biquad filter consists of five different coefficients and depending on how you set them you can create either a lowpass, bandpass, or a highpass filter.

wave[x] = VSBiquad(wave[x],biquadcoeff) 

It can be quite difficult to calculate how these coefficients should be set, so VividShaper comes with three functions for this purpose:

biquadcoeff = VSLowpass(cutoffFreq,resonance,notein)
biquadcoeff = VSBandpass(cutoffFreq,resonance,notein)
biquadcoeff = VSHighpass(cutoffFreq,resonance,notein)

A very important thing is that you need to provide each of these helper functions with the current note. If you play a note at a low frequency, you may actually play under the cutoffFreq so that no filter should be applied at all for a lowpass filter. That means the filter effect on the wave depends not only on the cutoff frequency and the resonance, but also on the playback frequency (i.e. the note).

A full example comes here:

-- Patch: Filter example
wave[1] = VSSaw(1,0)
vol[1] = VSADSRE(1,1,0.8,3,0,gatetimeon,gatetimeoff)
biquadcoeff = VSLowpass(300,1,notein)
wave[1] = VSBiquad(wave[1],biquadcoeff)

Setting the frequency as a function of time since gate on may give you some interesting sweeping filter effects.

Waveform manipulators

VividShaper comes with two different sorts of waveform manipulators. The first one is a wavefold effect. If the amplitude is e.g. 1.2, it is going over the limit with 0.2. The wavefold effect will then fold the waveform down again with the amount it was exceeding the limit: 1.0-0.2 = 0.8. This can result in some interesting harmonics.

This is how the wavefold function is called:

wave[1] = VSWavefold(wave[1],1.5)

The 1.5 coefficient means the wave should be multiplied with 1.5 first, then folded.

Another important function is a wave normalisation function. If the wave reaches above a given threshold (that we define), we can normalise the wave to a new value:

threshold = 1.0
normvalue = 1.0
wave[1] = VSNorm(wave[1],threshold,normvalue)

If the max amplitude of the wave is 1.5, this will divide the wave with 1.5 so that the new max amplitude is 1.0. However, if the max amplitude is below 1.0, it won't do anything. If we always want the wave to normalise to 1.0, even if the amplitude is lower, we can set the threshold to 0:

threshold = 0.0
normvalue = 1.0
wave[1] = VSNorm(wave[1],threshold,normvalue)

Math functions

Besides all the built in math functions that come with Lua, VividShaper also comes with some wave manipulating wave functions that you may find useful. These are:

-- Wave math operators - arguments can be either arrays or scalar factors
wave[x] = VSMul(wave1,wave2) -- Multiply element wise wave1 with wave2
wave[x] = VSMul(wave1,1.5)   -- Multiply element wise wave1 with 1.5
wave[x] = VSDiv(1,5,wave2)   -- Divide element wise 1.5 with wave2
wave[x] = VSAdd(wave1,wave2) -- Add element wise wave1 with wave2
wave[x] = VSSub(wave1,wave2) -- Subtract element wise wave1 with wave2

With these functions, you can either e.g. multiply a wave with a scalar value or a wave with another wave. These are very useful functions if you want to create an additive synth:

wave1 = VSSin(1,0)
wave1 = VSMul(wave1,0.7)
wave2 = VSSin(2,0)
wave2 = VSMul(wave2,0.3)
wave[1] = VSAdd(wave1,wave2)

Optimisation

Running all the eight generators may be CPU intensive but there are ways to optimise it. You can either choose to decrease the number of generators in use, by setting the variable generators to a value between 1 and 8.

generators = 1 -- This sets VividShaper to become a mono synth

You can also tell VividSynths how often it should run the Lua code. The default value is that the synth engine runs the Lua code after 512 samples have been played back. If the playback frequency is 48000 Hz, the Lua code will be executed 48000/512=93.75 times per second. That is a lot and sometimes not necessary. You can decrease this to e.g. running the Lua code after 1024 samples instead, changing the number of times it is executed to 46.875 times per second. This is done by setting the updatefreq variable:

updatefreq = 1024

You can also increase the speed. This variable can be set to the following values: 128, 256, 512, 1024, 2048, and 4096.

However, setting it to 128 means the Lua code is called 48000/128=375 times per second. That will put some demands on your CPU so test this carefully.

MIDI CC and other messages

Sometimes, it is very useful to obtain CC-messages so that you can manipulate the sound in realtime using an external MIDI controller. The array cc[x] gives you at each update the current values of all CC messages except CC message 0 which is not used. Hence, cc[1] gives you the message for CC 1, cc[20] gives you the message for CC 20, etc. The values you get are between 0 and 127. If you prefer to get them normalised between 0 and 1, you can use the array ncc[x] instead.

The variable velocity tells the current velocity of the note being played. By multiplying the volume output with velocity, you can make your patch velocity sensitive.

The variable tempo tells you the current tempo from the DAW, e.g. 120. A corresponding variable is beatpos for beat position.

Finally, the array prevvol[x] tells you the volumes of each oscillator when the gate flipped from off to on again. This can be useful information if you are making a monophonic synthesizer (generators=1) and want to start the ADSR envelopes initial volumes to the volume when the gate was turned on:

generators = 1
wave[1] = VSTriangle(1,0)
 
attack = 1
decay = 1
sustain = 0.8
release = 3
initlevel = prevvol[1]
vol[1] = VSADSR(attack, decay, sustain, release, initlevel, gatetimeon, gatetimeoff)
This website uses cookies. By using the website, you agree with storing cookies on your computer. Also you acknowledge that you have read and understand our Privacy Policy. If you do not agree leave the website.More information about cookies
getting_started_vividshaper.txt · Last modified: 2023/11/12 19:46 by lars