spagoc / PeppyMeter-4-Linux-desktop

VU-Meter for Linux desktop users listening music
GNU General Public License v3.0
0 stars 0 forks source link

No Data For Peppymeter on a pi 5 #1

Closed martbrad11 closed 5 months ago

martbrad11 commented 5 months ago

I'm using a pi 5 with bookworm. I had already installed peppymeter but could not get it to work. I then read that it doesn't work with pipeline and found your code. I have copied the config.txt and the scripts but I don't see any audio data. The VU meter window starts OK. If I cat the fifo pipe there is nothing there. Also if I use qwnpgraph there is no peppymeter node. What am I doing wrong?

spagoc commented 5 months ago

You are on arm architecture so you have to compile the C file. Try: $ sudo apt install libpipewire-0.3-dev $ gcc -Wall pwstream4peppymet.c -o pwstream4peppymet $(pkg-config --cflags --libs libpipewire-0.3) -lm

In any case there will be no peppymeter node in qpwgraph, maybe because bookworm has an old pipewire version: 0.3.65

20240513_19h25m04s_grim

martbrad11 commented 5 months ago

Thanks for taking the time to help. I should have realised the original c file wasn't arm. I'll try your suggestion tomorrow. Many thanks Martin

On 13 May 2024 18:59:12 BST, spagoc @.***> wrote:

You are on arm architecture so you have to compile the C file. Try: $ sudo apt install libpipewire-0.3-dev $ gcc -Wall pwstream4peppymet.c -o pwstream4peppymet $(pkg-config --cflags --libs libpipewire-0.3) -lm

In any case there will be no peppymeter node in qpwgraph, maybe because bookworm has an old pipewire version: 0.3.65

20240513_19h25m04s_grim

-- Reply to this email directly or view it on GitHub: https://github.com/spagoc/PeppyMeter-4-Linux-desktop/issues/1#issuecomment-2108455156 You are receiving this because you authored the thread.

Message ID: @.***>

martbrad11 commented 5 months ago

I compiled as you said and it now works. Thank you Martin

On 13 May 2024 18:59:12 BST, spagoc @.***> wrote:

You are on arm architecture so you have to compile the C file. Try: $ sudo apt install libpipewire-0.3-dev $ gcc -Wall pwstream4peppymet.c -o pwstream4peppymet $(pkg-config --cflags --libs libpipewire-0.3) -lm

In any case there will be no peppymeter node in qpwgraph, maybe because bookworm has an old pipewire version: 0.3.65

20240513_19h25m04s_grim

-- Reply to this email directly or view it on GitHub: https://github.com/spagoc/PeppyMeter-4-Linux-desktop/issues/1#issuecomment-2108455156 You are receiving this because you authored the thread.

Message ID: @.***>

spagoc commented 5 months ago

You're welcome