User Tools

Site Tools


korg_electribe_es-1

This is an old revision of the document!


Korg Electribe ES-1

Loading Samples

Loading samples from a SmartMedia card has a few restrictions:

  • Files need to be named in order, EG: 00.WAV 01.WAV 02.WAV 03.WAV 04.WAV (extension can be upper- or lowercase)
  • 100 files max in the root directory. Dunno about using subdirectories.
  • 8- or 16-bit, 32KHz. .WAV or .AIFF. If you use a rate other than 32KHz playback speed will change.
  • You can format the card in the ES-1. It's FAT-12.
  • If you get Er.3 that means you're out of space.

Converting

With Audacity:

  • Select all audio, Tracks > Resample… select or enter '32000'.
  • If you want to make it mono: Tracks > Mix > Mix Stereo Down to Mono.
  • File > Export > Export as WAV and set encoding to 'Signed 16-bit PCM' or 'Unsigned 8-bit PCM'

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

  • -r is sample rate
  • -c is channels
  • -b is bit depth

Renaming

See Also

korg_electribe_es-1.1672655005.txt.gz · Last modified: 2023/01/02 21:23 by rjt