Infra_HDC

Debian 9 @ RD2018: Sound In Skype (PulseAudio to ALSA)

Sep 30th, 2019 (edited)
319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. 1. The problem is a USB Webcam Microphone does not work in Skype for Linux
  2.  
  3. 2. Disable PulseAudio
  4. # nano -w /etc/pulse/client.conf
  5. autospawn = no
  6. # systemctl reboot
  7.  
  8. 3. May be one must to init ALSA
  9. # alsactl init
  10.  
  11. 4. If you are a KDE5-Plasma user, then install proper mixer
  12. # apt install kmix
  13.  
  14. 5. Do "ls -l /dev/snd/" and then play a sound file to detect what a card.device pair is proper
  15. $ mplayer -ao alsa:device=hw=1.0 /path/to/file.mp3
  16. (where 1 is a card number, 0 is a device number)
  17.  
  18. 6. Setup Skype for properly Audio Device & do Echo Test Sound Service call
  19.  
  20. 7. Set default ALSA device to enable sound in your browser
  21. # nano -w /usr/share/alsa/alsa.conf
  22. defaults.ctl.card 1
  23. defaults.pcm.card 1
  24. defaults.pcm.device 0
  25. (where 1 is a card number, 0 is a device number)
  26.  
  27. 8. Profit
Add Comment
Please, Sign In to add comment