Table of Contents

Korg Electribe ES-1

es-1.jpg Cool sampler and sequencer. Comes with lots of sounds, patterns, and songs built-in, and it's pretty fun just messing with those, or replacing the samples and hearing the existing patterns with new sounds.

Loading Samples

Loading samples from a SmartMedia card has a few restrictions:

Renaming

I use GPRename, which I have hooked into my file manager, so I can select a directory and launch it.

  1. Go to the 'Numerical' tab
  2. Set 'Add numbers starting at' to '0'
  3. Make sure 'increment by' is '1' (should be default)
  4. 'and after' field needs to have your file extension; so '.wav'
  5. Make sure 'Keep existing names' is set to 'No' (should be default)
  6. Hit 'Preview' to make sure things look right, then hit 'Rename' if they do.

It'd be nice to script the whole renaming and converting process, so I'll add a command line renaming guide at some point maybe.

Converting

With Audacity:

With FFmpeg:

With SoX (and Bash):

for file in *.wav; do sox $file -r 32000 -b [8|16] -c [1|2] [optional output directory/]$(basename $file); done

See Also