Created
November 15, 2020 18:19
-
-
Save vchuravy/a25ea9533099224a0c4604191f6c668d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This file is part of PulseAudio. | |
| # | |
| # PulseAudio is free software; you can redistribute it and/or modify | |
| # it under the terms of the GNU Lesser General Public License as | |
| # published by the Free Software Foundation; either version 2.1 of the | |
| # License, or (at your option) any later version. | |
| # | |
| # PulseAudio is distributed in the hope that it will be useful, but | |
| # WITHOUT ANY WARRANTY; without even the implied warranty of | |
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| # General Public License for more details. | |
| # | |
| # You should have received a copy of the GNU Lesser General Public License | |
| # along with PulseAudio; if not, see <http://www.gnu.org/licenses/>. | |
| ; Shure MV7 | |
| ; | |
| ; See default.conf for an explanation on the directives used here. | |
| [General] | |
| auto-profiles = no | |
| [Mapping analog-stereo-headphone] | |
| description = Headphone | |
| device-strings = hw:%f | |
| channel-map = front-left,front-right | |
| direction = output | |
| [Mapping analog-input-mic] | |
| description = Microphone | |
| device-strings = hw:%f | |
| channel-map = mono | |
| direction = input | |
| [Profile output:analog-stereo-headphone+input:analog-input-mic] | |
| description = Microphone+Headphone | |
| output-mappings = analog-stereo-headphone | |
| input-mappings = analog-input-mic | |
| skip-probe = yes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Replaced PulseAudio with PipeWire
Add ppa for latest build
sudo add-apt-repository ppa:pipewire-debian/pipewire-upstreamUpdate
sudo apt updateInstall components
sudo apt install gstreamer1.0-pipewire pipewire-media-session libspa-0.2-bluetooth libspa-0.2-jack pipewire pipewire-audio-client-librariesIf you get unmet dependencies, you can run:
sudo apt --fix-broken installThen re-run
sudo apt install gstreamer1.0-pipewire pipewire-media-session libspa-0.2-bluetooth libspa-0.2-jack pipewire pipewire-audio-client-librariesReload new services
systemctl --user daemon-reloadDisable PulseAudio service
systemctl --user --now disable pulseaudio.service pulseaudio.socketIf you update from previous version
systemctl --user mask pulseaudioEnable Pipewire services
systemctl --user --now enable pipewire pipewire-pulseEnable Pipewire media session
systemctl --user --now enable pipewire-media-session.service