You are not logged in.

#1 2025-03-16 17:18:40

LogicalKarma
Member
Registered: 2024-05-19
Posts: 28

Popping and buzzing in pipewire

I have been experiencing load buzzing and pops for about 2-3 weeks. This is usually triggered by certain applications especially when multiple are running and producing sounds (Legcord, Soundux and wine games such as Uno and It Takes Two). I am using Pipewire.

I have tried changing:

default.clock.allowed-rates

default.clock.quantum     
default.clock.min-quantum
default.clock.max-quantum

api.alsa.period-size
api.alsa.headroom

I have also tried changing the latency for some of these apps and games (PIPEWIRE_LATENCY=2048/48000) and I have session.suspend-timeout-seconds = 0 as I also had issues with suspended audio prior.

Only changing the quantum options to higher values helped, but they seem to big and I still get slight popping in some cases. Will these have consequences for my sistem's stability and responsiveness? Is there a better way of fixing this?

default.clock.quantum       = 4096
default.clock.min-quantum   = 512
default.clock.max-quantum   = 32768

Update:
I still have the same issues. Quantum options did not help much.

Last edited by LogicalKarma (2025-03-16 18:47:57)

Offline

#2 2025-03-24 13:04:37

Halano
Member
From: Egypt
Registered: 2023-02-07
Posts: 69
Website

Re: Popping and buzzing in pipewire

cd .config
rm -rf pipewire
cp -r /usr/share/pipewire/ .

systemctl --user restart pipewire

Last edited by Halano (2025-03-24 13:17:25)


.:HalanoTheSmartMoth:.

Offline

#3 2025-03-27 14:58:51

LogicalKarma
Member
Registered: 2024-05-19
Posts: 28

Re: Popping and buzzing in pipewire

I appreciate the reply, but could you care to explain the reasoning?

I did partially solve the issue in the meantime. It seems that either the echo cancellation or noise suppression(rnnoise) caused it. I had 2 config files for these which you can find bellow. I am now using noise suppression(still rnnoise) on easy effects and I think the buzzing is gone.

I still have popping when stopping or sometimes when starting playback, however I am beginning to suspect a hardware specific issue as it's either worse or only existent while listening though my usb microphone (AT2020USB-X) .

Legcord is another story, popping always occurs when starting a call or sometimes when ending it whatever I try.

 context.modules = [
 
     # Echo cancellation
     {   name = libpipewire-module-echo-cancel
         args = {
             # Monitor mode: Instead of creating a virtual sink into which all
             # applications must play, in PipeWire the echo cancellation module can read
             # the audio that should be cancelled directly from the current fallback
             # audio output
             monitor.mode = true
             # The audio source / microphone wherein the echo should be cancelled is not
             # specified explicitly; the module follows the fallback audio source setting
            
             source.props = {
                 # Name and description of the virtual source where you get the audio
                 # without echoed speaker output
                 node.name = "source_ec"
                 node.description = "Echo-cancelled source"
             }
             aec.args = {
                 # Settings for the WebRTC echo cancellation engine
                 webrtc.gain_control = true
                 webrtc.extended_filter = false
                 # Other WebRTC echo cancellation settings which may or may not exist
                 # Documentation for the WebRTC echo cancellation library is difficult
                 # to find
                 #webrtc.analog_gain_control = false
                 #webrtc.digital_gain_control = true
                 #webrtc.experimental_agc = true
                 #webrtc.noise_suppression = true
             }
         }
     }
 ]
context.modules = [
{   name = libpipewire-module-filter-chain
    args = {
        node.description =  "Noise Canceling source"
        media.name =  "Noise Canceling source"
        filter.graph = {
            nodes = [
                {
                    type = ladspa
                    name = rnnoise
                    plugin = /usr/lib/ladspa/librnnoise_ladspa.so
                    label = noise_suppressor_stereo
                    control = {
                        "VAD Threshold (%)" = 50.0
                        "VAD Grace Period (ms)" = 200
                        "Retroactive VAD Grace (ms)" = 0
                    }
                }
            ]
        }
        capture.props = {
            node.name =  "capture.rnnoise_source"
            node.passive = true
            audio.rate = 48000
            node.target = "source_ec"
        }
        playback.props = {
            node.name =  "rnnoise_source"
            media.class = Audio/Source
            audio.rate = 48000
        }

    }
}
]

