Vaporwave is the only genre defined entirely by an effect. Take an 80s sample, slow it down to half speed, run it through a tape emulator with the wow and flutter cranked, and you have made vaporwave. The technique outlived the scene — chopped and screwed, hyperpop interludes, lo-fi study beats all inherit the same pitch-down playbook. A vaporwave gamepad rig puts the playback rate, tape drive, wow, and flutter on the analog sticks and touchpad — so the entire production technique is one controller. Built and tested at 60 BPM with a Sade acapella that has earned itself a third life.
- Project tempo 60 BPM at 44.1 kHz.
- Left stick Y on CC 1 → sample playback rate, 30% to 100%.
- Right stick X on CC 2 → tape saturation drive.
- Touchpad X on CC 3 → wow rate (slow warble).
- Touchpad Y on CC 4 → flutter rate (fast warble).
- L2 (adaptive) → tape stop with motor-die resistance.
The defining technique — pitch down by half
Vaporwave is what happens when you take Diana Ross's "It's My Turn" at 120 BPM and play it back at 60 BPM with the pitch dropped proportionally. The track becomes twice as long and an octave lower. The 80s shimmer becomes underwater. The drums become slow-motion. That single technique — tape-style pitch and time shift in lockstep — is the entire production technique of the genre. Macintosh Plus's "リサフランク420 / 現代のコンピュー" did it to a Diana Ross track in 2011 and accidentally invented vaporwave. Bandcamp Daily's vaporwave scene report covers the genre history if you want context.
Project setup at 60 BPM
New project, 60 BPM, 44.1 kHz. Drop a sample — an 80s soul vocal, a smooth jazz instrumental, a Muzak elevator track — into your sampler. Set the playback rate to 50%. The sample is now twice as long and an octave lower. Add a tape emulator on the sample's channel: Decapitator, Chowdhury ChowTape, or any free alternative. Expose the Drive, Wow Rate, and Flutter Rate macros for MIDI mapping.
# Gamepad MIDI map — Vaporwave pitch-shift rig
left_stick.y = CC 1 # Sampler playback rate (30%–100%)
left_stick.x = CC 5 # Sampler start position
right_stick.x = CC 2 # Tape saturation drive
right_stick.y = CC 6 # Lowpass filter cutoff
touchpad.x = CC 3 # Tape wow rate
touchpad.y = CC 4 # Tape flutter rate
touchpad.click = Note 70 # Snapshot tape settings
trigger_L2 = CC 7 # Tape stop (adaptive resistance)
trigger_R2 = CC 8 # Reverb send (long plate)
button_cross = Note 36 # Trigger sample from start
button_circle = Note 37 # Reverse sample playback
button_square = Note 38 # Half-speed snap
button_triangle = Note 39 # Quarter-speed snap Genre-specific gamepad mapping
| Gamepad input | Vaporwave technique | MIDI | Why it matters |
|---|---|---|---|
| Left stick Y | Playback rate ride | CC 1 | The defining vaporwave gesture — slow the sample live from full speed to half. |
| Right stick X | Tape saturation drive | CC 2 | Crunchy mid-90s tape compression. The other half of the timbre. |
| Touchpad X | Wow rate | CC 3 | Slow pitch warble — the "tape stretched in the sun" sound. |
| Touchpad Y | Flutter rate | CC 4 | Fast pitch warble — the "capstan is shot" sound. |
| L2 (adaptive) | Tape stop | CC 7 | 800ms tape-stop with resistance that ramps as the sample slows. |
| R2 (adaptive) | Reverb send (plate) | CC 8 | 6-second plate. Pull the trigger, drown the sample. |
| Square button | Half-speed snap | Note 38 | Instant 50% rate — the classic Macintosh Plus move. |
| Triangle button | Quarter-speed snap | Note 39 | 25% rate — Chuck Person territory, fully underwater. |
The pitch-shift ride — the move
Bind the left stick Y to the sampler's playback rate. The default range is 30% to 100% — meaning at the bottom of the stick the sample plays at less than a third speed (over an octave and a half down), at the top it plays at full speed. Now play the sample, drop your thumb, and the sample slows down in real time. Push back up and it speeds back up. This is the single most-used gesture in vaporwave production. The DualSense touchpad XY MIDI walkthrough covers the precision side of touchpad mapping — combine that with the stick for wow/flutter and you have the whole timbre under your hands.
Wow and flutter on the touchpad
The touchpad XY mapping is where vaporwave gets its tape-damaged feel. X is wow — a slow pitch warble around 0.5 Hz. Y is flutter — a fast pitch warble around 6 Hz. Sweep the touchpad and you are riding the tape physics: more wow gives you the "tape left in the sun" feel, more flutter gives you the "mechanism is dying" feel. Click the touchpad to snapshot the current X/Y — you can re-call that exact tape setting any time. Most tape emulators expose Wow Rate and Flutter Rate as separate macros; if your plugin only exposes Wow Amount and Flutter Amount, map those instead — the effect is similar.
Tape stop on L2
The adaptive trigger on L2 drives a tape stop macro. At 0% squeeze, no effect. As you squeeze, the sample's playback rate ramps from 100% down to 0% over the trigger's travel — with the trigger resistance ramping in parallel from 30% to 90%. The harder you squeeze, the slower the sample goes and the more your finger has to fight. The physical sensation matches the audio — the motor is dying under your finger. The MIDI feedback haptic rumble walkthrough covers the SysEx layer if you want to fine-tune the resistance curve.
# Max for Live — Tape stop device parameters mapped to CC 7
tape_stop.amount = CC7 / 127 # 0..1
sampler.rate = lerp(1.0, 0.0, tape_stop.amount)
# Resistance feedback to gamepad via SysEx
trigger.L2.resistance = lerp(0.3, 0.9, tape_stop.amount) What this rig will not do
- Modern mixing. Vaporwave is supposed to sound un-mastered. Compression and limiting kill the genre. Leave the master bus alone.
- Step sequencing. Vaporwave is sample-driven. There is no step sequencer because there are no original drum patterns — you are using whatever the original sample had.
- High-resolution synthesis. Synths in vaporwave are usually FM7 or DX7 presets passed through tape. Sound design is not the move.
Vaporwave is one technique applied with conviction — pitch the sample down, run it through tape, ride the wow and flutter. The DualSense touchpad and sticks were built for first-person shooter aim, and accidentally make perfect tape emulation controls. Drop the Universal Controller MIDI bridge in, load the Vaporwave 60 preset, slow your sample to half speed, and the first ride is one thumb away.