Pulse Audio Volume Reset Fix: Difference between revisions

From JoBaPedia
Jump to navigation Jump to search
No edit summary
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
= Opensuse 13.x
On my notebook (Lenovo T510i) right channel audio does not work anymore with openSUSE.
After hours of wading through websites I found a solution:
 
= openSUSE 13.x =


edit the file:  
edit the file:  
Line 17: Line 20:
  volume = merge
  volume = merge


= Opensuse Leap 42.1
= openSUSE Leap 42.1 =


above already set, along with a lot of other, similar settings. Didn't find the proper place to fix.
above setting is already done, along with a lot of other, similar settings. Didn't find the proper place to fix.
Butr alternate solution still works:
But alternate solution still works:


  amixer -c 0 -- sset Speaker playback 100%
  amixer -c 0 -- sset Speaker playback 100%
Line 26: Line 29:
Probably best to put that in /etc/init.d/boot.local or similar
Probably best to put that in /etc/init.d/boot.local or similar


Sources:
No idea why this works, because if you look at the settings with "amixer -c 0" before, it looks exactly the same as afterwards:
 
Simple mixer control 'Speaker',0
  Capabilities: pvolume pswitch
  Playback channels: Front Left - Front Right
  Limits: Playback 0 - 74
  Mono:
  Front Left: Playback 74 [100%] [0.00dB] [on]
  Front Right: Playback 74 [100%] [0.00dB] [on]
= Sources =
* [[https://fitzcarraldoblog.wordpress.com/2014/12/01/fix-for-alsa-speaker-volume-level-resetting-to-zero-at-boot/ fitzcarraldoblog.wordpress.com]]
* [[https://fitzcarraldoblog.wordpress.com/2014/12/01/fix-for-alsa-speaker-volume-level-resetting-to-zero-at-boot/ fitzcarraldoblog.wordpress.com]]
* [[https://forums.opensuse.org/showthread.php/506090-Sound-stopped-working?p=2701125#post2701125 forums.opensuse.org]]
* [[https://forums.opensuse.org/showthread.php/506090-Sound-stopped-working?p=2701125#post2701125 forums.opensuse.org]]

Latest revision as of 08:11, 16 November 2015

On my notebook (Lenovo T510i) right channel audio does not work anymore with openSUSE. After hours of wading through websites I found a solution:

openSUSE 13.x

edit the file:

/usr/share/pulseaudio/alsa-mixer/paths/analog-output.conf

change this:

[Element Speaker]
switch = mute
volume = off

to this:

[Element Speaker]
switch = mute
volume = merge

openSUSE Leap 42.1

above setting is already done, along with a lot of other, similar settings. Didn't find the proper place to fix. But alternate solution still works:

amixer -c 0 -- sset Speaker playback 100%

Probably best to put that in /etc/init.d/boot.local or similar

No idea why this works, because if you look at the settings with "amixer -c 0" before, it looks exactly the same as afterwards:

Simple mixer control 'Speaker',0
  Capabilities: pvolume pswitch
  Playback channels: Front Left - Front Right
  Limits: Playback 0 - 74
  Mono:
  Front Left: Playback 74 [100%] [0.00dB] [on]
  Front Right: Playback 74 [100%] [0.00dB] [on]

Sources