Last edited by LogicalKarma (2025-03-27 15:06:56)

Offline

#4 2025-03-30 10:11:44

LogicalKarma
Member
Registered: 2024-05-19
Posts: 28

Re: Popping and buzzing in pipewire

Another update:

I have found an easy way to reproduce the stutters:
Play audio on VLC and hold space. This will pause and unpause rapidly causing stutters. (other media players will also probably work)

After obsessing over this for quite some time and constantly tinkering with the settings I have previously mentioned like a madman, I cleared an SSD and installed Windows 11 to confirm this is not a hardware level issue. Windows had one small stutter the first time I played audio on it after installing and then it worked perfectly fine.

After this, I started Ubuntu to check if this is a configuration specific issue for my installation. Surely enough, it is not. Ubuntu also seems to share the same audio issues.

So is this a driver issue? I am using a MSI PRO-B650-S-WIFI motherboard with a ALC897 audio chip. Where do I go from here?

Last edited by LogicalKarma (2025-03-31 07:08:23)

Offline

#5 2025-03-31 07:07:21

LogicalKarma
Member
Registered: 2024-05-19
Posts: 28

Re: Popping and buzzing in pipewire

Testing with a DAC yields the same results.

Can this topic be moved to Multimedia and Games?

Offline

#6 2025-04-01 09:49:35

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 24,864

Re: Popping and buzzing in pipewire

Popping explicitly when starting and stopping sounds like power saving kicking in, though rapidly paus-unpausing shouldn't trigger the few seconds delay that should have by default, a simple way to test that is creating /etc/modprobe.d/disableHDApowersave.conf

options snd_hda_intel power_save=0

and rebooting

note that if you're using TLP or similar they might have their own config application for applying power save in which case you'll have to disable it there.

However that it's only for "two weeks" could also point at a regression with your HW and the pipewire update, but I'd assume Ubuntu to not have that yet.

Moving to Multimedia.

Offline

#7 2025-04-01 12:55:13

LogicalKarma
Member
Registered: 2024-05-19
Posts: 28

Re: Popping and buzzing in pipewire

Thinking back this might have been happening for a while longer (possibly, but not probably, during a hardware change). The buzzing is recent however. Fortunately this seems to be gone. I really do not want to confirm definitively as I could not reproduce the exact same environment I had before.

The popping is now better. It happens just as the audio starts or stops, before it had a delay which made it horribly obvious.

Unfortunately, power_save does not seem to fix the issue. I did see a post of yours before and tried it. I also tried it now and I cannot see any difference.

I did also spot an error from Wireplumber related to my webcam, however I have used my PC without it many times so I did not think it was worth mentioning. I have dumped the logs bellow just in case:

apr 01 15:29:46 karmastation wireplumber[1619]: wp-internal-comp-loader: Loading profile 'main'
apr 01 15:29:47 karmastation wireplumber[1619]: spa.alsa: The decibel volume range for element 'PCM' (-4000 dB - -1200 dB) has negative maximum. Disabling the decibel range.
apr 01 15:29:47 karmastation wireplumber[1619]: spa.alsa: The decibel volume range for element 'PCM' (-4000 dB - -1200 dB) has negative maximum. Disabling the decibel range.
apr 01 15:29:47 karmastation wireplumber[1619]: spa.alsa: The decibel volume range for element 'PCM' (-4000 dB - -1200 dB) has negative maximum. Disabling the decibel range.
apr 01 15:29:47 karmastation wireplumber[1619]: spa.alsa: The decibel volume range for element 'PCM' (-4000 dB - -1200 dB) has negative maximum. Disabling the decibel range.
apr 01 15:29:47 karmastation wireplumber[1619]: spa.alsa: The decibel volume range for element 'PCM' (-4000 dB - -1200 dB) has negative maximum. Disabling the decibel range.
apr 01 15:29:47 karmastation wireplumber[1619]: wp-device: SPA handle 'api.libcamera.enum.manager' could not be loaded; is it installed?
apr 01 15:29:47 karmastation wireplumber[1619]: s-monitors-libcamera: PipeWire's libcamera SPA plugin is missing or broken. Some camera types may not be supported.
apr 01 15:30:36 karmastation wireplumber[1619]: wp-event-dispatcher: <WpAsyncEventHook:0x5ec48b592af0> failed: <WpSiStandardLink:0x5ec48b789ba0> link failed: some node was destroyed before the link was created
apr 01 15:39:14 karmastation wireplumber[1619]: wp-event-dispatcher: <WpAsyncEventHook:0x5ec48b59e5d0> failed: failed to activate item: Object activation aborted: proxy destroyed

