diff options
author | neodarz <neodarz@neodarz.net> | 2017-06-20 19:03:17 +0200 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2017-06-20 19:03:17 +0200 |
commit | 6dbdf013628321f9996efe4a90eaa03b8a8875a4 (patch) | |
tree | 0d48ee911685c9170ee7750b5cc21e117918a5d5 /source/notes/2017-06-19-pulseaudio.md | |
parent | e11b17c3265cca97b244fa368391cdfe8dd182f0 (diff) | |
download | my_new_personal_website-6dbdf013628321f9996efe4a90eaa03b8a8875a4.tar.xz my_new_personal_website-6dbdf013628321f9996efe4a90eaa03b8a8875a4.zip |
Fork of wiki.neodarz.net
Diffstat (limited to '')
-rw-r--r-- | source/notes/2017-06-19-pulseaudio.md | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/source/notes/2017-06-19-pulseaudio.md b/source/notes/2017-06-19-pulseaudio.md new file mode 100644 index 00000000..296705ec --- /dev/null +++ b/source/notes/2017-06-19-pulseaudio.md @@ -0,0 +1,77 @@ +--- +title: "pulseaudio" +date: 2017-06-19T22:15:00 +date_display: Jun 19, 2017 +--- + + +Sources : + +- [https://www.freedesktop.org/wiki/Software/PulseAudio/Backends/ALSA/Profiles/](https://www.freedesktop.org/wiki/Software/PulseAudio/Backends/ALSA/Profiles/) + +- [https://wiki.archlinux.org/index.php/PulseAudio/Examples#Having_both_speakers_and_headphones_plugged_in_and_switching_in_software_on-the-fly](https://wiki.archlinux.org/index.php/PulseAudio/Examples#Having_both_speakers_and_headphones_plugged_in_and_switching_in_software_on-the-fly) + +Connaître le nom de chaque entrées et sorties son du pc : + +```sh +-> ls /proc/asound/card*/codec* | xargs grep "\[\(Jack\|Fixed\|Both\)" + +/proc/asound/card0/codec#0: Pin Default 0x99430130: [Fixed] SPDIF Out at Int ATAPI +/proc/asound/card0/codec#0: Pin Default 0x01014010: [Jack] Line Out at Ext Rear +/proc/asound/card0/codec#0: Pin Default 0x01a19040: [Jack] Mic at Ext Rear +/proc/asound/card0/codec#0: Pin Default 0x02a19050: [Jack] Mic at Ext Front +/proc/asound/card0/codec#0: Pin Default 0x0181304f: [Jack] Line In at Ext Rear +/proc/asound/card0/codec#0: Pin Default 0x02214020: [Jack] HP Out at Ext Front +/proc/asound/card1/codec#0: Pin Default 0x185600f0: [Jack] Digital Out at Int HDMI +/proc/asound/card1/codec#0: Pin Default 0x185600f0: [Jack] Digital Out at Int HDMI +/proc/asound/card1/codec#0: Pin Default 0x185600f0: [Jack] Digital Out at Int HDMI +/proc/asound/card1/codec#0: Pin Default 0x185600f0: [Jack] Digital Out at Int HDMI +/proc/asound/card1/codec#0: Pin Default 0x185600f0: [Jack] Digital Out at Int HDMI +/proc/asound/card1/codec#0: Pin Default 0x185600f0: [Jack] Digital Out at Int HDMI +``` + +Une fois ceci fait, on modifie les fichiers (dans mon cas) /usr/share/pulseaudio/alsa-mixer/paths/analog-output-lineout.conf et /usr/share/pulseaudio/alsa-mixer/paths/analog-output-headphones.conf. + +Pour information j'ai une configuration un peu atypique car mon casque est branché à l'arrière alors que meshHaut parleurs à l'avant. Pourquoi ? Tout simplement que les appareils USB, type clé USB, branché à l'avant de ma tour ne sont pas bien détéctés alors qu'alors à l'arrière suelement un peu mieu... oui un peu (c'est un autre mystère à élucider et ca serait pour une prochaine fois ;) ) + +Du coup dans mon fichier analog-output-lineout.conf j'ai rajouter, avant l'include la ligne suivante: + +```sh +[Element Front] +switch = off +volume = off +``` + +Et dans le fichier analog-output-headphones.conf j'ai modifier selon les paramètres suivant : + +```sh +[Jack Line Out Phantom] +state.plugged = yes // j'ai juste remplacé no par yes ici ! +state.unplugged = unknow +required-any = any +``` + +Au passage on peut remarquer Line Out Phantom n'est pas dans la liste de nom des sorties du PC, c'est parcque j'ai jouée avec hdajackretask avant et ducoup des truc ont été modifié dans mon système... Encore un autre mystère à résoudre ! + +Et en bonus voici ma commande perso que je parramètre pour changer de sortie sur i3 (C'est la commande brut à copier coller dans votre terminal) : + +```sh +if [[ $(echo $(pacmd list | grep "active port") | cut -d" " -f3 | cut -d"<" -f2 | cut -d">" -f1) == "analog-output-lineout" ]]; then pacmd set-sink-port 0 analog-output-headphones; elif [[ $(echo $(pacmd list | grep "active port") | cut -d" " -f3 | cut -d"<" -f2 | cut -d">" -f1) == "analog-output-headphones" ]]; then pacmd set-sink-port 0 analog-output-lineout; fi +``` + +Ou en format lisible, avec variables en bonus : + +```sh +#/bin/sh + +headphones="analog-output-headphones" +lineout="analog-output-lineout" + +if [[ $(echo $(pacmd list | grep "active port") | cut -d" " -f3 | cut -d"<" -f2 | cut -d">" -f1) == $lineout ]] +then + pacmd set-sink-port 0 $headphones +elif [[ $(echo $(pacmd list | grep "active port") | cut -d" " -f3 | cut -d"<" -f2 | cut -d">" -f1) == $headphones ]] +then + pacmd set-sink-port 0 $lineout +fi +``` |