Sound Problems/ca: Difference between revisions

From KDE UserBase Wiki
(Created page with "Els problemes habituals de so són * No podeu reproduir so perquè esteu usant una aplicació que intenta accedir al dispositiu de so /dev/dsp, però aquest dispositiu ja està ...")
(Created page with "Solucions: No hi ha una bala de plata per a resoldre tots els problemes de so. La solució depèn de l'aplicació que utilitzeu per a reproduir so. Com a exemple, podeu usar mpl...")
Line 9: Line 9:
* Aplicacions diferents reprodueixen sons usant dispositius diferents.
* Aplicacions diferents reprodueixen sons usant dispositius diferents.


Solutions:
Solucions:
There is no silver bullet solving all your sound problems. The solution depends on the application you use to play sound. As an example, you can use mplayer with ALSA and OSS. For more info, see mplayer's documentation by calling
No hi ha una bala de plata per a resoldre tots els problemes de so. La solució depèn de l'aplicació que utilitzeu per a reproduir so. Com a exemple, podeu usar mplayer amb ALSA i OSS. Per a més informació, mireu la documentació de mplayer escrivint:
{{Input|1= mplayer -ao help}}
{{Input|1= mplayer -ao help}}



Revision as of 22:43, 18 March 2011

Entenent el so

Amb la finalitat d'entendre el so en KDE, haeu de comprendre el so en Linux (aquest capítol assumeix que esteu executant KDE en Linux). Hi ha dos tipus de sistemes de so que s'executen en Linux: ALSA i OSS. Tots dos proporcionen els seus propis controladors per a les targetes. ALSA només funciona en Linux, mentre que OSS funciona en molts sistemes UNIX. ALSA permet que diverses aplicacions tinguin accés alhora a la targeta de so, OSS no. OSS proporciona un dispositiu per a sortida de so, i a aquest dispositiu només pot hi accedir una aplicació alhora. Per a reduir la confusió, ALSA emula a OSS i també proporciona un dispositiu com a interfície per a la targeta de so. Tant ALSA com OSS normalment criden al dispositiu de la targeta de so /dev/dsp. PulseAudio, en algunes distribucions, proporciona una altra capa sobre aquestes. El seu treball és gestionar diversos fluxos, de manera que, per exemple, pugueu rebre una notificació de missatge mentre escolteu música.

Els problemes habituals de so són

  • No podeu reproduir so perquè esteu usant una aplicació que intenta accedir al dispositiu de so /dev/dsp, però aquest dispositiu ja està sent usat per una altra aplicació.
  • No podeu usar el mesclador del sistema kmix per ajustar el volum d'una aplicació usant el dispositiu de so /dev/dsp.
  • Aplicacions diferents reprodueixen sons usant dispositius diferents.

Solucions: No hi ha una bala de plata per a resoldre tots els problemes de so. La solució depèn de l'aplicació que utilitzeu per a reproduir so. Com a exemple, podeu usar mplayer amb ALSA i OSS. Per a més informació, mireu la documentació de mplayer escrivint:

mplayer -ao help

Here are some specific issues that you may meet.

KDE 4 uses the wrong sound device.

That is not an error, but a configuration issue. To tell KDE 4 which soundcard to use (or prefer if available), open System Settings and go to Multimedia in the General tab.

Devices from /etc/asound.conf or ~/.asoundrc are not listed.

Phonon uses a function introduced in ALSA 1.0.14 to find those devices. To make this function list your entry you need to add a name hint. E.g.

hint {
     show on
     description "Name to display for the device"
 }

Here is a complete example that adds a new volume control named Phonon to your mixer:

pcm.softvolPhonon {
     type softvol
     slave.pcm "default:CARD=0"
     control {
         name "Phonon"
         card 0
     }
     min_dB -51.0
     max_dB 0.0
     resolution 100
     hint {
         show on
         description "My Soundcard with extra Volume Control"
     }
 }

After an update, PulseAudio gives you very low volume

PulseAudio has a 'normaliser' function which can cause this. To turn it off, set flat-volumes = no in /etc/pulse/daemon.conf


You are using KDE 3 and you keep losing sound. Sometimes it works, sometimes it doesn't.

KDE 3.x uses the aRts sound system. In earlier versions there were a number of problems, but in recent years the only problem remaining seems to be that aRts hangs on to the sound system when it has finished with it. To cure this, use kcontrol -> Sound & Multimedia. Towards the bottom of the General tab there is a setting for Auto-suspend if idle after: Set this to 1 second.

You have multimedia keys but KDE doesn't recognise them

This link has a clear description of what one user did to make his Volume-up and Volume-down keys work.

You tried all of the above but it still doesn't work (Ubuntu variants only)

Try replacing your sound card. If you still don't hear sound, check out this Ubuntu Community page

You want to use an External Sound Card

See the External Sound Card page