0
1
mirror of https://github.com/radio95-rnt/fm95.git synced 2026-02-27 03:23:54 +01:00
This commit is contained in:
2025-03-09 09:52:28 +01:00
parent 0a99e3364c
commit 668642cfc7

View File

@@ -1,7 +1,6 @@
# fm95 # fm95
FM95 is a audio processor for FM, it does: FM95 is a audio processor for FM, it does:
- Pre-Emphasis - Pre-Emphasis
- Low Pass Filter
- Stereo - Stereo
- Polar Stereo - Polar Stereo
- SCA - SCA
@@ -25,4 +24,13 @@ make
Done! Done!
# CPU Usage? # CPU Usage?
Should run completly fine on a pi 5, right now with the preemp, lpf, compressor on a pi 3b, its 35-40% cpu usage, get rid of compressor and it goes to 20% Should run completly fine on a pi 5, right now with the preemp, on a pi 3b, its 20%
# Recommendations
use a lpf, for example swh-plugins's lowpass_iir, for example:
```
pactl load-module module-null-sink sink_name=FM_Audio rate=48000 # this goes to fm95
pactl load-module module-ladspa-sink sink_name=FM_Audio_lpf sink_master=FM_Audio plugin=lowpass_iir_1891 label=lowpass_iir control=15000,6 rate=48000 # use 4 poles minimum
pactl load-module module-loopback source=radio_audio.monitor sink=FM_Audio_lpf rate=48000 # from the apps to the filter
```