Related to the regression idea, I did rollback my kernel at least 2 times. Even back to 2024.

Sorry for the vagueness of the details, it's quite hard to keep track of audio over a larger period of time.

Last edited by LogicalKarma (2025-04-01 12:56:56)

Offline

#8 2025-05-06 22:33:56

afrostmage
Member
Registered: 2024-09-05
Posts: 20

Re: Popping and buzzing in pipewire

I also have this issue. I have tried:

- changing quantum values
- downgrading pipewire to 1.27
- switching wireplumber for pipewire-media-session

but nothing seems to make a difference. Neither pipewire nor wireplumber show any errors in their status. pw-top doesn't show any errors either. The poppings sound like xruns but there isn't any indication that they are.  I attached the output of alsa-info.sh below.

https://0x0.st/8J1A.txt

Update:
I was beginning to suspect hardware issue.
I tried the zen kernel and the issue seems to be gone so far.

update2:
nvm was a fluke sad had a 2 hour session with no popping but now its back. sigh.

Last edited by afrostmage (2025-05-07 14:24:49)

Offline

#9 2025-06-15 10:05:10

thearchuser
Member
Registered: 2025-06-15
Posts: 3

Re: Popping and buzzing in pipewire

I have this same loud annoying clicking sound mostly whenever stopping and starting audio. Especially annoying when stopping YouTube videos. I have tried every fix under the sun but nothing works.  I do not hear any such clicking noises when pausing videos on Windows.

Tried this:
https://wiki.archlinux.org/title/Advanc … g_playback

Tried this:
https://wiki.archlinux.org/title/PipeWi … g_playback

Power saving on my sound module is totally disabled
cat /sys/module/snd_hda_intel/parameters/power_save
cat /sys/module/snd_hda_intel/parameters/power_save_controller
0
N


What is causing this terrible sound?

Offline

#10 2025-11-20 10:10:53

LogicalKarma
Member
Registered: 2024-05-19
Posts: 28

Re: Popping and buzzing in pipewire

In case anybody thought I silently found a fix and am keeping it for myself, that's not the case. I did start looking into it again, but no cigar so far.

Here is a list of situations that might be a link to the problem: Soundux, Legcord/Discord, Proton Games, playing Piped videos on Firefox/Ungoogled Chromium, Easy Effects and playing audio on VLC. When playing/ recording multiple audio sources/sinks it seems to vary from a slight crackle or pop to a louder crackle or pop to a hellish cry of audio pain that lasts 1-2 seconds(not sure how to describe this, the audio becomes a crackling distorted mess) depending on the number of them running side-by-side. I found that, generally, more audio applications cause the issues to be more noticeable. The combination that could reproduce up to and including the hellish cry was Discord with sharing screens, a proton game, Easy Effects and OBS in the background and Soundux.

At this point I have also tried most of the fixes I could find on any forum/wiki. If there any suggestions that fit this scenario please let me know in case I missed something.

There is one new development however. Looking through journalctl (journalctl -f | grep pipewire), I found the following logs:

