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.
Only downsides for me are that I can't freely play a sample across the notes of a connected MIDI controller, and that loading samples is a bit tedious.
Loading samples from a SmartMedia card has a few restrictions:
Er.3
when loading samples that means you're out of space.I use GPRename, which I have hooked into my file manager, so I can select a directory and launch it.
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.
With Audacity:
With FFmpeg:
…
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 depthDefault mapping for a keyboard is (copied from the manual):
Part | Note name | Note number |
---|---|---|
Sample 1 | C2 | 36 |
Sample 2 | D2 | 38 |
Sample 3 | E2 | 40 |
Sample 4 | F2 | 41 |
Sample 5 | G2 | 43 |
Sample 6A | C4 | 60 |
Sample 6B | C♯4 | 61 |
Sample 7A | F♯2 | 42 |
Sample 7B | A♯2 | 46 |
Slice Sample | B2 | 47 |
Audio In | A2 | 45 |
I would like to be able to take a sample and play it across the whole keyboard, but you can't. It doesn't even respond to a controller's pitch wheel.
You do have access to all the knobs via MIDI NRPN messages (which, to summarise, are just groups of regular MIDI CC messages), except for the effects section and the accent button for some reason. NRPN is annoying to do in Reaper, and the instructions in the ES-1 manual are obtuse, so I haven't tried this yet, but changing the Pitch/Speed would be useful. Theoretically with the right software, you could map keyboard keys to NRPN messages.