Re: High quality audio - no Pulse audio
Reply #5 –
I have to wonder why you want to set your sample rate this way when the standard for quality audio is 44.1 kHz and 48 kHz.
ALSA will default to 48 kHz for mixing purposes and use dmix with a possibly sub-standard process.
edit:
You can configure your music player to use direct device output, bypassing ALSA's resampling. This achieves easy and bit-perfect playback at the source samplerate, if your card supports it. In mpd, this segment of the configuration looks like:
audio_output {
type "alsa"
name "alsa"
device "hw:0,0"
auto_resample "no"
}
You won't play other audio sources simultaneously since there's no mixing being done. This is with the music player. Everything else will be resampled at the default 48kHz. Then in ~/.asoundrc, change the means that ALSA uses to resample (sox, speex, libsamplerate, etc) for best overall quality in other applications.