env[571166]: 'loop->recurse > 0' failed at ../pipewire/src/pipewire/thread-loop.c:425 pw_thread_loop_wait()
env[571166]: 'loop->recurse > 0' failed at ../pipewire/src/pipewire/thread-loop.c:425 pw_thread_loop_wait()
env[571166]: 'loop->recurse > 0' failed at ../pipewire/src/pipewire/thread-loop.c:425 pw_thread_loop_wait()
env[571166]: 'loop->recurse > 0' failed at ../pipewire/src/pipewire/thread-loop.c:425 pw_thread_loop_wait()
env[571166]: 'loop->recurse > 0' failed at ../pipewire/src/pipewire/thread-loop.c:425 pw_thread_loop_wait()
pipewire-pulse[455362]: mod.protocol-pulse: server 0x55cca98627f0: too many client application connections: Connection refused
pipewire-pulse[455362]: mod.protocol-pulse: server 0x55cca98627f0: too many client application connections: Connection refused
pipewire-pulse[455362]: mod.protocol-pulse: server 0x55cca98627f0: too many client application connections: Connection refused
pipewire-pulse[455362]: mod.protocol-pulse: server 0x55cca98627f0: too many client application connections: Connection refused
pipewire-pulse[455362]: mod.protocol-pulse: server 0x55cca98627f0: too many client application connections: Connection refused
pipewire-pulse[455362]: mod.protocol-pulse: server 0x55cca98627f0: too many client application connections: Connection refused
pipewire-pulse[455362]: mod.protocol-pulse: server 0x55cca98627f0: too many client application connections: Connection refused
pipewire-pulse[455362]: mod.protocol-pulse: server 0x55cca98627f0: too many client application connections: Connection refused
pipewire-pulse[455362]: mod.protocol-pulse: 0x55ccaec804d0: [UnrealGame] overrun recover read:591498624 avail:9856 max:7680 skip:7936
pipewire-pulse[455362]: mod.protocol-pulse: 0x55ccaec804d0: [UnrealGame] overrun recover read:754835200 avail:7936 max:7680 skip:6016

Offline

#11 2025-11-20 15:00:24

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 70,426

Re: Popping and buzzing in pipewire

Is it pipewire or the rest of the system?
Do you get the same with pulseaudio?
What if you disable all sound daemons and use just alsa (which should™ get you dmix by default)?

Offline

#12 2025-11-20 17:21:10

LogicalKarma
Member
Registered: 2024-05-19
Posts: 28

Re: Popping and buzzing in pipewire

I think I did try switching to pulseaudio at some point in the past to solve these issues. I would rather not switch my audio manager again, but I will see if I can get around to it. Either way, permanently moving away from pipewire or at least pulseaudio is not something I want to do.

I am starting to think this is just an issue with the applications themselves, pipewire-pulse or both, at least for the most severe issues. Here is a breakdown of what I tried today and what seems promising in at least mitigating these issues.

Disabled "Process all output streams" in Easy Effects. I hope this will remove the "hellish cry of audio pain" in my usual scenarios and so far it seems promising. DEFINITELY look into this if you are using Soundux and Easy Effects or even just Easy Effects. I have seen it cause periodic pops too. I doubt that this is the underlying issue as I still have popping when starting or stopping audio. Soundux currently presents no audible issues apart from mild popping when pausing and playing. It should be noted that Soundux uses pipewire for its backend.

Looked into moving VLC to a pipewire backend with vlc-plugin-pipewire on the AUR.
Here is the MP3 I use for testing this case: https://files.catbox.moe/d5or9v.mp3. I did check if there was any distortion present in the file itself and crackling/ distortions should be clearly audible when listening with VLC. Keep in mind that this does NOT always happen. Listen to the first 3 seconds 3-5 times and stop whenever it sounds off or crackles, preferably in quick succession by going back to the start of the song.
I am not sure if this was successful since the audio still crackles when starting playback for around the first 15 seconds (starting within the first 2 seconds of the MP3) in VLC with the Output module set to Pipewire audio output.
After looking further into this I found this site from the maker of the plugin https://www.remlab.net/vlc-plugin-pipewire. Here is a quote:
"Occasional glitches at start-up
    This is a known issue in VLC version 3 (and earlier) and more or less affects all audio outputs though ALSA, JACK and Pipewire outputs seem more prone to it than PulseAudio. This should be fixed in VLC version 4."
I could not find an issue on the VLC repo, nor did I spend too much time on it. If anyone else wants to look through it, feel free. At this point I was not quite sure how to handle VLC so I looked for a music player with a pipewire audio backend. I tried Lollypop from the official repositories and it behaves similarly to Soundux. Same results for Strawberry, Clementine and MPV Media Player which all seem to use Pipewire. Then I tried Elisa and the exact same distortion was audible. As far as I know Elisa uses pulseaudio.

Please try testing with VLC and let me know if the distortion happens for everyone, no one or just some users. Same for the popping, but preferably also in another audio player. I am still quite unhappy with how pipewire-pulse is behaving and even when applications use pipewire it still seems to have some popping.

Last edited by LogicalKarma (2025-11-20 17:23:09)

