Hello everyone,
as the stereo craze has got me I would like to improve the sound of my volumio system, using a ladspa plugin for implementing a crossover between my mains and sub as well as a bit of equalization. On my windows system I have already implemented and measured the configuration using equalizerAPO.
To now implement the filters on my Volumio system I installed the bmc0/dsp plugin from https://github.com/bmc0/dsp .
I have created a lowpass filter in the config file for the plugin and have tried to adapt the asound.config file as described in the manual of the plugin but ALSA does not seem to load the plugin at all.
As I have very limited experience with the audio system on linux I would appreciate every help to get the plugin up and running.
Below I have attached my asound.config file.
pcm.softvolume {
type plug
slave.pcm "softvol"
}
pcm.softvol {
type softvol
slave {
pcm "plughw:5,0"
}
control {
name "SoftMaster"
card 5
device 0
}
max_dB 0.0
min_dB -50.0
resolution 100
}
pcm.dsp {
type plug
slave {
format FLOAT
rate unchanged
pcm {
type ladspa
channels 6
path "/usr/lib/ladspa"
playback_plugins [{
label "ladspa_dsp"
}]
slave.pcm{
type plug
slave{
card "plughw:5,0"
rate unchanged
channels unchanged
}
}
}
}
}
pcm.!default{
type copy
slave.pcm "dsp"
}
ctl.!default {
type copy
slave.pcm "dsp"
}
Beeing out of ideas I also tried modifying the mdp.conf file, but sadly (or luckily) it didn’t change anything. Below is my modified file content.
#metadata_to_use "artist,album,title,track,name,genre,date,composer,performer,disc"
auto_update "yes"
#auto_update_depth "3"
###############################################################################
# Symbolic link behavior ######################################################
follow_outside_symlinks "yes"
follow_inside_symlinks "yes"
###############################################################################
# Input #######################################################################
#
input {
plugin "curl"
# proxy "proxy.isp.com:8080"
# proxy_user "user"
# proxy_password "password"
}
###############################################################################
# Decoder ################################################################
###############################################################################
# Audio Output ################################################################
resampler {
plugin "soxr"
quality "high"
threads "1"
}
audio_output {
type "alsa"
name "alsa"
device "hw:5,0"
dop "yes"
}
audio_output {
type "alsa"
name "dsp"
device "plug:dsp"
}
audio_output {
type "fifo"
enabled "no"
name "multiroom"
path "/tmp/snapfifo"
format "44100:16:2"
}
#replaygain "album"
#replaygain_preamp "0"
volume_normalization "yes"
###############################################################################
# MPD Internal Buffering ######################################################
audio_buffer_size "12288"
buffer_before_play "10%"
###############################################################################
# Resource Limitations ########################################################
#connection_timeout "60"
max_connections "20"
max_playlist_length "81920"
max_command_list_size "81920"
max_output_buffer_size "81920"
###############################################################################
# Character Encoding ##########################################################
filesystem_charset "UTF-8"
id3v1_encoding "UTF-8"
Thanks a lot