this post was submitted on 08 Sep 2024
45 points (95.9% liked)

Linux

47473 readers
1099 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

I sometimes play games and also open my music player, but the sound from the game drowns out the music, so I need to go into the sound mixer on KDE and manually lower the game's volume every time.
I was wondering, is there a way to do this process automatically? As in setting up conditions like "if music is playing (some MPRIS API?) then lower all other apps' volumes)", maybe even crazier "if some app is outputting voice then set its volume back up and lower music app's volume or pause its playback altogether for some specified timeout that keeps being refreshed for as long as voice is heard".
I imagine the latter is a bit of a dream, but maybe for the first, even some quick sound profile selector would go a long way, say switching from "normal profile" to "background music profile", etc. which specify preconfigured volumes for those apps.
Is that a thing?

all 20 comments
sorted by: hot top controversial new old
[–] [email protected] 7 points 3 weeks ago (1 children)

The details depend a bit on the audiostack of your distro, but they all have a cli program with which you can change inputs/outputs and volume; e.g. pactl for pulseaudio and wpctl for wireplumber.

You’ll need a mechanism to find your triggers (I create a firefox tab with youtube/spotify, I have a music player active) and then you can act on it.

Detecting voice in an audiostream is probably technically possible, but that sounds pretty hard to setup.

[–] [email protected] 1 points 3 weeks ago* (last edited 3 weeks ago) (1 children)

So what I'm getting is that I would have to come up with something myself, right? I mean that would be super cool to do, but I don't have the time to put into that, unfortunately

[–] [email protected] 1 points 2 weeks ago

Yes, a quick web search later I haven’t found a readymade solution.

Setting the volume for specific outputs is not very hard, so maybe a middleground solution is to have two shortcuts. One for “game mode” and one for “music mode” or whatever.

[–] [email protected] 4 points 3 weeks ago (1 children)
[–] [email protected] 2 points 3 weeks ago (1 children)

55 minutes? Uhm, could you tell me the relevant section of the video, please?

[–] [email protected] 2 points 3 weeks ago (2 children)
[–] [email protected] 4 points 3 weeks ago* (last edited 3 weeks ago) (2 children)

Why so irritable? I'm just asking, I don't even know German, I thought since you knew the video already, you could point me in the right direction, rather than me having to sift through it all while also passing it through a translator to hopefully (because I don't know how well youtube's auto-translate feature works) find the information I'm looking for in the whole presentation

[–] [email protected] 1 points 2 weeks ago

So you dont know german, this changes some things.

The person explains

  • Alsa
  • pulseaudio
  • jack
  • pipewire
  • audio hardware
  • jack plugins
  • common types of audio modulation (compression, limiting, amplifying, equalizing,...)
  • how pipewire combines all of those
[–] [email protected] 1 points 2 weeks ago

The app is called "carla" and is a plugin host for jack plugins that works with Pipewire

[–] [email protected] 1 points 2 weeks ago (1 children)

this is high level trolling, kudos sir

[–] [email protected] 2 points 2 weeks ago

Hahaha wasnt meant like that

[–] [email protected] 4 points 2 weeks ago* (last edited 2 weeks ago)

Pulseaudio should have hooks

# cat /etc/pulse/default.pa
load-module module-switch-on-connect
load-module module-exec
load-module module-exec arguments="path/to/your/script.sh %s"    

(where %s resolves on trigger to the name of the sink added)

Your script.sh should then match the first argument to the name of the sink you want to control, and then run

# path/to/your/script.sh
if [ "$1" = "THESINKIWANT" ]; then
  pactl set-sink-volume $1 40%
fi
[–] [email protected] 3 points 3 weeks ago (1 children)
[–] [email protected] 3 points 3 weeks ago* (last edited 3 weeks ago)

This is the architecture though, I'm asking about an application that can interact with it

[–] [email protected] 2 points 2 weeks ago* (last edited 2 weeks ago)

I found this software a couple of days ago. Not sure if it will really help with your first problem 😆 because I'm still figuring it out myself. But looks promising. https://github.com/wwmm/easyeffects

[–] [email protected] 2 points 2 weeks ago (1 children)

If you find a way to do this, it would be cool if you can share it!

[–] [email protected] 2 points 2 weeks ago

Will do, hopefully there is one