Offline

#13 2025-11-20 18:10:10

LogicalKarma
Member
Registered: 2024-05-19
Posts: 28

Re: Popping and buzzing in pipewire

The hellish cry is back

Offline

#14 2025-11-20 19:45:05

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 70,426

Re: Popping and buzzing in pipewire

Either way, permanently moving away from pipewire or at least pulseaudio is not something I want to do.

That's not the plan at all, pulseaudio is now bitrot.
The plan is to answer

I am starting to think this is just an issue with the applications themselves

As a cross-test, do you get this w/ mpv?
You can also

mpv --ao=pipewire thunderstruck.mp3
mpv --ao=pulse thunderstruck.mp3
mpv --ao=alsa thunderstruck.mp3

Offline

#15 Yesterday 07:01:41

LogicalKarma
Member
Registered: 2024-05-19
Posts: 28

Re: Popping and buzzing in pipewire

Will post an update a bit later for switching to pulse.

As for the cross-test, it seems that the 15 second distortion is VLC specific. This would make sense, since Elisa actually uses VLC. After testing in all cases, the popping was relatively the same and the long distortion was absent.

Offline

#16 Yesterday 07:28:18

LogicalKarma
Member
Registered: 2024-05-19
Posts: 28

Re: Popping and buzzing in pipewire

Installed pulseaudio, tested it with MPV using pulse. Same popping occurs.

Offline

#17 Yesterday 07:43:49

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 70,426

Re: Popping and buzzing in pipewire

So "mpv --ao=pulse thunderstruck.mp3" w/ pipewire-pulse doesn't get you any artifacts but "mpv --ao=pulse thunderstruck.mp3" w/ actual pulseaudio does?

Offline

#18 Yesterday 07:58:41

LogicalKarma
Member
Registered: 2024-05-19
Posts: 28

Re: Popping and buzzing in pipewire

All of them have similar popping when starting and stopping playback (with pipewire-pulse or pulse in all of the scenarios you requested). If there is a difference I am having a hard time finding it.

Offline

#19 Yesterday 08:26:53

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 70,426

Re: Popping and buzzing in pipewire

So bottom line: it's neither the sound daemon nor the player, right?
=> focus on the kernel (even rtkit cannot really be relevant if mpv --ao=alsa is affected unless you ended up using pipewire-alsa)
To be extra sure, remove both, pipewire and pulseaudio, only boot the multi-user.target and run mpv there.

Then step #1 is to undo/archive all custom configs you made to either sound daemon to not interfere with the results (though you should™ investigate this w/o pw/pa until the kernel thing is sorted out), add "pcie_aspm=off snd_hda_intel.power_save=0" to the https://wiki.archlinux.org/title/Kernel_parameters and then please post your complete system journal for the boot:

sudo journalctl -b | curl -F 'file=@-' 0x0.st

to illustrate the status quo

I will say, though that

Testing with a DAC yields the same results.

would contradict the kernel bug (unless that DAC happens to have the exact same chip as your ALC…) - you're not always using the same headphones/speakers for this, are you?

Offline

#20 Yesterday 12:38:28

LogicalKarma
Member
Registered: 2024-05-19
Posts: 28

Re: Popping and buzzing in pipewire

My bad, I did have pipewire-alsa installed. I removed pipewire, pipewire-alsa, pipewire-pulse and pipewire-jack and tried using speaker-test and mpv media player. At first I tried speaker-test, it threw an error saying it could not access the device. I followed the instructions from https://bbs.archlinux.org/viewtopic.php?id=186672 and added /etc/modprobe.d/50-alsa.conf as described there. speaker-test ran after that, but I got no audio, same for mpv.

Offline

#21 Yesterday 12:54:19

LogicalKarma
Member
Registered: 2024-05-19
Posts: 28

Re: Popping and buzzing in pipewire

As for the hardware side, I mostly use either my speakers connected directly to the motherboard (model in previous post)  or my headphones connected to my Sound Blaster Audigy RX (SB1550) card. I mostly test using my headphones as it's easier to spot issues, but I did try it on my speakers too.

Offline

#22 Yesterday 12:59:42

LogicalKarma
Member
Registered: 2024-05-19
Posts: 28

Re: Popping and buzzing in pipewire

