mbridak / not1mm

Not1MM != N1MM, An amateur radio contest logger for Linux.
GNU General Public License v3.0
93 stars 20 forks source link

Can't select select my radio soundcard #108

Closed hellmind closed 1 month ago

hellmind commented 1 month ago

I'm using Artix (Arch without systemd) Linux with PipeWire. Despite selecting different output options, the audio always gets redirected to the default soundcard.

Expected behavior

The audio should be routed to the selected output device instead of the default soundcard.

mbridak commented 1 month ago

Do you have libportaudio2 installed?

hellmind commented 1 month ago

I got portaudio 1:19.7.0-2 installed ( A free, cross-platform, open source, audio I/O library.) I don't see libportaudio2 on repository

mbridak commented 1 month ago

Hmm. Might be okay. launch it from a terminal and see if you get a line that says "portaudio is not installed".

try:
    import sounddevice as sd
except OSError as exception:
    print(exception)
    print("portaudio is not installed")
    sd = None

I'm guessing it's loading, 'cause your getting sound output. Just to the wrong location. I'll check it in about a week when my son is out of his soccer clinic. By the time I get home the sun has already baked the shack and it has no AC.

hellmind commented 1 month ago

It seems to be wokring on latest version.