-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Apulse doesn't work with discord with softvol plugin #83
Comments
@Svalorzen by registering default virtual soundcard, built from Try asym. |
@Alexander-- Could you possibly make an example? I'm afraid that I've never been able to 100% understand how the ALSA system works.. |
@Svalorzen There is nothing non-intuitive about it — chain plugins together to get what you want. Many plugins are half-duplex, and have other limitations and requirements so you frequently need to insert them in specific places to build a working chain. The config below used to work for me, but use your own judgement to tune it to your liking.
|
If I don't want to touch the microphone, could I just use
without specifying the capture? Or how to leave that part alone? The problem is not whether it's intuitive or not, it's that the documentation for the |
@Svalorzen ALSA has virtually no "magic" inside, — if you don't specify capture, there might be no capture. AFAIK, the only thing, that might be done by default, is automatically enabling dmix when there is no asound.conf (so people without asound.conf still get software-mixed sound from multiple apps). And they only added that because some projects (khem pulse…khem…audio) have taken advantage of lack of mixing by default to spread false claims, that ALSA needs separate mixing solution. Default ALSA configuration delegates both playback and capture to hardware device (soundcard). Software devices ("plugins") can extend capability of hardware device, but also have their own limitations. There is a software device ("plug") that performs format conversions. Other software devices do not perform format conversions. There is a software device, that performs volume adjustment. Other software devices do not perform volume adjustment. There is a software device for mixing recorded sound… Most software devices in ALSA distribution don't look at bigger picture. They won't do clever things like picking up a hardware sound as default slave or switching to another soundcard, when you disable the current one. You needs to write that down by hand in asound.conf. The go-to excuse for non-existence of proper ALSA documentation is that Linux distributions are responsible for configuring it. Which is dumb, because
Well, that's something programmers commonly do. Most people are too afraid to become programmers, so you need to convince them, that what they do is not called "programming". I recall Richard Stallman once discussed how he convinced a secretary to write plugins for Emacs by explaining, that this is just configuring their text editor (and totally not "programming", lol). |
I never had to use any hand-written But I need to mention, that ALSA comes with a lot of configuration files. They should be in |
Sorry for this question, I'm not 100% sure where to ask.
I'm using apulse and everything seems to work fine. A couple of days ago, however, I noticed that my headphones were not as loud as I wanted (not apulse related), so after looking around a bit I found in the ALSA wiki the following:
This adds a pre-amp control to alsa which regulates the volume. I added it to
/etc/asound.conf
. This works, but after doing this Discord stops working (if I remove it it starts working again). The error isWhat am I doing wrong? How can I add this plugin without breaking Discord's access to ALSA?
The text was updated successfully, but these errors were encountered: