• arthurpizza@lemmy.world
    link
    fedilink
    English
    arrow-up
    1
    ·
    11 hours ago

    I love it. I can run my microphone through noise-canceling when using video call software that doesn’t have its own noise-canceling. I can run an audio compressor over mpv if the movie does that loud explosion/quiet talking thing. You can assign each application a different effect stack.

  • patatahooligan@lemmy.world
    link
    fedilink
    English
    arrow-up
    6
    ·
    2 days ago

    I’m using pipewire with easyeffects and they both work great.

    For pipewire I’ve installed all the available compatibility layers: pipewire-pulse, pipewire-alsa, pipewire-jack, as well as every lib32 variant. Without all of these some apps would not work via pipewire.

    As for easyeffects, depending on your distro and how you install it, you might need to install the plugins separately. Otherwise the app will open but it won’t be able to actually apply any effects. First time I tried to use it I was confused about this.

  • rtxn@lemmy.world
    link
    fedilink
    English
    arrow-up
    8
    ·
    edit-2
    2 days ago

    Switch from Pulse? No reason not to. Use Wireplumber instead of pipewire-session-manager, and consider installing pipewire-pulse if any of your scripts rely on pactl (or rewrite them to use wpctl, which does much the same as pactl).

    As for Easyeffects, use the flatpak package to avoid dependency issues.

    • lemmy_user_838586@lemmy.world
      link
      fedilink
      English
      arrow-up
      2
      ·
      2 days ago

      I’m not familiar with easyeffects, I use a computer to watch media content and always have to adjust my volume for loud gunfire or soft dialogue. Does easyeffects have a volume normalization setting I could use to smooth out my media volume?

      • kalkulat@lemmy.worldOP
        link
        fedilink
        English
        arrow-up
        1
        ·
        edit-2
        1 day ago

        That’s one of the first problems I need solved, so thanks for asking. I used to use pulseEffects to get one place to go for system-wide volume, EQ & compression settings, and want that back.

        One of the problems it had was that many FX wouldn’t work without having to install a set of non-default libraries, and the available docs weren’t too clear on that. Will be visiting Ee docs.

      • rtxn@lemmy.world
        link
        fedilink
        English
        arrow-up
        2
        ·
        edit-2
        2 days ago

        Yes, it has both a compressor and a limiter. I don’t know how to set them up though.

  • GolfNovemberUniform@infosec.pub
    link
    fedilink
    English
    arrow-up
    4
    arrow-down
    8
    ·
    edit-2
    2 days ago

    Unlike Wayland, Pipewire just works as long as you have all needed packages installed. I’m not familiar with any compatibility issues at all. I highly recommend switching.

    • tht@social.pwned.page
      link
      fedilink
      English
      arrow-up
      3
      ·
      2 days ago

      Idk Wayland has been working for me for years now, my only issue is global keybindings but I just script them with sway, like for push to talk I have alt+x to unmute my mic then mute it again when I take my finger off it

      • Kogasa@programming.dev
        link
        fedilink
        English
        arrow-up
        1
        ·
        edit-2
        2 days ago

        Rant incoming, because I just happened to be dealing with this today.

        I tried the push to talk binding method in sway, and found it was extremely fragile because if you press any modifier keys before releasing the button, the release binding won’t trigger and your mic will stay open. This is especially problematic for my use case as I use both my push to talk hotkey and my modifier buttons while gaming.

        I just use a toggle mute hotkey instead of push-to-talk though. Just gotta remember to re-mute, and have a visual indicator for your mic status so you don’t accidentally leave it in the wrong state.

        Another workaround is binding all possible combinations of modifier keys explicitly, and passing in --device-id so that the binding doesn’t consume the keypress and instead forwards it on to the application. This should perfectly emulate the behavior of an X-style global hotkey. With 4 mods (super, ctrl, shift, alt) and 2 bindings per combination there are 2^5 = 32 total bindings for each such hotkey. However there’s still no telling if the key-release event could be missed somehow and leave your mic open. I don’t know how reliable this method is.

          • Kogasa@programming.dev
            link
            fedilink
            English
            arrow-up
            1
            ·
            edit-2
            19 hours ago

            If your binding is Alt+X, try pressing it down, tapping shift (press and release), then releasing X. The release keybind shouldn’t trigger.

            I tried the workaround with all modifier combinations but this still happens, even if you bind Shift+(Your Binding). Pressing “shift” while the a chord is held prevents the release event from being handled.