Free Wavetables

Introducing Nuuzeit Instruments Warp

Warp’s onboard Wavetable includes one I created. Please check it out.

3 Likes

Enhanced Wavetable Collections for purchasers of the paid Wavetable Pack

This is a free Wavetable collection for those who have purchased the paid Wavetable Pack.

Current Content

  • Hard PD [Collection based on Phase Distortion Synthesis with various effects]
  • RD Sweep [Random spectrum]
  • MVPS Collection [Multi Vector Phase Shaping Synthesis]
  • FlangeTwist Collection
  • Sin to Square Mod
  • Harmonic Transformation :new:

HT1

2 Likes

Wow these sound great , can’t wait to try them in my Waldorf iridium! Nice work :sunglasses:

1 Like
  • TFM with PWM

FM Wavetable using PWM waveform as modulation source
Normally, most of the FM synthesis used in Wavetable is Phase Modulation, but this is the original FM synthesis.

TFM with PWM

2 Likes

Free Wavetables Upadted

  • Added TFM Wavetables
  • Removed Morphing Waves for Sampler and additional wavetable download link

The download links provided in previously uploaded PDFs are no longer valid.
Re-download the latest version.

3 Likes

hey so this link just takes me to my gumroad page. I was also able to download the wavetables from your orginal link in the very top of this thread.

Thanks for reporting back.
This link is for those who have already downloaded Free Wavetables.

1 Like

These wavetables are my favorite instruments!!!

2 Likes

Oh ooops ! Anyways works great in my Waldorf iridium :sweat_smile:

1 Like

Enhanced Wavetable Collection updated.

Added Complex Modulation + Phaser
Added Jitter Lofi Collection :new:

CMP

3 Likes

Introduction to Transwave.

Free Wavetables is featured in a Transwave tutorial.

3 Likes

Tried out a bunch of your wavetables on the Iridium Core, and man, they really bring a lot of fun to the table. Thanks for making them :slight_smile:

1 Like

Anyone try these in the Waldorf M?

I don’t know if M can handle Wav files, but the following process would be required.

From the M’s built-in Wavetables, I would guess that the number of frames consists of 64 waveforms. The Wavetable used in most plug-in Wavetable synths consists of 256 waveforms, so Wavetables needs to be cut or thinned out.

1 Like

To reduce file size, I have removed Free Wavetables with less than 1024samples per cycle.
If you wish to use Free Wavetables with Ableton Wavetable or other software, please use DigiChain by @brian3kb to convert them.

1 Like

Thank you for the article!

A small note: When turning de-click off in settings - be sure that input file sample rates all match the chosen ‘Working Sample Rate’ and ‘Target Sample Rate’.

This will ensure a click free output, as no sample rate interpolation will take place, which is what de-click takes care of.

1 Like

Thanks a lot.
I have added a note. :writing_hand:

1 Like

Scripts for batch editing Wavatable for some older hardware synths are now available.

3 Likes

Script for Octave

Script for batch waveform length conversion

WaveLength Converter.m (841 Bytes)
Convert any length waveform to waveform length note C2 for samplers such as Analog Rytm, Digitakt, etc.

Put the script and single cycle waveforms in the folder, run the script, and a new folder will be created, containing the converted files.

clear;
pkg load signal

#_______________________Enter any number you like.________________________________
NewLength = 734;       #[48kHz] C2 = 734, [44.1kHz] C2 = 674  Wavetable = 2048
foldername = 'Newlength Samples';  #Name of the folder to be created
lenName = '-C2'; #Change
Newfs = 48000 #Sampling Rate
Bit = 32 #BitsPerSample
#____________________________________________________________________________________

Files = dir('*.wav');
extension = '.wav';

cf = pwd;
mkdir(foldername);
df = fullfile(cf,foldername);

for n=1:length(Files)

[path,name, ext] = fileparts(Files(n).name);
[y,fs] = audioread(Files(n).name);

NewSample = interpft(y, NewLength);
NewName = [name,lenName,extension];

cd (df)
audiowrite(NewName,NewSample, Newfs,'BitsPerSample' , Bit, 'Quality', 100);
cd ../
end

If you load a short sample such as a drum sample and set the length of the waveform to be converted to 2048samples, you can use Wavetable as a drum machine in Tone2 Icarus.
It would be interesting to use it with monomachine.


Note C Length
Analog Rytm, Digitakt , Model:Samples[Sampling Rate :48kHz]

  • C1 = 1468
  • C2 = 734
  • C3 = 367

Octatrack[Sampling Rate :44.1kHz]

  • C1 = 1348
  • C2 = 674
  • C3 = 337

Wavetable Length
Most Wavetable synths = 2048
Ableton Wavetable = 1024

1 Like

You can convert Single Cycle Chord to Wavetable format.
You will lose the high frequencies of the sample, but if you set the octave of the synth to low, and combine it with the unison function, it will be useful for creating pad sounds.

Unison Chord Sound from Tone2 Icarus(AM Saw Wave)