Bug 217786
Summary: | No support for "mic boost" control on MSI B650 TOMAHAWK WIFI board | ||
---|---|---|---|
Product: | Drivers | Reporter: | nas-linuxbugzilla |
Component: | Sound(ALSA) | Assignee: | Jaroslav Kysela (perex) |
Status: | NEW --- | ||
Severity: | normal | ||
Priority: | P3 | ||
Hardware: | All | ||
OS: | Linux | ||
Kernel Version: | Subsystem: | ||
Regression: | No | Bisected commit-id: | |
Attachments: | Dump from alsactl and alsaucm |
Description
nas-linuxbugzilla
2023-08-11 22:23:16 UTC
I tried compiling the v6.5-rc5 Linux kernel but that doesn't help. I'm not surprised since there doesn't seem to be any relevant changes in the sound/* tree. I found a work-around for the lack of mic boost. With pipewire, it seems you can set a volume property that will increase the gain of the mic signal. I'm not sure what the downside of this would be but at least I can use applications that expect a larger mic input signal. ################################################ #!/bin/sh set -e # This is the node.description for the mic name='USB Audio Microphone' # Default value is 1.0. volume=15 # Lookup id of node for mic id=$(pw-dump -N| \ jq --arg n "$name" \ '..|objects|select(.["node.description"]==$n)|.["object.id"]') # Set volume property pw-cli set-param $id Props "{ volume: $volume }" ################################################ |