Edited by Giantofstone at 2018-3-12 04:13
Hello,
all past generations consoles used A4 440 Hz Audio Pitch Standard which means nothing and is bad for you. Retrorangepi 4 uses ALSA so i configured a Real-Time A4 440 Hz to A4 432 Hz audio output plugin for it and configured that to be used as default to work.
You can also use the C5 528 Hz tuning. Just change the number of semitones to 0.156674, what will change A4 to 444 Hz.
Before your start, in the main menu press start and find desktop. In the desktop find a terminal.
First step is to install ladspa-sdk and tap_plugins
code:
- sudo apt-get install ladspa-sdk && sudo apt-get install tap-plugins
Second step is to edit ~/.asoundrc
code:
- sudo pluma ~/.asoundrc
Here is the example of ~/.asoundrc file for OrangePi PC (H3), just copy and paste.
code:
- pcm.snd_card {
- type hw
- card 1
- device 0
- }
- ctl.snd_card {
- type hw
- card 1
- device 0
- }
- pcm.dmixer {
- type dmix
- ipc_key 1024
- ipc_perm 0666
- slave.pcm snd_card
- slave {
- period_time 0
- period_size 1024
- buffer_size 4096
- rate 44100
- format S32_LE
- channels 2
- }
- bindings {
- 0 0
- 1 1
- }
- }
- pcm.ladspa {
- type ladspa
- slave.pcm "dmixplug";
- path "/usr/lib/ladspa";
- plugins [{
- label tap_pitch
- input {
- controls [ -0.317667 0 -90 0 ]
- }
- }]
- }
- pcm.dmixplug {
- type plug
- slave.pcm "dmixer"
- }
- pcm.!default {
- type plug
- slave.pcm "duplex"
- }
- pcm.duplex {
- type asym
- playback.pcm "ladspa"
- }
Done! Save and Restart.
Now you can heal your energy while playing all your favourite games without getting annoyed and play longer.
This will change the frequency to 431.99998843001134 Hz with a pretty sound effect and 440 Hz becomes funny next to it.
There are issues getting analog sound to work but may be a way around that.