Turns out that the config only ended up making the speakers inaccessible. I couldn't find them in aplay -l after adding it.

Offline

#23 Yesterday 13:03:07

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 70,426

Re: Popping and buzzing in pipewire

That config changes the card order.
Remove it, reboot (or reload the sound modules) and post the output of

aplay -lL

Edit: since it just popped up and wrt the original problem, see https://bbs.archlinux.org/viewtopic.php?id=310318
Seems external hardware might interfere with anything here? Is this a possibility on your side?

Last edited by seth (Yesterday 13:04:20)

Offline

#24 Yesterday 16:22:35

LogicalKarma
Member
Registered: 2024-05-19
Posts: 28

Re: Popping and buzzing in pipewire

Here is the output:

null
    Discard all samples (playback) or generate zero samples (capture)
iec958
    IEC958 (S/PDIF) Digital Audio Output
lavrate
    Rate Converter Plugin Using Libav/FFmpeg Library
samplerate
    Rate Converter Plugin Using Samplerate Library
speexrate
    Rate Converter Plugin Using Speex Resampler
jack
    JACK Audio Connection Kit
oss
    Open Sound System
pipewire
    PipeWire Sound Server
pulse
    PulseAudio Sound Server
speex
    Plugin using Speex DSP (resample, agc, denoise, echo, dereverb)
upmix
    Plugin for channel upmix (4,6,8)
vdownmix
    Plugin for channel downmix (stereo) with a simple spacialization
default:CARD=Audigy2
    SB Audigy 5/Rx [SB1550], ADC Capture/Standard PCM Playback
    Default Audio Device
sysdefault:CARD=Audigy2
    SB Audigy 5/Rx [SB1550], ADC Capture/Standard PCM Playback
    Default Audio Device
front:CARD=Audigy2,DEV=0
    SB Audigy 5/Rx [SB1550], ADC Capture/Standard PCM Playback
    Front output / input
rear:CARD=Audigy2,DEV=0
    SB Audigy 5/Rx [SB1550], ADC Capture/Standard PCM Playback
    Rear speakers
center_lfe:CARD=Audigy2,DEV=0
    SB Audigy 5/Rx [SB1550], ADC Capture/Standard PCM Playback
    Center and Subwoofer speakers
side:CARD=Audigy2,DEV=0
    SB Audigy 5/Rx [SB1550], ADC Capture/Standard PCM Playback
    Side speakers
surround21:CARD=Audigy2,DEV=0
    SB Audigy 5/Rx [SB1550], ADC Capture/Standard PCM Playback
    2.1 Surround output to Front and Subwoofer speakers
surround40:CARD=Audigy2,DEV=0
    SB Audigy 5/Rx [SB1550], ADC Capture/Standard PCM Playback
    4.0 Surround output to Front and Rear speakers
surround41:CARD=Audigy2,DEV=0
    SB Audigy 5/Rx [SB1550], ADC Capture/Standard PCM Playback
    4.1 Surround output to Front, Rear and Subwoofer speakers
surround50:CARD=Audigy2,DEV=0
    SB Audigy 5/Rx [SB1550], ADC Capture/Standard PCM Playback
    5.0 Surround output to Front, Center and Rear speakers
surround51:CARD=Audigy2,DEV=0
    SB Audigy 5/Rx [SB1550], ADC Capture/Standard PCM Playback
    5.1 Surround output to Front, Center, Rear and Subwoofer speakers
surround71:CARD=Audigy2,DEV=0
    SB Audigy 5/Rx [SB1550], ADC Capture/Standard PCM Playback
    7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
iec958:CARD=Audigy2,DEV=0
    SB Audigy 5/Rx [SB1550], ADC Capture/Standard PCM Playback
    IEC958 (S/PDIF) Digital Audio Output
usbstream:CARD=Audigy2
    SB Audigy 5/Rx [SB1550]
    USB Stream Output
hdmi:CARD=HDMI,DEV=0
    HDA ATI HDMI, HDMI 0
    HDMI Audio Output
hdmi:CARD=HDMI,DEV=1
    HDA ATI HDMI, HP E221c
    HDMI Audio Output
hdmi:CARD=HDMI,DEV=2
    HDA ATI HDMI, Odyssey G60SD
    HDMI Audio Output
