Differences between revisions 3 and 9 (spanning 6 versions)
Revision 3 as of 2012-01-25 12:00:57
Size: 709
Editor: frrichar
Comment:
Revision 9 as of 2012-01-25 12:11:35
Size: 1018
Editor: frrichar
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
= Skype = = Skype =

A
VOIP application.
Line 9: Line 11:
' {{{
Line 27: Line 29:
}}}
Line 28: Line 31:
Note the line 'pcm "hw:0,0"' defines the sound card and its component to use. It should work of the box, but if you wish to choose a different sound card, adjust that line according to your system.
Line 29: Line 33:
' '''RESTART Skype'''
Line 31: Line 35:
Describe Workstations/Linux/Applications/Skype here. Otherwise the newly defined microphone capture device would not be found.

[[attachment:skype-dsnooped-shot.jpg]]

Skype

A VOIP application.

Problems

Your own voice sounds distorted/slow to others

Thats because Skype fails to init the microphone properly. A workaround is to define a capture device with correct values.

pcm.skypedsnoop {
   type dsnoop
   ipc_key 1133
   slave {
      # "Magic" buffer values to get skype audio to work
      # If these are not set, opening /dev/dsp succeeds but no sound
      # will be heard. According to the ALSA developers this is due
      # to skype abusing the OSS API.
      pcm "hw:0,0"
      period_size 256
      periods 16
      buffer_size 16384
   }
   bindings {
      0 0
   }
}

Note the line 'pcm "hw:0,0"' defines the sound card and its component to use. It should work of the box, but if you wish to choose a different sound card, adjust that line according to your system.

RESTART Skype

Otherwise the newly defined microphone capture device would not be found.

skype-dsnooped-shot.jpg

Workstations/Linux/Applications/Skype (last edited 2023-10-16 13:45:11 by alders)