[PROBLEM] No Spotify connect on Arm6 RPIs - Printable Version +- Moode Forum (https://moodeaudio.org/forum) +-- Forum: moOde audio player (https://moodeaudio.org/forum/forumdisplay.php?fid=3) +--- Forum: Support (https://moodeaudio.org/forum/forumdisplay.php?fid=7) +--- Thread: [PROBLEM] No Spotify connect on Arm6 RPIs (/showthread.php?tid=4924) |
No Spotify connect on Arm6 RPIs - iambrian - 06-27-2022 Playing around with an old Pi Zero W V1.1 (to make a tiny player for the campervan) With Moode 8.1.1 (Legacy) all seems to work well except for Spotify Connect. pgrep -l librespot shows no librespot running trying to run librespot -V manually gets "Illegal instruction" Comparing the file sizes of /usr/bin/librespot with my Raspberry Pi V3 (Arm7) system shows the same file size (6221444) which makes me wonder if the Zero W 1.1 running on Arm6 has the Arm7 version of librespot? Not got time over the next couple of days to try and compile librespot on the Pi Zero W 1.1 to see if that fixes things. RE: No Spotify connect on Arm6 RPIs - bitlab - 06-27-2022 @iambrian you are totally correct; the librespot 0.4.1 is build voor ARM v7 while 0.3.1 was build voor v6: Code: pi@bullseye:~ $ librespot --version RE: No Spotify connect on Arm6 RPIs - bitlab - 06-27-2022 New package build for ARM 6 is finished, but has to wait till integrated in a next moOde update. If you can't wait until the update, there is a workarround, if you are not put off by using the command-line ssh web termininal. Just downgrading from 0.4.1 to 0.3.1. Code: sudo moode-apt-mark unhold And then reboot. RE: No Spotify connect on Arm6 RPIs - iambrian - 06-27-2022 Wow!!!!! Brilliantly quick response - thanks. Workaround tested and all working. One minor correction - the librespot downgrade install needed --allow-downgrades Code: sudo apt install -y librespot=0.3.1-1moode2 --allow-downgrades Thanks again for such prompt response. |