Most of my music is production oriented and I don’t have a lot of live performance needs. But, I do want a useful set of evocative instruments to take to strange places. For that, I explored the options available for making music with Raspberry Pi minicomputers.
The goal of this particular box was to have the Linux soft-synth ZynAddSubFX running headless on a battery powered and untethered Raspberry Pi, controllable by a simple MIDI keyboard and an instrument switcher on my phone.
Getting things to run on the desktop version of Raspbian and ZynAddSubFX was pretty easy, but stripping away all the GUI and introducing command line automation with disparate multimedia libraries was a challenge. Then, opening it up to remote control over wifi was a rabbit hole of its own.
But, I got it working and it sounds pretty amazing.
Setting up the Raspberry Pi image
I use Jessie Lite because I don’t need the desktop environment. It’s the same codebase without a few bells and whistles. When downloading from rasperrypi.org, choose the torrent for a much faster transfer than getting the ZIP directly from the site. These instructions below are for Mac OS X, using Terminal.
diskutil list
/dev/disk1 (external, physical):
#: TYPE NAME SIZE IDENTIFIER
0: FDisk_partition_scheme *8.0 GB disk1
1: DOS_FAT_32 NO NAME 8.0 GB disk1s1
diskutil unmountDisk /dev/disk1 sudo dd bs=1m if=2017-04-10-raspbian-jessie-lite.img of=/dev/rdisk1
After the image gets written, I create an empty file on the boot partition to enable ssh login.
cd /Volumes/boot touch ssh
Then, I set the wifi login so it connects to the network on first boot.
sudo nano wpa_supplicant.conf ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev update_config=1 network={ ssid="<your_ssid>" psk="<your_password>" }
The card gets removed from the laptop and inserted into the Pi. Then, after it boots up I go through the standard setup from the command line. The default login is “pi” and the default password is “raspberry”.
sudo raspi-config
[enable ssh,i2c. expand filesystem. set locale and keyboard.]
After setting these, I let it restart when prompted. When it comes back up, I update the codebase.
sudo apt-get update sudo apt-get upgrade
Base configuration
ZynAddSubFX is greedy when it comes to processing power and benefits from getting a bump in priority and memory resources. I add the default user (pi) to the group “audio” and assign the augmented resources to that group, instead of the user itself.
sudo usermod -a -G audio pi sudo nano /etc/security/limits.d/audio.conf ... @audio - rtprio 80 @audio - memlock unlimited ...
The Raspbian version of Jessie Lite has CPU throttles, or governors, set to conserve power and reduce heat from the CPU. By default, they are set to “on demand”. That means the voltage to the CPU is reduced until general use hits 90% of CPU capacity. Then it triggers a voltage (and speed) increase to handle the load. I change that to “performance” so that it has as much horsepower available.
This is done in rc.local:
sudo nano /etc/rc.local ... echo "performance" > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor echo "performance" > /sys/devices/system/cpu/cpu1/cpufreq/scaling_governor echo "performance" > /sys/devices/system/cpu/cpu2/cpufreq/scaling_governor echo "performance" > /sys/devices/system/cpu/cpu3/cpufreq/scaling_governor ...
Note that it gets set for all four cores, since the Raspberry Pi is multi-core. For more info about governors and even overclocking, this is a good resource.
Virtual memory also needs to get downgraded so there is little swap activity. Zynaddsubfx is power hungry but doesn’t use much memory, so it doesn’t need VM.
sudo /sbin/sysctl -w vm.swappiness=10
Now, to set up the audio interface. For my ZynAddSubFX box, I use an IQaudio Pi-DAC+. I’ve also used a standard USB audio interface and have instructions for that in my post about the Pi Zero. Raspbian uses Device Tree overlays to load I2C, I2S, and SPI interface modules. So, instead of separate drivers to install, I just edit config.txt to include the appropriate modules for the Pi-DAC+. Note that I also disabled the crappy built-in audio by commenting out “dtparam=audio=on”. This helps later on when setting the default audio device used by the system.
sudo nano /boot/config.txt ... # Enable audio (loads snd_bcm2835) # dtparam=audio=on dtoverlay=i2s-mmap dtoverlay=hifiberry-dacplus ...
For Jack to grab hold of the Pi-DAC+ for output, the default user (pi) needs a DBus security policy for the audio device.
sudo nano /etc/dbus-1/system.conf ... <!-- Only systemd, which runs as root, may report activation failures. --> <policy user="root"> <allow send_destination="org.freedesktop.DBus" send_interface="org.freedesktop.systemd1.Activator"/> </policy> <policy user="pi"> <allow own="org.freedesktop.ReserveDevice1.Audio0"/> </policy> ...
Next, ALSA gets a default configuration for which sound device to use. Since I disabled the built-in audio earlier, the Pi-DAC+ is now “0” in the device stack.
sudo nano /etc/asound.conf pcm.!default { type hw card 0 } ctl.!default { type hw card 0 } sudo reboot
Software installation
ZynAddSubFX has thick dependency requirements, so I collected the installers in a bash script. Most of it was lifted from the Zynthian repo. Download the script from my Github repo to install the required packages and run it. The script also includes rtirq-init, which can improve performance on USB audio devices and give ALSA some room to breath.
git clone https://raw.githubusercontent.com/lucidbeaming/pi-synths/master/ZynAddSubFX/required-packages.sh sudo chmod a+x required-packages.sh ./required-packages.sh
Now the real meat of it all gets cooked. There are some issues with build optimizations for SSE and Neon (incompatible with ARM processors), so you’ll need to disable those in the cmake configuration.
git clone https://github.com/zynaddsubfx/zynaddsubfx.git cd zynaddsubfx mkdir build cd build cmake .. ccmake . [remove SSE parameters and NoNeonplease=ON] sudo make install
Usually takes 20-40 minutes to compile. Now to test it out and get some basic command line options listed.
zynaddsubfx -h
Usage: zynaddsubfx [OPTION]
-h , –help Display command-line help and exit
-v , –version Display version and exit
-l file, –load=FILE Loads a .xmz file
-L file, –load-instrument=FILE Loads a .xiz file
-r SR, –sample-rate=SR Set the sample rate SR
-b BS, –buffer-size=SR Set the buffer size (granularity)
-o OS, –oscil-size=OS Set the ADsynth oscil. size
-S , –swap Swap Left <–> Right
-U , –no-gui Run ZynAddSubFX without user interface
-N , –named Postfix IO Name when possible
-a , –auto-connect AutoConnect when using JACK
-A , –auto-save=INTERVAL Automatically save at interval (disabled with 0 interval)
-p , –pid-in-client-name Append PID to (JACK) client name
-P , –preferred-port Preferred OSC Port
-O , –output Set Output Engine
-I , –input Set Input Engine
-e , –exec-after-init Run post-initialization script
-d , –dump-oscdoc=FILE Dump oscdoc xml to file
-u , –ui-title=TITLE Extend UI Window Titles
The web app
I also built a simple web app to switch instruments from a mobile device (or any browser, really). It runs on Node.js and leverages Express, Socket.io, OSC, and Jquery Mobile.
First, a specific version of Node is needed and I use NVM to grab it. The script below installs NVM.
curl https://raw.githubusercontent.com/creationix/nvm/master/install.sh | sh
Logout and log back in to have NVM available to you.
nvm install v6.10.1
My Node app is in its own repo. The dependencies Express, Socket.io, and OSC will be installed with npm from the included package.json file.
git clone https://github.com/lucidbeaming/ZynAddSubFX-WebApp.git cd ZynAddSubFX-WebApp npm install
Test the app from the ZynAddSubFX-WebApp directory:
node index.js
On a phone/tablet (or any browser) on the same wifi network, go to:
http://<IP address of the Raspberry Pi>:7000
You should see a list of instruments to choose from. It won’t do anything yet, but getting the list to come up is a sign of initial success.
Now, for a little secret sauce. The launch script I use is from achingly long hours of trial and error. The Raspberry Pi is a very capable machine but has limitations. The command line parameters I use come from the best balance of performance and fidelity I could find. If ZynAddSubFX gets rebuilt with better multimedia processor optimizations for ARM, this could change. I’ve read that improvements are in the works. Also, this runs Zynaddsubfx without Jack and just uses ALSA. I was able to get close to RTprio with the installation of rtirq-init.
#!/bin/bash export DBUS_SESSION_BUS_ADDRESS=unix:path=/run/dbus/system_bus_socket if pgrep zynaddsubfx then echo Zynaddsubfx is already singing exit 0 else zynaddsubfx -U -A=0 -o 512 -r 96000 -b 512 -I alsa -O alsa -P 7777 -L "/usr/local/share/zynaddsubfx/banks/Choir and Voice/0034-Slow Morph_Choir.xiz" & sleep 4 if pgrep zynaddsubfx then echo Zyn is singing else echo Zyn blorked. Epic Fail. fi fi mini=$(aconnect -o | grep "MINILAB") mpk=$(aconnect -o | grep "MPKmini2") mio=$(aconnect -o | grep "mio") if [[ $mini ]] then aconnect 'Arturia MINILAB':0 'ZynAddSubFX':0 echo Connected to MINIlab elif [[ $mpk ]] then aconnect 'MPKmini2':0 'ZynAddSubFX':0 echo Connected to MPKmini elif [[ $mio ]] then aconnect 'mio':0 'ZynAddSubFX':0 echo Connected to Mio else echo No known midi devices available. Try aconnect -l fi exit 0
I have 3 MIDI controllers I use for these things and this script is set to check for any of them, in order of priority, and connect them with ZynAddSubFX. Also, I have a few “sleep” statements in there that I’d like to remove when I find a way of including graceful fallback and error reporting from a bash script. For now, this works fine.
I add this line to rc.local to launch Zynaddsubfx automatically on boot and connect MIDI.
su pi -c '/home/pi/zynlaunch.sh >> /tmp/zynaddsubfx.log 2>&1 &'
Unfortunately, Node won’t launch the web app from rc.local, so I add some conditionals to /home/pi/.profile to launch the app after the boot sequence.
if pgrep zynaddsubfx then echo Zynaddsubfx is singing fi if pgrep node then echo Zyn app is up else node /home/pi/ZynAddSubFX-WebApp/index.js fi
Making music
This ended up being a pad and drone instrument in my tool chest. ZynAddSubFX is really an amazing piece of software and can do much more than I’m setting up here. The sounds are complex and sonically rich. The GUI version lets you change or create instruments with a deep and precise set of graphic panels.
For my purposes, though, I want something to play live with that has very low resource needs. This little box does just that.