-
Hello everyone, For various reasons (the main one being that I use MPD in order to get track infos with a OBS plugin), I'm using MPD on Windows. The thing is, I really want to use the crossfade functionality, which, of course, can't be used if all tracks output are not resampled. So I'm using the following config line : audio_output_format "48000:16:2" And the crossfade does work perfectly, but the sound quality is really subpar, and it seems the Windows build don't have anything else than the internal resampler. Now, I must admit, I'm not used to compiling software, and don't really know where to start to get a build of MPD integrating some better resampler. Could someone help, please? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
Figure out how to build either libsamplerate or libsoxr on Windows, and then integrate these libraries in |
Beta Was this translation helpful? Give feedback.
-
I worded my sentence poorly, but I undersood what I needed to do. I figured it our this morning, after adding "libsamplerate" to the thirdparty_libs list in the build python script, I added an entry for libsamplerate in the python/build/libs.py script. I retrieved the latest release of libsamplerate and used Cmake to integrate it to MPD :
It worked like a charm, I can finally use MPD with libsamplerate on Windows. |
Beta Was this translation helpful? Give feedback.
I worded my sentence poorly, but I undersood what I needed to do.
I figured it our this morning, after adding "libsamplerate" to the thirdparty_libs list in the build python script, I added an entry for libsamplerate in the python/build/libs.py script.
I retrieved the latest release of libsamplerate and used Cmake to integrate it to MPD :
It worked like a charm, I can finally us…