hdmi:CARD=HDMI,DEV=3
    HDA ATI HDMI, LG ULTRAWIDE
    HDMI Audio Output
usbstream:CARD=HDMI
    HDA ATI HDMI
    USB Stream Output
default:CARD=Generic
    HD-Audio Generic, ALC897 Analog
    Default Audio Device
sysdefault:CARD=Generic
    HD-Audio Generic, ALC897 Analog
    Default Audio Device
front:CARD=Generic,DEV=0
    HD-Audio Generic, ALC897 Analog
    Front output / input
surround21:CARD=Generic,DEV=0
    HD-Audio Generic, ALC897 Analog
    2.1 Surround output to Front and Subwoofer speakers
surround40:CARD=Generic,DEV=0
    HD-Audio Generic, ALC897 Analog
    4.0 Surround output to Front and Rear speakers
surround41:CARD=Generic,DEV=0
    HD-Audio Generic, ALC897 Analog
    4.1 Surround output to Front, Rear and Subwoofer speakers
surround50:CARD=Generic,DEV=0
    HD-Audio Generic, ALC897 Analog
    5.0 Surround output to Front, Center and Rear speakers
surround51:CARD=Generic,DEV=0
    HD-Audio Generic, ALC897 Analog
    5.1 Surround output to Front, Center, Rear and Subwoofer speakers
surround71:CARD=Generic,DEV=0
    HD-Audio Generic, ALC897 Analog
    7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
usbstream:CARD=Generic
    HD-Audio Generic
    USB Stream Output
default:CARD=AT2020USBX
    AT2020USB-X, USB Audio
    Default Audio Device
sysdefault:CARD=AT2020USBX
    AT2020USB-X, USB Audio
    Default Audio Device
front:CARD=AT2020USBX,DEV=0
    AT2020USB-X, USB Audio
    Front output / input
surround21:CARD=AT2020USBX,DEV=0
    AT2020USB-X, USB Audio
    2.1 Surround output to Front and Subwoofer speakers
surround40:CARD=AT2020USBX,DEV=0
    AT2020USB-X, USB Audio
    4.0 Surround output to Front and Rear speakers
surround41:CARD=AT2020USBX,DEV=0
    AT2020USB-X, USB Audio
    4.1 Surround output to Front, Rear and Subwoofer speakers
surround50:CARD=AT2020USBX,DEV=0
    AT2020USB-X, USB Audio
    5.0 Surround output to Front, Center and Rear speakers
surround51:CARD=AT2020USBX,DEV=0
    AT2020USB-X, USB Audio
    5.1 Surround output to Front, Center, Rear and Subwoofer speakers
surround71:CARD=AT2020USBX,DEV=0
    AT2020USB-X, USB Audio
    7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
iec958:CARD=AT2020USBX,DEV=0
    AT2020USB-X, USB Audio
    IEC958 (S/PDIF) Digital Audio Output
usbstream:CARD=AT2020USBX
    AT2020USB-X
    USB Stream Output

I don't think hardware should be affecting it. I have tried multiple solutions over longer periods of time and even tried Ubuntu and Windows to check for differences on my speakers(which have not changed at all since then). The post you linked however is interesting. Some of the worst issues I've had (hellish cries on It takes two) were while playing with an Xbox series X controller (xpadneo), but not when I connected it. I doubt this is a case of causality since I haven't used one in a while and the issues persist.

Offline

#25 Today 15:03:48

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 70,426

Re: Popping and buzzing in pipewire

default:CARD=Audigy2
default:CARD=Generic (ALC897)
default:CARD=AT2020USBX
hdmi:CARD=HDMI,DEV=1
    HDA ATI HDMI, HP E221c
    HDMI Audio Output
hdmi:CARD=HDMI,DEV=2
    HDA ATI HDMI, Odyssey G60SD
    HDMI Audio Output
hdmi:CARD=HDMI,DEV=3
    HDA ATI HDMI, LG ULTRAWIDE
    HDMI Audio Output

Holy Moly…

however I am beginning to suspect a hardware specific issue as it's either worse or only existent while listening though my usb microphone

Remove the microphone. Do you get this at all?
Remove the Audigy2. Still get the noise?
Remove all but one monitor. Noise?
Remove all but one other monitor. Noise?

Offline

Board footer

Powered by FluxBB