Tune Raspberry Pi for audio
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
# Install utils for cpu freq | |
sudo apt-get install cpufrequtils | |
sudo cpufreq-set -r -g performance | |
sudo echo "ENABLE="true" | |
GOVERNOR="performance" | |
MAX_SPEED="0" | |
MIN_SPEED="0" " | sudo tee -a /etc/default/cpufrequtils | |
# Install other useful tools | |
sudo apt-get install htop git perl vim | |
# Set CPU governor | |
sudo sed -i 's/exit 0/sudo cpufreq-set -r -g performance/g' /etc/rc.local | |
sudo echo "exit 0" | sudo tee -a /etc/rc.local | |
# Set realtime priority and memlock | |
sudo echo " | |
@audio nice -15 | |
@audio - rtprio 90 # maximum realtime priority | |
@audio - memlock unlimited # maximum locked-in-memory address space (KB) | |
" | sudo tee -a /etc/security/limits.conf | |
# Set swappiness | |
# This setting changes the so-called swappiness of your system, | |
# or in other words, the moment when your system starts to use its swap partition. | |
sudo echo " | |
vm.swappiness = 10 | |
fs.inotify.max_user_watches = 524288 | |
" | sudo tee /etc/sysctl.conf |
Hi Mads,
That worked, thanks so much!
That shoulda been obvious I suppose, I was slowly getting there... ha
cheers,
-eric
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi Eric
Thanks for your message. It seems like you have done everything correctly. The only missing part of the puzzle is to tell the SuperCollider server to boot with the amount of channels you need. By default it will be set to 2 but you can set it to 8 or any arbitrary number and then use a multi channel panning UGEN by changing the test file's code to something like:
Hope that helps!