05-01-2018, 04:45 PM
(05-01-2018, 12:49 PM)Koda59 Wrote: Yes badbat75 ... we worked on that with the crew and next release will have bluetooth really more robust.
Next release will have -p a2dp-sink -p a2dp-source parameters.
About volume problem, maybe you can set Volume Control to Software in mpd settings and set a smooth level before connecting bluetooth devices
Regards.
oh yes, it is a good idea, why did I not think that before
Meanwhile I'm trying to use APTx codec in order to try the low latency feature.
This is the modification of the recipe I made:
Code:
cd /tmp
git clone --single-branch https://github.com/Arkq/openaptx
cd openaptx
autoreconf --install
mkdir build
cd build
../configure --prefix=/usr --libdir=/usr/lib/arm-linux-gnueabihf --sysconfdir=/etc --localstatedir=/var
make
sudo make install
cd /tmp
git clone --single-branch https://github.com/Arkq/bluez-alsa.git
cd bluez-alsa
autoreconf --install
mkdir build
cd build
../configure --enable-hcitop --enable-aptx --with-alsaplugindir=/usr/lib/arm-linux-gnueabihf/alsa-lib
make
sudo make install
cd ~
rm -rf /tmp/openaptx
rm -rf /tmp/bluez-alsa