nikarh / reaper-remote-bandui

Web UI for Reaper remote interface used to simplify channel mixing for live shows
MIT License
10 stars 1 forks source link
concerts mixing music reaper reaper-ui rehersal remote-control ui web

reaper-remote-bandui

License GitHub Actions Build Status Current Release Release RSS Feed Main Commits RSS Feed

My musical band uses an IEM setup for rehearsals and live shows. This setup is based on a USB audio interface and software mixing in REAPER.

In REAPER we use named regions for songs and simple sends from input channels to personal channels with a hardware output for each band member.

To simplify mixing we use a web control feature of REAPER and each band member does mixing of their output from a phone. Fortunately, REAPER already includes an interface that allows doing just that - more_me.html. Unfortunately, though, this interface doesn't allow switching tracks or starting or stopping playback.

This project aims to fix that by providing a mobile-first web UI that provides a way to:

Repository contents

This repository contains

Remote UI

Building

Clone the project, install the dependencies, and build it with an npm command.

git clone https://github.com/nikarh/reaper-remote-bandui.git
npm i
npm run build

The built HTML file will be in ./dist/index.html.

Development

This project does not have a mock backend, so you actually need to run REAPER with the provided Mother Project, if you want to see anything sensible. By default proxy server expects REAPER to be running on port 8080.

REAPER project layout

For this UI to work, your REAPER project must follow some rules.

  1. All songs are marked as regions from the beginning to the end. The region must have a name (song name). Regions should not overlap.
  2. Tracks for which mixing is possible must have both

    • A hardware output
    • At least one send

    The mixing process is implemented by changing the gain of individual sends.

The example project has more tracks than just inputs and outputs so here is a brief explanation of their purpose.

Notes

When a specific song (region) is selected from the UI, it selects the region and sets the cursor to the beginning of the region. Selecting the region allows stopping the playback automatically when the region ends. For REAPER to stop the playback automatically you need to check Preferences -> Audio -> Playback -> [x] Stop playback at end of loop if repeat is disabled. and disable repeat in your project.