Volumio Debian Buster Beta - Raspi images debugging

no the 3.14 is the 3.14 and doesn’t include it… i think installed by hand…

Hi ,
I have installed the latest image 3.14 and touch plugin OK , Qobuz OK but when i want to install MPD_OLED , antiprism plugin buster_mpd_Oled_Error.txt (8.1 KB) I have this error when doing :

Blockquote
PLAYER=VOLUMIO make
I have atached a txt file , Do I need to adress this to mpd_oled dev

Thanks

for Buster based OS, use

PLAYER=MPD LDLIBS="-li2c" make

Now I have this
buster_mpd_Oled_Error_1.txt (4.6 KB)

From the guide at mpd_oled and the MAKEFILE, try

PLAYER=VOLUMIO LDLIBS="-li2c" make

That could be :sweat_smile: sorry! You can just install it with sudo apt install shairport-sync

Many Thanks, it worked. I fallow that tutorial.
Now I want to install peppymeter but I am afraid :D.
Regards

No issues! :slight_smile:

Go for it, if something breaks, we can fix it :wink:
Is it python 3 based? Or?

Yes, it is python 3.
I Have Manged to install in volumio 2 but hard… I will try those days.
Now I am listening to webradio and when I stop it I see some glitches in the screen dsi atached. 4.3 inch. The albumart increase the decrease the size…

I am trying to install the peppymeter but I am stopped here : I have installled pygame but when I do an import pygame I have this error

Blockquote
volumio@volumio:~/PeppyMeter$ python3
Python 3.7.3 (default, Jul 25 2020, 13:03:44)
[GCC 8.3.0] on linux
Type “help”, “copyright”, “credits” or “license” for more information.

import pygame
Traceback (most recent call last):
File “”, line 1, in
File “/usr/lib/python3/dist-packages/pygame/init.py”, line 136, in
from pygame.base import *
ImportError: libbcm_host.so: cannot open shared object file: No such file or directory

The pygame I have installed with

Blockquote

sudo apt-get install python3-pygame

Peppymeter script I open with python3 peppymeter.py

Yes I met the same problems with pygame. Didn’t fix it though.

Sorry, this is fixed in a newer versions, until then try the following

export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/vc/lib
# You can then go ahead and finish your installation. 
# A more permanent solution would be to add that to your ~/.bashrc
echo 'export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/vc/lib' >> ~/.bashrc

Or better yet, update ld.so.conf to use this path as well when looking for libs as the newer images do

i think it had problem with shairport, it can’t run.
I do everything, install the shairport successfully, but there is no audio output on the pi, and the LCD also doesn’t show up when playing Tidal through airplay.

ashthespy! you should install shairport, and run the test you will see, since I don’t understand and know about the commands, I only know the test results!

Thanks for your work!
Best regards
Mac

Yes, yes, but I don’t know which link to him. thanks!

It appears the the sound of buster is different the n Jessie? It is more clear…? Something is changed…

Well, that would be hard, I don’t use airplay…
Can you be more specific as to what you men by “it can’t run”
Logs are always helpful in such cases. What errors do you see?

I don’t have a setup (or the ears) to test that, but a LOT has changed/improved in terms of the software… not sure how that reflects in the sound clarity…

Sometimes it is ok but sometimes it appear that the old version sounded more warm, now it sounds more analitical, metalic, but other user should give feedback also. I do not know.

Hi ,

Do you mean to add the code in ld.so.conf file? this file from /etc/ld.so.conf contains only this ;

Blockquote
volumio@volumio:/etc$ cat ld.so.conf
include /etc/ld.so.conf.d/*.conf

I have try this and when I do import pygame no error is received but

Blockquote
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/vc/lib

Blockquote
volumio@volumio:~/PeppyMeter$ python3
Python 3.7.3 (default, Jul 25 2020, 13:03:44)
[GCC 8.3.0] on linux
Type “help”, “copyright”, “credits” or “license” for more information.

import pygame
pygame 1.9.4.post1
Hello from the pygame community. https://www.pygame.org/contribute.html

exit()
volumio@volumio:~/PeppyMeter$ sudo python3 peppymeter.py
Traceback (most recent call last):
File “peppymeter.py”, line 18, in
import pygame
File “/usr/lib/python3/dist-packages/pygame/init.py”, line 136, in
from pygame.base import *
ImportError: libbcm_host.so: cannot open shared object file: No such file or directory
volumio@volumio:~/PeppyMeter$

Thanks

Nope, try

echo '/opt/vc/lib' | sudo tee /etc/ld.so.conf.d/00-vmcs.conf
sudo ldconfig

EDIT: Added root

Blockquote
volumio@volumio:/etc/ld.so.conf.d$ sudo echo ‘/opt/vc/lib’ >/etc/ld.so.conf.d/00-vmcs.conf
-bash: /etc/ld.so.conf.d/00-vmcs.conf: Permission denied