Sound Problems/zh-tw: Difference between revisions

    From KDE UserBase Wiki
    m (Created page with "常見的問題有 * 你不能播放聲音,因為你正在使用一個程序試著訪問聲卡設備/dev/dsp,但是這個設備已經被另外一個程序佔用了。 * 你...")
    m (Created page with "解決辦法: 沒有什麼高招可以解決你所有的音效問題。解決辦法依賴於你用來播放聲音的程序。舉個例子,你可以用mplayer+ALSA或mplayer+OSS...")
    Line 10: Line 10:
    * 不同的程序用不同的設備播放聲音。
    * 不同的程序用不同的設備播放聲音。


    Solutions:
    解決辦法:
    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
    沒有什麼高招可以解決你所有的音效問題。解決辦法依賴於你用來播放聲音的程序。舉個例子,你可以用mplayer+ALSA或mplayer+OSS。要了解更多信息,用如下命令查閱mplayer的文檔。
     
    {{Input|1= mplayer -ao help}}
    {{Input|1= mplayer -ao help}}



    Revision as of 15:42, 19 February 2011

    理解音效

    為了理解KDE的音效,你必須了解Linux聲音系統(這個章節假定你是在Linux上跑KDE)。有兩種類型的聲音系統運行在Linux上: ALSAOSS。兩者都提供他們自己的聲卡驅動。 ALSA只能在Linux上用,OSS可以在多種UNIX系統上用。 ALSA允許多個程序同時訪問聲卡,OSS 不行。 OSS提供一個設備來輸出聲音。這個設備在一個時間只能被一個程序訪問。為了減少混亂,ALSA模擬了OSS,也提供一個設備作為聲卡的接口。通常ALSA和OSS一樣將聲卡的設備命名為/dev/dsp。在某些發行版中用的PulseAudio,提供了上述那些之上的另一 層(layer)。它的任務是處理多個音頻流,以便,舉個例子, 你可以在聽音樂的同時接受到消息通知。

    常見的問題有

    • 你不能播放聲音,因為你正在使用一個程序試著訪問聲卡設備/dev/dsp,但是這個設備已經被另外一個程序佔用了。
    • 你不能使用全系統設置用的混音器kmix來調節使用聲卡設備/dev/dsp的某一個程序的音量。
    • 不同的程序用不同的設備播放聲音。

    解決辦法: 沒有什麼高招可以解決你所有的音效問題。解決辦法依賴於你用來播放聲音的程序。舉個例子,你可以用mplayer+ALSA或mplayer+OSS。要了解更多信息,用如下命令查閱mplayer的文檔。

    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