3

When I start Skype, the Startup sound sounds like that my speakers is going to break any time (kind of like nails scratching a blackboard).

But when I go to /usr/share/skype/sounds to find the startup sound, I opened it and the file doesn't sound anything wrong.

How do I fix this? It sounds bad no matter how I start it.

ish
  • 141,990

8 Answers8

4

The best solution to this problem is to disable the Glitch Free Audio part of Pulse, covered elsewhere

Skype and VLC sounds sizzle/distorted/bad

benaround
  • 68
  • 1
  • 4
2

Go to Startup Applications Preferences and edit the startup line for Skype:

sh -c "sleep 10 && skype"

Play with the 10 value. Get it lower until you start hearing the scratch. If you hear the scratch, raise the value by 1 again.

1

This boils down to one of two reasons (or a combination):

  1. CPU loaded at login when sound is played
  2. Some intrinsic problem with the Skype WAV files

Solution to (1) is to delay start OR temporarily elevate Skype priority

You can either delay the startup, as David Sousa/Marty Fried's answers indicate, OR you can temporarily elevate Skype's priority at startup to reduce any CPU contention issue.

This solution uses nice/renice, and requires adding the specific command with visudo (because only root can start processes with elevated priority). I'll expand on this later since the OP (Emerson) indicates this is not his problem -- Skype login sounds grainy even when he starts Skype after his computer has been idle for a few minutes.

Solution to (2) -- try changing the sound into a more standard format (resample)

  • Open a terminal, go to /usr/share/skype/sounds
  • Backup all files (they're tiny) with sudo tar -cvf originals.tar *.wav
  • Rename: sudo mv SkypeLogin.wav SkypeLoginOld.wav
  • Install SOundeXchange with sudo apt-get install sox (small CLI utility)
  • Resample the login sound to a standard 48000 Hz stereo format:
    sudo sox SkypeLoginOld.wav -c 2 -r 48000 SkypeLogin.wav
  • Now start Skype -- is it better?

If not, please try playing the Skype directory sounds in a regular player, and see if they still sound bad.

ish
  • 141,990
1

Found the solution. Kind of.

I went to /usr/share/skype/sounds, then I copied SkypeLogin.wav to my Music Folder in my home directory.

Then I went to Skype Options and Clicked on the Notification Settings.

Next I changed the Startup Sound file from the one in /usr/share/skype/sounds to the one in my Music Directory.

Last I logged out and logged in and Skype Sounded much better!

Maybe Skype can't read /usr/share/skype/sounds, not sure what caused the problem but all works great now.

1

Just uninstall skype and re-install it from terminal using these commands

Install Skype on Ubuntu 32 bit

wget -O skype http://download.skype.com/linux/skype-ubuntu_4.0.0.8-1_i386.deb
sudo apt-get install libxss1
sudo dpkg -i skype && sudo apt-get -f install && sudo rm skype

Install Skype on Ubuntu 64 bit

wget -O skype http://download.skype.com/linux/skype-ubuntu_4.0.0.8-1_amd64.deb
sudo apt-get install libxss1 lib32stdc++6 lib32asound2 ia32-libs libc6-i386 lib32gcc1
sudo apt-get -f install
sudo dpkg -i skype && sudo rm skype
Yi Jiang
  • 1,206
0

I have found that these scratchy sounds are the result of a USB headset combined with a regular sound board (integrated or not).

What I did to solve this was to install Pulse Audio Preferences (from the Software center). Once installed, open it and enable "simultaneous output". Then open the sound settings, and highlight the "Simultaneous output on built in ...". You shouldn't have to reboot, but you may have to.

0

Sometimes scratchy Noises are due to a program called Skype Wrapper. Its an independent program for adding a bar (Like the ones used for when Rythmbox changes songs) I would check to see if you have it by using:

sudo dpkg-query -Wf '${Installed-Size}\t${Package}\n' | sort -n

Then after remove it by using:

Sudo apt-get remove skype-wrapper

Restart skype, It's not 100% but it helped me.

FoxyRK9
  • 53
  • 1
  • 13
-1

Modified the permissions of the wav files:

chmod 777 /usr/share/skype/sounds/*

This will make the Skype sounds much better.