09-10-2019, 05:43 PM
This is what I did after reading and gathering some info here and somewhere else. mostly just copy paste with some minor editing.
#Enable AAC codec bluez alsa on Moode (sbc still intact and working as failsafe)
#Tested working on both Moode 6.1.0 and 6.2.0 ( Not sure if something breaks after OTA update)
#Tested on Pi Zero W. Build took around 80-90 minute
##Logon to ssh pi@moode.local password: moodeaudio
# fdk aac
# bluez alsa
hope it works for someone looking to stream aac BT to Moode as it works for me with my phone (Samsung A7 Oreo, Nexus 5 Resurrection Remix Oreo)
#Enable AAC codec bluez alsa on Moode (sbc still intact and working as failsafe)
#Tested working on both Moode 6.1.0 and 6.2.0 ( Not sure if something breaks after OTA update)
#Tested on Pi Zero W. Build took around 80-90 minute
##Logon to ssh pi@moode.local password: moodeaudio
# fdk aac
Code:
cd /tmp
sudo git clone https://github.com/mstorsjo/fdk-aac.git
cd fdk-aac
sudo ./autogen.sh
sudo ./configure --enable-shared --enable-static
sudo make install
sudo ldconfig
cd ..
# bluez alsa
Code:
sudo git clone https://github.com/Arkq/bluez-alsa.git
cd bluez-alsa
sudo autoreconf --install
sudo mkdir build
cd build
sudo ../configure --disable-hcitop --enable-aac --with-alsaplugindir=/usr/lib/arm-linux-gnueabihf/alsa-lib
sudo make
sudo make install
cd ~
rm -rf /tmp/fdk-aac
rm -rf /tmp/bluez-alsa
sudo reboot
hope it works for someone looking to stream aac BT to Moode as it works for me with my phone (Samsung A7 Oreo, Nexus 5 Resurrection Remix Oreo)