Sound Card Selection

I have installed the full version of Captivate and attempted
to make my first recording. There are no options that I can find to
select my sound recording device, and it seems to ignore the
settings in Control Panel. I have an Edirol USB Audio Capture
UA-25. If I go ahead and just record, it acts like it is working,
then when I stop recording, Captivate crashes with several Error
216 windows. I recall reading something about USB devices and
Captivate some time ago, but can't remember exactly. Any
ideas?

Hi Ken
Indeed, I believe many folks have discovered that Captivate
frequently has issues when using USB mikes.
Link
one
Link
two
Sincerely... Rick

Similar Messages

  • [Wine] Sound card selecting issues

    Since a month or too, after one of my weekly updates, wine started to select the wrong sound card for its audio playback. Thus, alas, no sound in wine applications.
    When selecting the audio tab in winecfg, I get the following console output:
    fixme:mixer:ALSA_MixerInit No master control found on HDA NVidia, disabling mixer
    fixme:jack:JACK_drvLoad error loading the jack library libjack.so.0, please install this library to use jack
    I don't use jack, so that can be ignored. The HDA NVidia - the S/PDIF on my NVidia video card I presume, I don't use either. What I do use is my onboard sound chip in combination with alsa, which works perfectly on non-wine applications.
    So, I got the following set up:
    $ cat /proc/asound/modules
    0 snd_hda_intel
    1 snd_hda_intel
    $ aplay -l
    **** List of PLAYBACK Hardware Devices ****
    card 0: SB [HDA ATI SB], device 0: VT1818S Analog [VT1818S Analog]
    Subdevices: 2/2
    Subdevice #0: subdevice #0
    Subdevice #1: subdevice #1
    card 0: SB [HDA ATI SB], device 1: VT1818S Digital [VT1818S Digital]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 1: NVidia [HDA NVidia], device 3: HDMI 0 [HDMI 0]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 1: NVidia [HDA NVidia], device 7: HDMI 0 [HDMI 0]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 1: NVidia [HDA NVidia], device 8: HDMI 0 [HDMI 0]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 1: NVidia [HDA NVidia], device 9: HDMI 0 [HDMI 0]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    $ ls -l /sys/module/snd/holders
    total 0
    lrwxrwxrwx 1 root root 0 Feb 21 12:14 snd_hda_codec -> ../../snd_hda_codec
    lrwxrwxrwx 1 root root 0 Feb 21 12:14 snd_hda_codec_hdmi -> ../../snd_hda_codec_hdmi
    lrwxrwxrwx 1 root root 0 Feb 21 12:14 snd_hda_codec_via -> ../../snd_hda_codec_via
    lrwxrwxrwx 1 root root 0 Feb 21 12:14 snd_hda_intel -> ../../snd_hda_intel
    lrwxrwxrwx 1 root root 0 Feb 21 12:14 snd_hwdep -> ../../snd_hwdep
    lrwxrwxrwx 1 root root 0 Feb 21 12:14 snd_pcm -> ../../snd_pcm
    lrwxrwxrwx 1 root root 0 Feb 21 12:14 snd_seq -> ../../snd_seq
    lrwxrwxrwx 1 root root 0 Feb 21 12:14 snd_seq_device -> ../../snd_seq_device
    lrwxrwxrwx 1 root root 0 Feb 21 12:14 snd_seq_oss -> ../../snd_seq_oss
    lrwxrwxrwx 1 root root 0 Feb 21 12:14 snd_timer -> ../../snd_timer
    $ lsmod|grep '^snd' | column -t
    snd_hda_codec_hdmi 22593 4
    snd_hda_codec_via 52963 1
    snd_seq_dummy 1479 0
    snd_seq_oss 29240 0
    snd_seq_midi_event 5516 1 snd_seq_oss
    snd_seq 50562 5 snd_seq_dummy,snd_seq_oss,snd_seq_midi_event
    snd_seq_device 5281 3 snd_seq_dummy,snd_seq_oss,snd_seq
    snd_hda_intel 21837 1
    snd_hda_codec 74577 3 snd_hda_codec_hdmi,snd_hda_codec_via,snd_hda_intel
    snd_hwdep 6222 1 snd_hda_codec
    snd_pcm 72321 2 snd_hda_intel,snd_hda_codec
    snd_timer 19537 2 snd_seq,snd_pcm
    snd 58906 12 snd_hda_codec_hdmi,snd_hda_codec_via,snd_seq_oss,snd_seq,snd_seq_device,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm,snd_timer
    snd_page_alloc 7361 2 snd_hda_intel,snd_pcm
    Note that I already blacklisted snd_hda_codec_nvhdmi, which was in the above output before blacklisting.
    Also note the weirdness of having two identical modules for card 0 and card 1. I guess the chip on the video card is Intel as well. I this possible?
    Now the list of things I tried, all without a positive result.
    First, I completely reconfigured my alsa set up.
    Secondly, I blacklisted snd_hda_codec_nvhdmi in /etc/rc.conf
    Thirdly, I used the info from http://wiki.winehq.org/UsefulRegistryKeys to force wine to use card0:
    AutoScanCards=N
    AutoScanDevices=N
    DeviceCTL1=hw:0
    DevicePCM1=hw:0
    Fourthly, I edited .asoundrc to force alsa to use only card0:
    # define soundcard to use, hw0:0
    pcm.!default {
    type hw
    card SB
    # device 0
    # define control device to use, hw0:0
    ctl.!default {
    type hw
    card SB
    # device 0
    Finally, I tried the above globally in /etc/asound.conf
    I even waited two wine updates to see if that would fix it.
    All above did not solve the sound issue and winecfg still gives the same error output as before.
    Note that the sound works fine in everything, except in wine.
    Anyone has any ideas or insight?

    Hi!
    Similar problem here
    [zom@myhost ~]$ winecfg
    fixme:mixer:ALSA_MixerInit No master control found on HDA NVidia, disabling mixer
    fixme:mixer:ALSA_MixerInit No master control found on HDA NVidia, disabling mixer
    err:module:load_builtin_dll failed to load .so lib for builtin L"winemp3.acm": libmpg123.so.0: no se puede abrir el fichero del objeto compartido: No existe el fichero o el directorio
    fixme:winmm:proc_PlaySound Couldn't play header
    fixme:winmm:proc_PlaySound Couldn't play header
    [zom@myhost ~]$ aplay -l
    **** List of PLAYBACK Hardware Devices ****
    card 0: Intel [HDA Intel], device 0: ALC889A Analog [ALC889A Analog]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 0: Intel [HDA Intel], device 1: ALC889A Digital [ALC889A Digital]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 1: NVidia [HDA NVidia], device 3: HDMI 0 [HDMI 0]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 1: NVidia [HDA NVidia], device 7: HDMI 0 [HDMI 0]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 1: NVidia [HDA NVidia], device 8: HDMI 0 [HDMI 0]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 1: NVidia [HDA NVidia], device 9: HDMI 0 [HDMI 0]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    [zom@myhost ~]$ cat /proc/asound/modules
    0 snd_hda_intel
    1 snd_hda_intel
    I will follow some of your steps and research a bit to see if I can find something.
    Please remember to post if you get it working!
    Regards,
    Edit:
    Seems the card is not well specified in your /etc/asound.conf
    % cat /etc/asound.conf
    pcm.!default {
    type plug
    slave.pcm {
    type hw
    card 0
    device 3
    I think you should put the device also, as shown on your "aplay -l". Try and let me know (I will try asap).
    Edit: Forget what I just said and just follow strictly the wine wiki page. In my case it was a problem when installing lib32-openal from the repos. It gave an error and did not install the first time, but I thought it was removed from the repos and wasn't needed anymore.
    Last edited by Darkzom (2011-03-24 01:00:55)

  • Alsa does not select correct sound card. SOLVED

    I have onboard sound and do not have any additional sound cards installed. Alsa detects two soundcards, but for some reason seems to prefer the one that doesn't work. I am honestly not sure what the other audio device is; I do not have a second sound card installed, nor a modem or a PC speaker or any other audio device that I know of. It has always been that way, and I didn't look into it any deeper than that. I have been using Arch Linux for a about four years and the audio has worked flawlessly until I re-installed a few days ago.
    For reference, the HDA NVidia sound card is the one I want to output sound. The non-working one is Conexant CX8801.
    My symptoms are as follows:
    $ aplay -l
    **** List of PLAYBACK Hardware Devices ****
    card 1: NVidia [HDA NVidia], device 0: ALC883 Analog [ALC883 Analog]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 1: NVidia [HDA NVidia], device 1: ALC883 Digital [ALC883 Digital]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    # cat /proc/asound/cards
    0 [CX8801 ]: CX88x - Conexant CX8801
    Conexant CX8801 at 0xf9000000
    1 [NVidia ]: HDA-Intel - HDA NVidia
    HDA NVidia at 0xfe024000 irq 23
    As you can see, the Conexant CX8801 (the wrong card) takes the index 0 position.
    My usual alsa setup routine is to run the alsaconf script. The alsaconf script edits /etc/modprobe.d/sound.conf for me, where it should explicitly identify the HDA NVidia card as index 0. In the sound.conf below, alsaconf generated the first two lines. I wrote the third line as a course of troubleshooting, but it still does not work.
    $ cat /etc/modprobe.d/sound.conf
    #THESE LINES WERE GENERATED BY ALSACONF SCRIPT
    alias snd-card-0 snd-hda-intel
    alias sound-slot-0 snd-hda-intel
    #THIS LINE WAS GENERATED BY ME
    option snd-hda-intel index=0
    $ cat /etc/modprobe.d/modprobe.conf
    # /etc/modprobe.d/modprobe.conf (for v2.6 kernels)
    # NOTICE THERE ARE NO CONFIGURATIONS IN THIS FILE. EMPTY.
    I am by no means an alsa guru, so that's why I've enlisted the help of the forums. Tell me, what am I forgetting? What don't I know?
    Last edited by cory.schwartz (2010-06-16 02:52:06)

    Install asoundconf http://aur.archlinux.org/packages.php?ID=23382
    do
    asoundconf list
    to find out the correct name, then do
    asoundconf set-default-card bla
    to set the default card.
    asoundconf creates a ~/.asoundrc.asoundconf and sets an include for that fil in ~/.asoundrc

  • [SOLVED] Mic does not work on Intel ICH8 (rev 3) sound card

    Hi, folks.
    I cannot get my sound card to record anything, using a built-in microphone. Audio output works just fine, though. I hope someone can help me, I have been banging my head against the wall for some time over this issue...
    My laptop is Toshiba Satellite A200-1J0 (PSAE6E-04R036G3). alsamixer settings are fine, I tried supplementing additional options to /etc/modprobe.d/modprobe.conf, but no luck, tried some of the combinations (model=<> position_fix=<>).
    When recording sound with gnome-sound-recorder, with Capture set as input, nothing is heard. Skype can't record anything, either. I can't even get the crackling or hissing sound like some users do.
    Should I try to get the latest ALSA?
    Debug details start from now on:
    /etc/modprobe.d/modprobe.conf
    options snd-hda-intel index=0 model=3stack position_fix=1
    lsmod | grep snd
    snd_seq_dummy 1099 0
    snd_seq_oss 25304 0
    snd_hda_codec_atihdmi 2051 1
    snd_seq_midi_event 4452 1 snd_seq_oss
    snd_hda_codec_realtek 179240 1
    snd_seq 42628 5 snd_seq_dummy,snd_seq_oss,snd_seq_midi_event
    snd_hda_intel 18697 1
    snd_seq_device 4313 3 snd_seq_dummy,snd_seq_oss,snd_seq
    snd_hda_codec 56728 3 snd_hda_codec_atihdmi,snd_hda_codec_realtek,snd_hda_intel
    snd_pcm_oss 33693 0
    snd_mixer_oss 14810 1 snd_pcm_oss
    snd_hwdep 5102 1 snd_hda_codec
    snd_pcm 57479 3 snd_hda_intel,snd_hda_codec,snd_pcm_oss
    snd_timer 16117 2 snd_seq,snd_pcm
    snd 43847 13 snd_seq_oss,snd_hda_codec_realtek,snd_seq,snd_hda_intel,snd_seq_device,snd_hda_codec,snd_pcm_oss,snd_mixer_oss,snd_hwdep,snd_pcm,snd_timer
    soundcore 5007 1 snd
    snd_page_alloc 5809 2 snd_hda_intel,snd_pcm
    lspci (parts of interest)
    00:1b.0 Audio device: Intel Corporation 82801H (ICH8 Family) HD Audio Controller (rev 03)
    Subsystem: Toshiba America Info Systems Device ff00
    Flags: bus master, fast devsel, latency 0, IRQ 22
    Memory at fc400000 (64-bit, non-prefetchable) [size=16K]
    Capabilities: <access denied>
    Kernel driver in use: HDA Intel
    Kernel modules: snd-hda-intel
    01:00.0 VGA compatible controller: ATI Technologies Inc M76 [Radeon Mobility HD 2600 Series] (prog-if 00 [VGA controller])
    Subsystem: Toshiba America Info Systems Device ff00
    Flags: bus master, fast devsel, latency 0, IRQ 16
    Memory at d0000000 (32-bit, prefetchable) [size=256M]
    I/O ports at 2000 [size=256]
    Memory at fc000000 (32-bit, non-prefetchable) [size=64K]
    [virtual] Expansion ROM at fc020000 [disabled] [size=128K]
    Capabilities: <access denied>
    01:00.1 Audio device: ATI Technologies Inc RV630/M76 audio device [Radeon HD 2600 Series]
    Subsystem: ATI Technologies Inc RV630/M76 audio device [Radeon HD 2600 Series]
    Flags: bus master, fast devsel, latency 0, IRQ 17
    Memory at fc010000 (32-bit, non-prefetchable) [size=16K]
    Capabilities: <access denied>
    Kernel driver in use: HDA Intel
    Kernel modules: snd-hda-intel
    alsa-info.sh
    upload=true&script=true&cardinfo=
    !!ALSA Information Script v 0.4.58
    !!Script ran on: Sat Jan 23 20:27:13 UTC 2010
    !!Linux Distribution
    Arch Linux \r (\n) (\l) DISTRIB_ID=arch
    !!DMI Information
    Manufacturer: TOSHIBA
    Product Name: Satellite A200
    !!Kernel Information
    Kernel release: 2.6.32-ARCH
    Operating System: GNU/Linux
    Architecture: i686
    Processor: Intel(R) Core(TM)2 Duo CPU T7500 @ 2.20GHz
    SMP Enabled: Yes
    !!ALSA Version
    Driver version: 1.0.21
    Library version: 1.0.22
    Utilities version: 1.0.22
    !!Loaded ALSA modules
    snd_hda_intel
    snd_hda_intel
    !!Sound Servers on this system
    ESound Daemon:
    Installed - Yes (/usr/bin/esd)
    Running - No
    Jack:
    Installed - Yes (/usr/bin/jackd)
    Running - No
    !!Soundcards recognised by ALSA
    0 [Intel ]: HDA-Intel - HDA Intel
    HDA Intel at 0xfc400000 irq 22
    1 [HDMI ]: HDA-Intel - HDA ATI HDMI
    HDA ATI HDMI at 0xfc010000 irq 17
    !!PCI Soundcards installed in the system
    00:1b.0 Audio device: Intel Corporation 82801H (ICH8 Family) HD Audio Controller (rev 03)
    01:00.1 Audio device: ATI Technologies Inc RV630/M76 audio device [Radeon HD 2600 Series]
    0c:04.2 Mass storage controller: Texas Instruments 5-in-1 Multimedia Card Reader (SD/MMC/MS/MS PRO/xD)
    !!Advanced information - PCI Vendor/Device/Susbsystem ID's
    00:1b.0 0403: 8086:284b (rev 03)
    Subsystem: 1179:ff00
    01:00.1 0403: 1002:aa08
    Subsystem: 1002:aa08
    !!Modprobe options (Sound related)
    snd-hda-intel: index=0 model=3stack position_fix=1
    !!Loaded sound module options
    !!Module: snd_hda_intel
    bdl_pos_adj : 1,32,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
    enable : Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y
    enable_msi : 0
    id : <NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>
    index : 0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
    model : 3stack,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>
    patch : <NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>
    position_fix : 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
    power_save : 1
    power_save_controller : Y
    probe_mask : -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
    probe_only : N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N
    single_cmd : N
    !!Module: snd_hda_intel
    bdl_pos_adj : 1,32,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
    enable : Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y
    enable_msi : 0
    id : <NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>
    index : 0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
    model : 3stack,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>
    patch : <NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>,<NULL>
    position_fix : 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
    power_save : 1
    power_save_controller : Y
    probe_mask : -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
    probe_only : N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N
    single_cmd : N
    !!HDA-Intel Codec information
    --startcollapse--
    Codec: Realtek ALC268
    Address: 0
    Function Id: 0x1
    Vendor Id: 0x10ec0268
    Subsystem Id: 0x1179ff02
    Revision Id: 0x100003
    No Modem Function Group found
    Default PCM:
    rates [0x560]: 44100 48000 96000 192000
    bits [0xe]: 16 20 24
    formats [0x1]: PCM
    Default Amp-In caps: N/A
    Default Amp-Out caps: N/A
    GPIO: io=4, o=0, i=0, unsolicited=1, wake=0
    IO[0]: enable=0, dir=0, wake=0, sticky=0, data=0, unsol=0
    IO[1]: enable=0, dir=0, wake=0, sticky=0, data=0, unsol=0
    IO[2]: enable=0, dir=0, wake=0, sticky=0, data=0, unsol=0
    IO[3]: enable=0, dir=0, wake=0, sticky=0, data=0, unsol=0
    Node 0x02 [Audio Output] wcaps 0x1d: Stereo Amp-Out
    Amp-Out caps: ofs=0x40, nsteps=0x40, stepsize=0x03, mute=0
    Amp-Out vals: [0x40 0x40]
    Converter: stream=0, channel=0
    PCM:
    rates [0x560]: 44100 48000 96000 192000
    bits [0xe]: 16 20 24
    formats [0x1]: PCM
    Node 0x03 [Audio Output] wcaps 0x1d: Stereo Amp-Out
    Amp-Out caps: ofs=0x40, nsteps=0x40, stepsize=0x03, mute=0
    Amp-Out vals: [0x35 0x35]
    Converter: stream=0, channel=0
    PCM:
    rates [0x560]: 44100 48000 96000 192000
    bits [0xe]: 16 20 24
    formats [0x1]: PCM
    Node 0x04 [Vendor Defined Widget] wcaps 0xf00000: Mono
    Node 0x05 [Vendor Defined Widget] wcaps 0xf00000: Mono
    Node 0x06 [Audio Output] wcaps 0x211: Stereo Digital
    Converter: stream=0, channel=0
    Digital:
    Digital category: 0x0
    PCM:
    rates [0x5e0]: 44100 48000 88200 96000 192000
    bits [0x1e]: 16 20 24 32
    formats [0x1]: PCM
    Node 0x07 [Audio Input] wcaps 0x100111: Stereo
    Converter: stream=0, channel=0
    SDI-Select: 0
    PCM:
    rates [0x160]: 44100 48000 96000
    bits [0x6]: 16 20
    formats [0x1]: PCM
    Connection: 1
    0x24
    Node 0x08 [Audio Input] wcaps 0x100111: Stereo
    Converter: stream=0, channel=0
    SDI-Select: 0
    PCM:
    rates [0x160]: 44100 48000 96000
    bits [0x6]: 16 20
    formats [0x1]: PCM
    Connection: 1
    0x23
    Node 0x09 [Vendor Defined Widget] wcaps 0xf00000: Mono
    Node 0x0a [Vendor Defined Widget] wcaps 0xf00000: Mono
    Node 0x0b [Vendor Defined Widget] wcaps 0xf00000: Mono
    Node 0x0c [Vendor Defined Widget] wcaps 0xf00000: Mono
    Node 0x0d [Vendor Defined Widget] wcaps 0xf00000: Mono
    Node 0x0e [Audio Mixer] wcaps 0x20010a: Mono Amp-In
    Amp-In caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
    Amp-In vals: [0x00]
    Connection: 1
    0x02
    Node 0x0f [Audio Mixer] wcaps 0x20010b: Stereo Amp-In
    Amp-In caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
    Amp-In vals: [0x00 0x00] [0x00 0x00]
    Connection: 2
    0x02 0x1d
    Node 0x10 [Audio Mixer] wcaps 0x20010b: Stereo Amp-In
    Amp-In caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
    Amp-In vals: [0x00 0x00] [0x00 0x00] [0x80 0x80]
    Connection: 3
    0x03 0x1d 0x02
    Node 0x11 [Vendor Defined Widget] wcaps 0xf00000: Mono
    Node 0x12 [Pin Complex] wcaps 0x400001: Stereo
    Pincap 0x00000020: IN
    Pin Default 0x411111f0: [N/A] Speaker at Ext Rear
    Conn = 1/8, Color = Black
    DefAssociation = 0xf, Sequence = 0x0
    Misc = NO_PRESENCE
    Pin-ctls: 0x00:
    Node 0x13 [Pin Complex] wcaps 0x400001: Stereo
    Pincap 0x00000020: IN
    Pin Default 0x411111f0: [N/A] Speaker at Ext Rear
    Conn = 1/8, Color = Black
    DefAssociation = 0xf, Sequence = 0x0
    Misc = NO_PRESENCE
    Pin-ctls: 0x00:
    Node 0x14 [Pin Complex] wcaps 0x40018d: Stereo Amp-Out
    Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
    Amp-Out vals: [0x00 0x00]
    Pincap 0x0001003c: IN OUT HP EAPD Detect
    EAPD 0x0:
    Pin Default 0x99130110: [Fixed] Speaker at Int ATAPI
    Conn = ATAPI, Color = Unknown
    DefAssociation = 0x1, Sequence = 0x0
    Misc = NO_PRESENCE
    Pin-ctls: 0x40: OUT
    Unsolicited: tag=00, enabled=0
    Connection: 1
    0x0f
    Node 0x15 [Pin Complex] wcaps 0x40018d: Stereo Amp-Out
    Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
    Amp-Out vals: [0x00 0x00]
    Pincap 0x0001003c: IN OUT HP EAPD Detect
    EAPD 0x0:
    Pin Default 0x0221101f: [Jack] HP Out at Ext Front
    Conn = 1/8, Color = Black
    DefAssociation = 0x1, Sequence = 0xf
    Pin-ctls: 0xc0: OUT HP
    Unsolicited: tag=00, enabled=0
    Connection: 1
    0x10
    Node 0x16 [Pin Complex] wcaps 0x40010c: Mono Amp-Out
    Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
    Amp-Out vals: [0x80]
    Pincap 0x00000010: OUT
    Pin Default 0x411111f0: [N/A] Speaker at Ext Rear
    Conn = 1/8, Color = Black
    DefAssociation = 0xf, Sequence = 0x0
    Misc = NO_PRESENCE
    Pin-ctls: 0x40: OUT
    Connection: 1
    0x0e
    Node 0x17 [Vendor Defined Widget] wcaps 0xf00000: Mono
    Node 0x18 [Pin Complex] wcaps 0x40018f: Stereo Amp-In Amp-Out
    Amp-In caps: ofs=0x00, nsteps=0x02, stepsize=0x4f, mute=0
    Amp-In vals: [0x02 0x02]
    Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
    Amp-Out vals: [0x80 0x80]
    Pincap 0x00003734: IN OUT Detect
    Vref caps: HIZ 50 GRD 80 100
    Pin Default 0x02a11830: [Jack] Mic at Ext Front
    Conn = 1/8, Color = Black
    DefAssociation = 0x3, Sequence = 0x0
    Pin-ctls: 0x24: IN VREF_80
    Unsolicited: tag=00, enabled=0
    Connection: 1
    0x02
    Node 0x19 [Pin Complex] wcaps 0x40008b: Stereo Amp-In
    Amp-In caps: ofs=0x00, nsteps=0x02, stepsize=0x4f, mute=0
    Amp-In vals: [0x02 0x02]
    Pincap 0x00003724: IN Detect
    Vref caps: HIZ 50 GRD 80 100
    Pin Default 0x99a3093e: [Fixed] Mic at Int ATAPI
    Conn = ATAPI, Color = Unknown
    DefAssociation = 0x3, Sequence = 0xe
    Misc = NO_PRESENCE
    Pin-ctls: 0x24: IN VREF_80
    Unsolicited: tag=00, enabled=0
    Node 0x1a [Pin Complex] wcaps 0x40018f: Stereo Amp-In Amp-Out
    Amp-In caps: ofs=0x00, nsteps=0x02, stepsize=0x4f, mute=0
    Amp-In vals: [0x00 0x00]
    Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
    Amp-Out vals: [0x80 0x80]
    Pincap 0x00003734: IN OUT Detect
    Vref caps: HIZ 50 GRD 80 100
    Pin Default 0x411111f0: [N/A] Speaker at Ext Rear
    Conn = 1/8, Color = Black
    DefAssociation = 0xf, Sequence = 0x0
    Misc = NO_PRESENCE
    Pin-ctls: 0x20: IN VREF_HIZ
    Unsolicited: tag=00, enabled=0
    Connection: 1
    0x02
    Node 0x1b [Vendor Defined Widget] wcaps 0xf00000: Mono
    Node 0x1c [Pin Complex] wcaps 0x400001: Stereo
    Pincap 0x00000020: IN
    Pin Default 0x411111f0: [N/A] Speaker at Ext Rear
    Conn = 1/8, Color = Black
    DefAssociation = 0xf, Sequence = 0x0
    Misc = NO_PRESENCE
    Pin-ctls: 0x20: IN
    Node 0x1d [Pin Complex] wcaps 0x400000: Mono
    Pincap 0x00000020: IN
    Pin Default 0x4016852d: [N/A] Speaker at Ext N/A
    Conn = Digital, Color = Purple
    DefAssociation = 0x2, Sequence = 0xd
    Misc = NO_PRESENCE
    Pin-ctls: 0x20: IN
    Node 0x1e [Pin Complex] wcaps 0x400380: Mono Digital
    Pincap 0x00000010: OUT
    Pin Default 0x411111f0: [N/A] Speaker at Ext Rear
    Conn = 1/8, Color = Black
    DefAssociation = 0xf, Sequence = 0x0
    Misc = NO_PRESENCE
    Pin-ctls: 0x40: OUT
    Unsolicited: tag=00, enabled=0
    Connection: 1
    0x06
    Node 0x1f [Vendor Defined Widget] wcaps 0xf00000: Mono
    Node 0x20 [Vendor Defined Widget] wcaps 0xf00040: Mono
    Processing caps: benign=0, ncoeff=10
    Processing Coefficient: 0x03
    Coefficient Index: 0x01
    Node 0x21 [Vendor Defined Widget] wcaps 0xf00000: Mono
    Node 0x22 [Vendor Defined Widget] wcaps 0xf00000: Mono
    Node 0x23 [Audio Selector] wcaps 0x30010d: Stereo Amp-Out
    Amp-Out caps: ofs=0x0b, nsteps=0x1f, stepsize=0x05, mute=1
    Amp-Out vals: [0x1d 0x1d]
    Connection: 7
    0x18* 0x19 0x1a 0x1c 0x14 0x15 0x12
    Node 0x24 [Audio Selector] wcaps 0x30010d: Stereo Amp-Out
    Amp-Out caps: ofs=0x0b, nsteps=0x1f, stepsize=0x05, mute=1
    Amp-Out vals: [0x00 0x00]
    Connection: 7
    0x18* 0x19 0x1a 0x1c 0x14 0x15 0x13
    Codec: LSI ID 1040
    Address: 1
    Function Id: 0x2
    Vendor Id: 0x11c11040
    Subsystem Id: 0x11790001
    Revision Id: 0x100200
    Modem Function Group: 0x1
    Codec: ATI R6xx HDMI
    Address: 0
    Function Id: 0x1
    Vendor Id: 0x1002aa01
    Subsystem Id: 0x00aa0100
    Revision Id: 0x100000
    No Modem Function Group found
    Default PCM:
    rates [0x40]: 48000
    bits [0x2]: 16
    formats [0x1]: PCM
    Default Amp-In caps: N/A
    Default Amp-Out caps: N/A
    GPIO: io=0, o=0, i=0, unsolicited=0, wake=0
    Node 0x02 [Audio Output] wcaps 0x201: Stereo Digital
    Converter: stream=0, channel=0
    Digital:
    Digital category: 0x0
    Node 0x03 [Pin Complex] wcaps 0x400381: Stereo Digital
    Pincap 0x00000094: OUT Detect HDMI
    Pin Default 0x18560010: [Jack] Digital Out at Int HDMI
    Conn = Digital, Color = Unknown
    DefAssociation = 0x1, Sequence = 0x0
    Pin-ctls: 0x40: OUT
    Unsolicited: tag=00, enabled=0
    Connection: 1
    0x02
    --endcollapse--
    !!ALSA Device nodes
    crw-rw----+ 1 root audio 116, 9 Jan 23 19:11 /dev/snd/controlC0
    crw-rw----+ 1 root audio 116, 12 Jan 23 19:11 /dev/snd/controlC1
    crw-rw----+ 1 root audio 116, 8 Jan 23 19:11 /dev/snd/hwC0D0
    crw-rw----+ 1 root audio 116, 7 Jan 23 19:11 /dev/snd/hwC0D1
    crw-rw----+ 1 root audio 116, 11 Jan 23 19:11 /dev/snd/hwC1D0
    crw-rw----+ 1 root audio 116, 6 Jan 23 21:04 /dev/snd/pcmC0D0c
    crw-rw----+ 1 root audio 116, 5 Jan 23 21:04 /dev/snd/pcmC0D0p
    crw-rw----+ 1 root audio 116, 4 Jan 23 19:11 /dev/snd/pcmC0D1p
    crw-rw----+ 1 root audio 116, 10 Jan 23 19:11 /dev/snd/pcmC1D3p
    crw-rw----+ 1 root audio 116, 3 Jan 23 19:11 /dev/snd/seq
    crw-rw----+ 1 root audio 116, 2 Jan 23 19:11 /dev/snd/timer
    /dev/snd/by-path:
    total 0
    drwxr-xr-x 2 root root 80 Jan 23 19:11 .
    drwxr-xr-x 3 root root 280 Jan 23 19:11 ..
    lrwxrwxrwx 1 root root 12 Jan 23 19:11 pci-0000:00:1b.0 -> ../controlC0
    lrwxrwxrwx 1 root root 12 Jan 23 19:11 pci-0000:01:00.1 -> ../controlC1
    !!Aplay/Arecord output
    APLAY
    **** List of PLAYBACK Hardware Devices ****
    card 0: Intel [HDA Intel], device 0: ALC268 Analog [ALC268 Analog]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 0: Intel [HDA Intel], device 1: ALC268 Digital [ALC268 Digital]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 1: HDMI [HDA ATI HDMI], device 3: ATI HDMI [ATI HDMI]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    ARECORD
    **** List of CAPTURE Hardware Devices ****
    card 0: Intel [HDA Intel], device 0: ALC268 Analog [ALC268 Analog]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    !!Amixer output
    !!-------Mixer controls for card 0 [Intel]
    Card hw:0 'Intel'/'HDA Intel at 0xfc400000 irq 22'
    Mixer name : 'Realtek ALC268'
    Components : 'HDA:10ec0268,1179ff02,00100003 HDA:11c11040,11790001,00100200'
    Controls : 21
    Simple ctrls : 13
    Simple mixer control 'Master',0
    Capabilities: pvolume pvolume-joined pswitch pswitch-joined penum
    Playback channels: Mono
    Limits: Playback 0 - 64
    Mono: Playback 64 [100%] [0.00dB] [on]
    Simple mixer control 'Headphone',0
    Capabilities: pvolume pswitch penum
    Playback channels: Front Left - Front Right
    Limits: Playback 0 - 64
    Mono:
    Front Left: Playback 53 [83%] [-11.00dB] [on]
    Front Right: Playback 53 [83%] [-11.00dB] [on]
    Simple mixer control 'PCM',0
    Capabilities: pvolume penum
    Playback channels: Front Left - Front Right
    Limits: Playback 0 - 255
    Mono:
    Front Left: Playback 255 [100%] [0.00dB]
    Front Right: Playback 255 [100%] [0.00dB]
    Simple mixer control 'Front',0
    Capabilities: pvolume pswitch penum
    Playback channels: Front Left - Front Right
    Limits: Playback 0 - 64
    Mono:
    Front Left: Playback 64 [100%] [0.00dB] [on]
    Front Right: Playback 64 [100%] [0.00dB] [on]
    Simple mixer control 'Front Mic Boost',0
    Capabilities: volume penum
    Playback channels: Front Left - Front Right
    Capture channels: Front Left - Front Right
    Limits: 0 - 2
    Front Left: 2 [100%]
    Front Right: 2 [100%]
    Simple mixer control 'Line In Boost',0
    Capabilities: volume penum
    Playback channels: Front Left - Front Right
    Capture channels: Front Left - Front Right
    Limits: 0 - 2
    Front Left: 0 [0%]
    Front Right: 0 [0%]
    Simple mixer control 'Mic Boost',0
    Capabilities: volume penum
    Playback channels: Front Left - Front Right
    Capture channels: Front Left - Front Right
    Limits: 0 - 2
    Front Left: 2 [100%]
    Front Right: 2 [100%]
    Simple mixer control 'IEC958',0
    Capabilities: pswitch pswitch-joined penum
    Playback channels: Mono
    Mono: Playback [off]
    Simple mixer control 'IEC958 Default PCM',0
    Capabilities: pswitch pswitch-joined penum
    Playback channels: Mono
    Mono: Playback [on]
    Simple mixer control 'Beep',0
    Capabilities: pvolume pswitch penum
    Playback channels: Front Left - Front Right
    Limits: Playback 0 - 12
    Mono:
    Front Left: Playback 0 [0%] [-24.00dB] [on]
    Front Right: Playback 0 [0%] [-24.00dB] [on]
    Simple mixer control 'Capture',0
    Capabilities: cvolume cswitch penum
    Capture channels: Front Left - Front Right
    Limits: Capture 0 - 31
    Front Left: Capture 29 [94%] [27.00dB] [on]
    Front Right: Capture 29 [94%] [27.00dB] [on]
    Simple mixer control 'Digital',0
    Capabilities: cvolume penum
    Capture channels: Front Left - Front Right
    Limits: Capture 0 - 120
    Front Left: Capture 0 [0%] [-30.00dB]
    Front Right: Capture 0 [0%] [-30.00dB]
    Simple mixer control 'Input Source',0
    Capabilities: cenum
    Items: 'Mic' 'Front Mic' 'Line' 'CD'
    Item0: 'Mic'
    !!-------Mixer controls for card 1 [HDMI]
    Card hw:1 'HDMI'/'HDA ATI HDMI at 0xfc010000 irq 17'
    Mixer name : 'ATI R6xx HDMI'
    Components : 'HDA:1002aa01,00aa0100,00100000'
    Controls : 4
    Simple ctrls : 1
    Simple mixer control 'IEC958',0
    Capabilities: pswitch pswitch-joined penum
    Playback channels: Mono
    Mono: Playback [off]
    !!Alsactl output
    --startcollapse--
    state.Intel {
    control.1 {
    comment.access 'read write'
    comment.type INTEGER
    comment.count 2
    comment.range '0 - 64'
    comment.dbmin -6400
    comment.dbmax 0
    iface MIXER
    name 'Front Playback Volume'
    value.0 64
    value.1 64
    control.2 {
    comment.access 'read write'
    comment.type BOOLEAN
    comment.count 2
    iface MIXER
    name 'Front Playback Switch'
    value.0 true
    value.1 true
    control.3 {
    comment.access 'read write'
    comment.type INTEGER
    comment.count 2
    comment.range '0 - 64'
    comment.dbmin -6400
    comment.dbmax 0
    iface MIXER
    name 'Headphone Playback Volume'
    value.0 53
    value.1 53
    control.4 {
    comment.access 'read write'
    comment.type BOOLEAN
    comment.count 2
    iface MIXER
    name 'Headphone Playback Switch'
    value.0 true
    value.1 true
    control.5 {
    comment.access 'read write'
    comment.type INTEGER
    comment.count 2
    comment.range '0 - 2'
    comment.dbmin 0
    comment.dbmax 4000
    iface MIXER
    name 'Mic Boost'
    value.0 2
    value.1 2
    control.6 {
    comment.access 'read write'
    comment.type INTEGER
    comment.count 2
    comment.range '0 - 2'
    comment.dbmin 0
    comment.dbmax 4000
    iface MIXER
    name 'Front Mic Boost'
    value.0 2
    value.1 2
    control.7 {
    comment.access 'read write'
    comment.type INTEGER
    comment.count 2
    comment.range '0 - 2'
    comment.dbmin 0
    comment.dbmax 4000
    iface MIXER
    name 'Line In Boost'
    value.0 0
    value.1 0
    control.8 {
    comment.access 'read write'
    comment.type INTEGER
    comment.count 2
    comment.range '0 - 31'
    comment.dbmin -1650
    comment.dbmax 3000
    iface MIXER
    name 'Capture Volume'
    value.0 29
    value.1 29
    control.9 {
    comment.access 'read write'
    comment.type BOOLEAN
    comment.count 2
    iface MIXER
    name 'Capture Switch'
    value.0 true
    value.1 true
    control.10 {
    comment.access 'read write'
    comment.type ENUMERATED
    comment.count 1
    comment.item.0 Mic
    comment.item.1 'Front Mic'
    comment.item.2 Line
    comment.item.3 CD
    iface MIXER
    name 'Input Source'
    value Mic
    control.11 {
    comment.access 'read write'
    comment.type INTEGER
    comment.count 2
    comment.range '0 - 12'
    comment.dbmin -2400
    comment.dbmax 0
    iface MIXER
    name 'Beep Playback Volume'
    value.0 0
    value.1 0
    control.12 {
    comment.access 'read write'
    comment.type BOOLEAN
    comment.count 2
    iface MIXER
    name 'Beep Playback Switch'
    value.0 true
    value.1 true
    control.13 {
    comment.access read
    comment.type IEC958
    comment.count 1
    iface MIXER
    name 'IEC958 Playback Con Mask'
    value '0fff000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'
    control.14 {
    comment.access read
    comment.type IEC958
    comment.count 1
    iface MIXER
    name 'IEC958 Playback Pro Mask'
    value '0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'
    control.15 {
    comment.access 'read write'
    comment.type IEC958
    comment.count 1
    iface MIXER
    name 'IEC958 Playback Default'
    value '0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'
    control.16 {
    comment.access 'read write'
    comment.type BOOLEAN
    comment.count 1
    iface MIXER
    name 'IEC958 Playback Switch'
    value false
    control.17 {
    comment.access 'read write'
    comment.type BOOLEAN
    comment.count 1
    iface MIXER
    name 'IEC958 Default PCM Playback Switch'
    value true
    control.18 {
    comment.access 'read write'
    comment.type INTEGER
    comment.count 1
    comment.range '0 - 64'
    comment.dbmin -6400
    comment.dbmax 0
    iface MIXER
    name 'Master Playback Volume'
    value 64
    control.19 {
    comment.access 'read write'
    comment.type BOOLEAN
    comment.count 1
    iface MIXER
    name 'Master Playback Switch'
    value true
    control.20 {
    comment.access 'read write user'
    comment.type INTEGER
    comment.count 2
    comment.range '0 - 255'
    comment.tlv '0000000100000008ffffec1400000014'
    comment.dbmin -5100
    comment.dbmax 0
    iface MIXER
    name 'PCM Playback Volume'
    value.0 255
    value.1 255
    control.21 {
    comment.access 'read write user'
    comment.type INTEGER
    comment.count 2
    comment.range '0 - 120'
    comment.tlv '0000000100000008fffff44800000032'
    comment.dbmin -3000
    comment.dbmax 3000
    iface MIXER
    name 'Digital Capture Volume'
    value.0 0
    value.1 0
    state.HDMI {
    control.1 {
    comment.access read
    comment.type IEC958
    comment.count 1
    iface MIXER
    name 'IEC958 Playback Con Mask'
    value '0fff000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'
    control.2 {
    comment.access read
    comment.type IEC958
    comment.count 1
    iface MIXER
    name 'IEC958 Playback Pro Mask'
    value '0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'
    control.3 {
    comment.access 'read write'
    comment.type IEC958
    comment.count 1
    iface MIXER
    name 'IEC958 Playback Default'
    value '0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000'
    control.4 {
    comment.access 'read write'
    comment.type BOOLEAN
    comment.count 1
    iface MIXER
    name 'IEC958 Playback Switch'
    value false
    --endcollapse--
    !!All Loaded Modules
    Module
    usbhid
    hidp
    hid
    fuse
    radeon
    ttm
    drm_kms_helper
    drm
    i2c_algo_bit
    rfcomm
    sco
    bridge
    stp
    llc
    bnep
    l2cap
    crc16
    coretemp
    ipv6
    snd_seq_dummy
    snd_seq_oss
    btusb
    joydev
    snd_hda_codec_atihdmi
    fan
    snd_seq_midi_event
    bluetooth
    snd_hda_codec_realtek
    arc4
    ecb
    snd_seq
    snd_hda_intel
    iwlagn
    snd_seq_device
    snd_hda_codec
    sdhci_pci
    iwlcore
    snd_pcm_oss
    uvcvideo
    omnibook
    videodev
    snd_mixer_oss
    snd_hwdep
    pcmcia
    tifm_sd
    sdhci
    snd_pcm
    v4l1_compat
    snd_timer
    psmouse
    mac80211
    mmc_core
    yenta_socket
    vboxdrv
    snd
    cpufreq_powersave
    i2c_i801
    uhci_hcd
    r8169
    ehci_hcd
    iTCO_wdt
    intel_agp
    tifm_7xx1
    video
    rsrc_nonstatic
    soundcore
    firewire_ohci
    agpgart
    mii
    i2c_core
    pcspkr
    snd_page_alloc
    pcmcia_core
    iTCO_vendor_support
    led_class
    output
    usbcore
    tifm_core
    serio_raw
    cfg80211
    evdev
    cpufreq_conservative
    battery
    ac
    firewire_core
    rfkill
    crc_itu_t
    thermal
    button
    cpufreq_ondemand
    sg
    acpi_cpufreq
    freq_table
    processor
    rtc_cmos
    rtc_core
    rtc_lib
    ext3
    jbd
    mbcache
    sr_mod
    cdrom
    ata_generic
    sd_mod
    ata_piix
    pata_acpi
    ahci
    libata
    scsi_mod
    !!Sysfs Files
    /sys/class/sound/hwC0D0/init_pin_configs:
    0x12 0x411111f0
    0x13 0x411111f0
    0x14 0x99130110
    0x15 0x0221101f
    0x16 0x411111f0
    0x18 0x02a11830
    0x19 0x99a3093e
    0x1a 0x411111f0
    0x1c 0x411111f0
    0x1d 0x4016852d
    0x1e 0x411111f0
    /sys/class/sound/hwC0D0/driver_pin_configs:
    /sys/class/sound/hwC0D0/user_pin_configs:
    /sys/class/sound/hwC0D0/init_verbs:
    /sys/class/sound/hwC0D1/init_pin_configs:
    /sys/class/sound/hwC0D1/driver_pin_configs:
    /sys/class/sound/hwC0D1/user_pin_configs:
    /sys/class/sound/hwC0D1/init_verbs:
    /sys/class/sound/hwC1D0/init_pin_configs:
    0x03 0x18560010
    /sys/class/sound/hwC1D0/driver_pin_configs:
    /sys/class/sound/hwC1D0/user_pin_configs:
    /sys/class/sound/hwC1D0/init_verbs:
    !!ALSA/HDA dmesg
    pcmcia_socket pcmcia_socket0: cs: IO port probe 0xa00-0xaff: clean.
    HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    HDA Intel 0000:00:1b.0: setting latency timer to 64
    iwlagn: Intel(R) Wireless WiFi Link AGN driver for Linux, 1.3.27ks
    phy0: Selected rate control algorithm 'iwl-agn-rs'
    input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input9
    HDA Intel 0000:01:00.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    HDA Intel 0000:01:00.1: setting latency timer to 64
    Synaptics Touchpad, model: 1, fw: 6.5, id: 0x82e0b1, caps: 0xb04711/0xe0440d
    Bluetooth: L2CAP socket layer initialized
    hda-intel: azx_get_response timeout, switching to polling mode: last cmd=0x018b0000
    Bluetooth: BNEP (Ethernet Emulation) ver 1.3
    hda-intel: IRQ timing workaround is activated for card #0. Suggest a bigger bdl_pos_adj.
    Bridge firewalling registered
    Last edited by teMplaryum (2010-01-26 10:15:18)

    Hi there!
    I had the very same problem with the same soundcard and found this thread.
    The problem got solved for me by adding the same line as you have to /etc/modprobe.d/modprobe.conf.
    However, I also had to create /etc/modprobe.d/sound.conf and add:
    alias snd-card-0 snd-hda-intel
    alias sound-slot-0 snd-hda-intel
    options snd-hda-intel model=toshiba power_save=0
    Notice the difference on the "model=toshiba" part.
    However, my laptop is not a Toshiba, but a Compal IFL90.
    I remember that in Ubuntu I needed(a long time ago) to add a line to /etc/alsa.conf with model=toshiba. I figured it might be worth a try, and well, it did.
    I hope this can help someone else.
    As for the OP: "You have my thanks!"

  • Satellite A110-195 PSAB0E - sound card has stopped working

    Hello,
    My sound card has stopped working it was working fine but suddenly the sound quality started to faint and finally it stopped working i have tried the following methods:
    Realtek is default audio
    Control Panel/ Sound & Audio Devices/ Audio tab/ Sound Playback click on down arrow and check that the correct audio is selected. Typically the problem will be they something like "modem line 0 playback" might have been substituted for the proper audio device.( Didn't Worked)
    Chipset Utility - install ( Did'n't Worked Aswell)
    Start / Control Panel / Administrative Tools / Component Services / a separate window will open in left pane click Services(Local) from the tree / Scroll down to Windows Audio service / if the service is Disabled or Manual right click > select Properties > under Startup Type change to Automatic > click Apply / click Start > OK Reboot. (Worked) But First The Quality Was Not As It Was Before And Then Sound Card Stopped Working Again.
    Try a System File Check
    go to Run - type "sfc /scannow" No Success.
    I have installed windows again but no success. :(
    Here Is The Detailed Model No. Satellite A110-195
    PSAB0E-00F00KAR
    Windows XP Home Edition SP2

    No It Appears In Device Manager And In Control Panel.
    This Method Worked But The Sound Level Was Not As Good As it Used To Be:
    tart / Control Panel / Administrative Tools / Component Services / a separate window will open in left pane click Services(Local) from the tree / Scroll down to Windows Audio service / if the service is Disabled or Manual right click > select Properties > under Startup Type change to Automatic > click Apply / click Start > OK Reboot.

  • I have installed windows 7 on my mac book, but sound card and cam is not working in windows wht to do?, I have installed windows 7 on my mac book, but sound card and cam is not working in windows wht to do?

    I am using Mac book with windows 7. But my sound card and cam is not working when booted through windows. How can I solve this?
    Thanks

    Assuming that you tried to install Win 7 in bootcamp.
    Power on the machine and press and hold the "option" key when you hear the bong sound.
    Select the Macintosh HD icon and press "return" or just click on the icon.
    Once booted into OS X go to System Preferences and select the Startup Disk icon and configure startup to use the Macintosh HD.

  • Is it possible to upgrade my sound card on my presario cq60-419wm​? or just buy a new laptop? thanks.

    My Presario CQ60-419WM sound card needes to be upgraded, Is it possible or do I just need to get a new laptop? Thanks for your input. :-)<script type="text/javascript">// /*************************************************​******* This Script will be included in all web pages to show an Icon on Mouse over, Clicking the Icon will show a Zoominto Viewer (a Flash made viewer) to Zoom the Image Content **************************************************​******/ var tmppluginServername = "http://www.zoominto.com/zoomapi/"; //tmppluginServername= "http://localhost:9999/zoomapi/" var versionswf="1100"; versionswf=""; var tmppluginSwfname="" tmppluginSwfname=tmppluginServername + "zoomplugin" + versionswf + ".swf"; var tmppluginimageURL=tmppluginServername + "displayimage.php?image="; var protocol = "http://"; var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1; plugin_run(); function BrowserZoomPlugin() { var ua, s, i; this.isIE = false; this.isNS = false; this.version = null; ua = navigator.userAgent; s = "MSIE"; if ((i = ua.indexOf(s)) >= 0) { this.isIE = true; this.version = parseFloat(ua.substr(i + s.length)); return; } s = "Netscape6/"; if ((i = ua.indexOf(s)) >= 0) { this.isNS = true; this.version = parseFloat(ua.substr(i + s.length)); return; } s = "Gecko"; if ((i = ua.indexOf(s)) >= 0) { this.isNS = true; this.version = 6.1; return; } } var browser = new BrowserZoomPlugin; var dragObj = new Object; dragObj.zIndex = 0; function zoominto_dragStart(event, id) { var el; var x, y; if (id) { dragObj.elNode = document.getElementById(id); } else { if (browser.isIE) { dragObj.elNode = window.event.srcElement; } if (browser.isNS) { dragObj.elNode = event.target; } if (dragObj.elNode.nodeType == 3) { dragObj.elNode = dragObj.elNode.parentNode; } } if (browser.isIE) { x = window.event.clientX + document.documentElement.scrollLeft + document.body.scrollLeft; y = window.event.clientY + document.documentElement.scrollTop + document.body.scrollTop; } if (browser.isNS) { x = event.clientX + window.scrollX; y = event.clientY + window.scrollY; } dragObj.cursorStartX = x; dragObj.cursorStartY = y; dragObj.elStartLeft = parseInt(dragObj.elNode.style.left, 10); dragObj.elStartTop = parseInt(dragObj.elNode.style.top, 10); if (isNaN(dragObj.elStartLeft)) { dragObj.elStartLeft = 0; } if (isNaN(dragObj.elStartTop)) { dragObj.elStartTop = 0; } dragObj.elNode.style.zIndex = ++dragObj.zIndex; if (browser.isIE) { document.attachEvent("onmousemove", zoominto_dragGo); document.attachEvent("onmouseup", zoominto_dragStop); window.event.cancelBubble = true; window.event.returnValue = false; } if (browser.isNS) { document.addEventListener("mousemove", zoominto_dragGo, true); document.addEventListener("mouseup", zoominto_dragStop, true); event.preventDefault(); } } function zoominto_dragGo(event) { var x, y; if (browser.isIE) { x = window.event.clientX + document.documentElement.scrollLeft + document.body.scrollLeft; y = window.event.clientY + document.documentElement.scrollTop + document.body.scrollTop; } if (browser.isNS) { x = event.clientX + window.scrollX; y = event.clientY + window.scrollY; } dragObj.elNode.style.left = dragObj.elStartLeft + x - dragObj.cursorStartX + "px"; dragObj.elNode.style.top = dragObj.elStartTop + y - dragObj.cursorStartY + "px"; if (browser.isIE) { window.event.cancelBubble = true; window.event.returnValue = false; } if (browser.isNS) { event.preventDefault(); } } function zoominto_dragStop(event) { if (browser.isIE) { document.detachEvent("onmousemove", zoominto_dragGo); document.detachEvent("onmouseup", zoominto_dragStop); } if (browser.isNS) { document.removeEventListener("mousemove", zoominto_dragGo, true); document.removeEventListener("mouseup", zoominto_dragStop, true); } } function imgplayerprogress_DoFSCommand(command, args) { var imgplayerprogressObj = isInternetExplorer ? document.all.imgplayerprogress : document.imgplayerprogress; } function zoominto_addElement(divIdName, htmlval) { try { var newdiv = document.createElement("div"); newdiv.setAttribute("id", divIdName); newdiv.setAttribute("title", ""); newdiv.style.position = "absolute"; newdiv.style.display = "none"; newdiv.innerHTML = htmlval; document.body.appendChild(newdiv);; } catch (e) { } } function zoominto_addmyelems(divIdName, htmlval) { try { var newdiv = document.createElement("div"); newdiv.setAttribute("id", divIdName); newdiv.innerHTML = htmlval; document.body.appendChild(newdiv);; } catch (e) { //_L(e); } } function zoominto_initializelements() { zoominto_addElement("plugpanel", "<a href='javascript&colon;zoominto_showflash()'><img class='myplug_img' src='" + tmppluginServername + "zoomicon.gif' alt='ZoomInto: Pictures, Images and Photos' /></a> "); zoominto_addmyelems("plugincheck_0909", "<div id='div_plugin_img_player' style=' position: absolute; padding: 12px; left: 50%; top: 50%; visibility:hidden; display:none; z-index:102; vertical-align: middle;'></div>"); } function zoominto_GetElementPostion(theElement) { var selectedPosX = 0; var selectedPosY = 0; tmpw = theElement.width; tmph = theElement.height; while (theElement != null) { selectedPosX += theElement.offsetLeft; selectedPosY += theElement.offsetTop; theElement = theElement.offsetParent; } var tempelement = new Array(selectedPosX, selectedPosY, tmpw, tmph); return tempelement; } function plugin_showdeadcenterdiv(Xwidth, Yheight, divid) { var scrolledX, scrolledY; if (self.pageYOffset) { scrolledX = self.pageXOffset; scrolledY = self.pageYOffset; } else if (document.documentElement && document.documentElement.scrollTop) { scrolledX = document.documentElement.scrollLeft; scrolledY = document.documentElement.scrollTop; } else if (document.body) { scrolledX = document.body.scrollLeft; scrolledY = document.body.scrollTop; } var centerX, centerY; if (self.innerHeight) { centerX = self.innerWidth; centerY = self.innerHeight; } else if (document.documentElement && document.documentElement.clientHeight) { centerX = document.documentElement.clientWidth; centerY = document.documentElement.clientHeight; } else if (document.body) { centerX = document.body.clientWidth; centerY = document.body.clientHeight; } var leftOffset = scrolledX + (centerX - Xwidth) / 2; var topOffset = scrolledY + (centerY - Yheight) / 2; var o = document.getElementById(divid); var r = o.style; r.position = "absolute"; r.top = topOffset + "px"; r.left = leftOffset + "px"; r.display = "block"; } function pluginalertShow(layerid) { document.getElementById(layerid).style.visibility = "visible"; document.getElementById(layerid).style.display = "block"; plugin_showdeadcenterdiv(280, 115, layerid); document.getElementById("plugin_btn_activate").foc​us(); } function pluginalerthide(layerid) { document.getElementById(layerid).style.visibility = "hidden"; document.getElementById(layerid).style.display = "none"; } function zoom_getValidString(){ return "&isValidviewer=1";// all things are valid } function zoominto_showflash(zoomres) { try{ if(zoomres == undefined) zoomres="600x442"; zoomarr=zoomres.split("x",2) var divimgplayer = document.getElementById("div_plugin_img_player"); divimgplayer.style.display = "block"; divimgplayer.style.visibility = "visible"; //old movie 550 400 // plugin_showdeadcenterdiv(600, 371, "div_plugin_img_player"); plugin_showdeadcenterdiv(parseInt(zoomarr[0]), parseInt(zoomarr[1])+120, "div_plugin_img_player"); // zoominto_setImage(); zoominto_changeobject(document.getElementById("plu​gpanel").title,zoomres); } catch (e) { } } function zoominto_closeflash() { var divimgplayer = document.getElementById("div_plugin_img_player"); divimgplayer.style.display = "none"; divimgplayer.style.visibility = "hidden"; } function hidezoomicon(){ document.getElementById("plugpanel").style.visibil​ity = "hidden"; } function getMouseX( e ) { return e.pageX || ( e.clientX + ( document.documentElement.scrollLeft || document.body.scrollLeft ) ); } function getMouseY( e ) { return e.pageY || ( e.clientY + ( document.documentElement.scrollTop || document.body.scrollTop ) ); } function dhtmlLoadScript(url) { var e = document.createElement("script"); e.src=url; e.type="text/javascript"; // document.getElementByTagName("head")[0].appendChil​d(e); document.getElementById("addiv").appendChild(e); } function getactualimgdimensions(imgsrc){ zoomintoheavyImage = new Image(); zoomintoheavyImage.src=imgsrc var tempelement = new Array(zoomintoheavyImage.width, zoomintoheavyImage.height); return tempelement; } function plugin_run() { var newcss = "#div_plugin_img_player td {padding:0;} \n #div_plugin_img_player th {padding:0;}"; if ('\v'=='v') /* ie only */ { document.createStyleSheet().cssText = newcss; } else { var tag = document.createElement('style'); tag.type = 'text/css'; document.getElementsByTagName('head')[0].appendChi​ld(tag); tag[ (typeof document.body.style.WebkitAppearance=='string') /* webkit only */ ? 'innerText' : 'innerHTML'] = newcss; } var image = document.getElementsByTagName("img"); var totimgLength=image.length; zoominto_initializelements(); for (var i = 0; i < image.length; i++) { if (image[i].className.match("myplug_img")){ image[i].onmouseout = function (evt) { document.getElementById("plugpanel").style.visibil​ity = "hidden"; } }// Zoom icon hidden zoomarrdim= getactualimgdimensions(image[i].src); //arrdim[0] - width arrdim[1] - height if (!image[i].className.match("myplug_img") && zoomarrdim[0] > 50 && zoomarrdim[1] > 60) { image[i].onmouseover = function () {imgvals = zoominto_GetElementPostion(this); document.getElementById("plugpanel").style.display = "block";document.getElementById("plugpanel").style​.visibility = "visible";document.getElementById("plugpanel").sty​le.left = imgvals[0] + "px";document.getElementById("plugpanel").style.to​p = imgvals[1] + "px";document.getElementById("plugpanel").title = this.src;}; image[i].onmouseout = function (evt) { imgvals = zoominto_GetElementPostion(this); strx=imgvals[0]; stry=imgvals[1]; endx=imgvals[0] +imgvals[2] ; endy=imgvals[1] + imgvals[3]; tmpcurx=evt.pageX; tmpcury=evt.pageY; if(tmpcurx > strx && tmpcurx < endx && tmpcury > stry && tmpcury < endy ){ l=1 } else{ document.getElementById("plugpanel").style.visibil​ity = "hidden"; } }; }// End of Condition Image smaller if(zoomarrdim[0] == 1 && zoomarrdim[1] == 1){ // remove Image element image[i].style.display="none"; image[i].style.visibility="hidden"; } } } function zoominto_URLEncode(clearString) { var output = ""; var x = 0; clearString = clearString.toString(); var regex = /(^[a-zA-Z0-9_.]*)/; while (x < clearString.length) { var match = regex.exec(clearString.substr(x)); if (match != null && match.length > 1 && match[1] != "") { output += match[1]; x += match[1].length; } else { if (clearString[x] == " ") { output += "+"; } else { var charCode = clearString.charCodeAt(x); var hexVal = charCode.toString(16); output += "%" + (hexVal.length < 2 ? "0" : "") + hexVal.toUpperCase(); } x++; } } return output; } function Closeiepluginpanel() { closeflash(); } function logme(txtstr) { // try { //alert(txtstr); return ""; } function zoominto_changeobject(url,zoomres) { //Method to Display the Viewer for Image imgName_bfr=(tmppluginimageURL +url + zoom_getValidString()) escimgName_bfr=escape(imgName_bfr); trkval = "?chkme=" + imgName_bfr + "&rootstr=" + tmppluginServername; pagetitle = ""; urlstr = zoominto_URLEncode(document.location); zoomarr=zoomres.split("x",2) playerwidth=parseInt(zoomarr[0]);// 800 tablewidth=playerwidth ;//-2 ;//798 playerheight=parseInt(zoomarr[1]);//600; adwidth=468;//playerwidth -10 ;//768; adheight=60; document.getElementById("div_plugin_img_player").i​nnerHTML = "<div onmousedown=\"zoominto_dragStart(event, 'div_plugin_img_player')\" style='height:24px;margin-left:0px;position:relati​ve;width: "+playerwidth +"px; z-index: 99; background-color:#ECECEC'> <MAP NAME='zoomintomap187'> <area shape='rect' coords='0,0,108,24' href='http://www.zoominto.com' alt='Zoominto' target='_blank'/> </MAP> <table width='"+playerwidth+"' cellspacing='0' cellpadding='0' style='border: 1px solid #CCCCCC;border-bottom:none' > <tbody><tr> <td><table cellspacing='0' cellpadding='0' border='0'> <tbody><tr bgcolor='ECECEC'> <td background='" + tmppluginServername + "images/bluebacku.jpg' align='right'><table width='"+tablewidth+"' cellspacing='0' cellpadding='0' border='0'> <tbody><tr> <td><div align='left' style='height:24px' ><img style='cursorointer' USEMAP='#zoomintomap187' height='24' width='108' border='0' src='" + tmppluginServername + "images/zoomintologo2.jpg'/></div></td> <td height='24' ><span style='padding-left:4px;float:right' align='right'> <a href='javascript&colon;zoominto_closeflash()'><img height='21' width='21'border='0' src='" + tmppluginServername + "images/close.jpg'/></a></span><span style='float:right' align='right'><select style='height: 20px;' id='resselect' onchange='zoominto_showflash(this.value)'><option value='600x442'>Default</option><option value='690x509'>115%</option><option value='750x553'>125%</option></select></span></td> </tr> </tbody></table> </td> </tr> </tbody></table> </td> </tr> </tbody></table><!--comment--> </div><div style='border: 1px solid #CCCCCC;border-bottom:none;margin-top:-2px;backgro​und-color:#FFF'><object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-4445535400​00\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/​flash/swflash.cab#version=9,0,0,0\" width=\""+playerwidth+"\" height='"+playerheight+"' id=\"editor\" align=\"middle\"> <param name=\"allowScriptAccess\" value=\"sameDomain\" /> <param name=\"allowFullScreen\" value=\"false\" /> <param name=\"chkme\" value=\""+imgName_bfr+ "\" /> <param name=\"rootstr\" value=\""+tmppluginServername + "\" /><param name=\"movie\" value=\""+tmppluginSwfname+"\" /><param name=\"quality\" value=\"high\" /><param name=\"bgcolor\" value=\"#ffffff\" /> <embed src=\"" + tmppluginSwfname + trkval+"\" quality=\"high\" bgcolor=\"#ffffff\" width=\""+playerwidth+"\" height='"+playerheight+"' name=\"editor\" align=\"middle\" allowScriptAccess=\"sameDomain\" allowFullScreen=\"false\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.adobe.com/go/getflashplayer\" /> </object></div><div style='border: 1px solid #CCCCCC;border-top:none;margin-top:-2px;background​-color:#FFFFFF'><table width='"+playerwidth+"' style=''> <tbody><tr> <td bgcolor='#FFFFFF'><div align='center'> <table width='100%' height='60' cellspacing='0' cellpadding='0' border='0'> <tbody><tr> <td bgcolor='#ffffff' > <div align='center' ><iframe width=\""+adwidth+ "\" height=\""+adheight+ "\" frameborder=\"0\" scrolling=\"no\" vspace=\"0\" src='" + tmppluginServername + "ads/remoteads.php5?extension=firefox&hostarea=zoo​minto&contenturl="+ document.location +"&width="+adwidth+"&height="+adheight+"' name=\"google_ads_frame\" marginwidth=\"0\" marginheight=\"0\" id=\"google_ads_frame1\" hspace=\"0\" allowtransparency=\"true\"></iframe> </div> </td> </tr> </tbody></table> </div></td> </tr></tbody></table></div>\n"; document.getElementById('resselect').value=zoomres​; } // </script>

    Hi,
    What has been going wrong with your post ? You can use external USB sound card for your laptop. Here are few of them:
      http://www.shopbot.com.au/external-sound-card-usb/​price/australia/582295
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • "A How-To" on the steps to FIX the Problem of NO Sound Card DETECTION with AUDIGY 2 and Win XP

    Note#: When restarting the PC each time, shut off the main power switch on the Power Supply then back on.
    Note#2: You will need the Windows XP CD WITH the SP2 on it or have the download SP2 Install file from MS on your PC. I have it on CD.
    . Remove the sound Card
    2. Use the Removal/Un-installation Procedures for the drivers in Knowledge Base Under Windows XP Step by step. Restart to get all the files deleted in the Creative folder if necessary.
    Here is the (Solution ID#) for the Uninstallaion found in the Creative.com Knowledge Base: SID72 "How to uninstall Sound Blaster drivers and applications?"
    Alternati'vely, Click on the Sound Blaster Picture Box under the Knowledge Base Main Search Page and the article should be in the resulting list.
    3. Use the DCProSetup_.exe from http://files.trunetworks.com/utilities/
    Use it carefully Selecting [Creative] then Check the box for Muntiple Cleaning Filters, and remove the Creative Audio Drivers by Clicking on Start.
    4. Go into the Registry by Typing Regedit in the Start>Run.. Menu
    Navigate and remove the Entry for CTCMSGo.exe, it is running in the back ground otherwise and i believe it interrupts the re-installation of MediaSource Files.
    HKEY_CURRENT USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Run
    The file link/tag, it will be on the right half of the screen, Delete it. CTCMSGo.exe=(Creative Technologies Media Source Go)
    5. Restart the PC, dont forget to switch Power Supply to off while powered down and on before powering back up.
    6.Go to the Win XP SP2 CD or the file downloaded, select re-install but choose UPDATE, not New Installation. Let the Install run and update your pc, this procedure has no data loss or settings changes in Windows.
    7. Restart PC
    8. Turn off PC and install the Audigy 2 Card. Then turn on the PC. At this point you might get a plxcore.plx Error of file missing. Not to worry.. copy the file from within the Creative Drivers CD and paste it into the Creative Folder In C:\Program Files\Creative
    The Knowledge base Article on the steps is: SID287 "Error: Program could not load because Plxcore.plx cannot be found"
    9. Power up and see if you get PCI Device, and Audio Controller Detetion. If you dont then do the following:
    A) Remove the Sound Card and Re-install the Win XP SP2 Update a number of times ( I did this about 5 times until detection) Each time restart and install the Sound Card into any of the empty PCI Ports until detection.
    If that does not work after a number of times try the following:
    B)Power off and switch the PCI slot of the Sound Card (to all the PCI slots if necessary with complete power off each time) Without Re-installing XP SP2 Update.
    0. After you get Detection, The Windows Auto Installer for Drivers will pop up..select Find Drivers Automatically, then Install then install the drivers it finds. It will put in some basic Audigy Drivers from the CD or online i'm not sure where it gets them from. Keep your Driver CD in the CD Dri've.
    .Restart the PC, then install the Drivers and Media Source Files from the CD (it may not all get installed and may give an error and you have to shut down and re-install the drivers and Media Source over again and over again so it fills in the gap of missing files/drivers until it all works without deleting the previously installed parts).
    2. Only install this update from the File/ Downloads Section on the Creative website: EAX4DRV_AUDIGY2__84_50.exe Dated 29 July 04. The new beta one that was released is what started all my troubles, so plz i urge you to wait for it to be official.. unless you really want to test it out at your risk.
    And there you have it.. in 8 Hours and some ideas from friends and relati'ves concerning detection problems of other hard ware they have had i decided to play Roulette all night and this combo works. I had to play Roulette switching the PCI slots (5 of them), and then towards the end play Roulette with the Creative Driver CD install... until they all work perfectly. WHEW!!!
    Notice: I hope if you are really ticked off at having no sounds and want to try this at your own risk and responsiblity go ahead, and I wish you luck. None of the proedures are too out of the ordinary. I dont know if it will work for you but it worked for me and maybe it will possibly for other similar Sound Cards as well.. like ZS or Li've! etc. with similar problems. Happy Sound Blasting!!!
    My Specs: P4 3.2Ghz Prescott on Intel D875PBZ MB, pqi GB PC3200 Dual Channel RAM, Win XP SP2, Plextor CD-R and DVD Dri'ves, BFG 6600GT OC 28MB and the Audigy 2 Sound CardMessage Edited by Flying_Ghost on 05-04-2005 09:38 PM

    Thanks for pointing that out, it was not apparent on the day i used them and wrote the How-To. The links have been replaced with the SID# (Solution ID #) and the title given for the Article.
    Have fun

  • Setting ALSA sound card system wide (rather than just in KDE)

    Hi,
    I've got an HTPC with an ATI Radeon HD 4350 graphics card running Arch x86. It has its own integrated sound card for outputting audio via HDMI, which is detected by ALSA as a separate device. I've managed to set it as the default audio device in KDE 4 (via System Settings). This allows applications such as Amarok and SMPlayer to properly output audio to the HD 4350's integrated sound card, but software such as Flash and MPlayer (from the command line) are still outputting audio to the motherboard's built-in sound card. How can I change this setting on a system-wide level? I've tried running alsaconf as root and adding
    pcm.!default {
    type hw
    card 2
    device 3
    to ~/.asoundrc; I got the card and device numbers from aplay:
    [htpc@exia ~]$ aplay -l
    **** List of PLAYBACK Hardware Devices ****
    card 0: Intel [HDA Intel], device 0: HDA Generic [HDA Generic]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 1: HDMI [HDA ATI HDMI], device 3: ATI HDMI [ATI HDMI]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    Here is the output from MPlayer when I try to play a video, complete with errors regarding audio:
    MPlayer UNKNOWN-4.4.0 (C) 2000-2009 MPlayer Team
    137 audio & 296 video codecs
    mplayer: could not connect to socket
    mplayer: No such file or directory
    Failed to open LIRC support. You will not be able to use your remote control.
    Playing /tmp/FlashmvWXPy.
    libavformat file format detected.
    [flv @ 0xac7d250]skipping flv packet: type 18, size 294, flags 0
    [lavf] Video stream found, -vid 0
    [lavf] Audio stream found, -aid 1
    VIDEO: [H264] 854x480 0bpp 29.970 fps 0.0 kbps ( 0.0 kbyte/s)
    ==========================================================================
    Opening video decoder: [ffmpeg] FFmpeg's libavcodec codec family
    Selected video codec: [ffh264] vfm: ffmpeg (FFmpeg H.264)
    ==========================================================================
    ==========================================================================
    Opening audio decoder: [faad] AAC (MPEG2/4 Advanced Audio Coding)
    FAAD: compressed input bitrate missing, assuming 128kbit/s!
    AUDIO: 44100 Hz, 2 ch, s16le, 128.0 kbit/9.07% (ratio: 16000->176400)
    Selected audio codec: [faad] afm: faad (FAAD AAC (MPEG-2/MPEG-4 Audio))
    ==========================================================================
    [AO OSS] audio_setup: Can't open audio device /dev/dsp: Device or resource busy
    [AO_ALSA] alsa-lib: confmisc.c:768:(parse_card) cannot find card '2'
    [AO_ALSA] alsa-lib: conf.c:3513:(_snd_config_evaluate) function snd_func_card_driver returned error: No such file or directory
    [AO_ALSA] alsa-lib: confmisc.c:392:(snd_func_concat) error evaluating strings
    [AO_ALSA] alsa-lib: conf.c:3513:(_snd_config_evaluate) function snd_func_concat returned error: No such file or directory
    [AO_ALSA] alsa-lib: confmisc.c:1251:(snd_func_refer) error evaluating name
    [AO_ALSA] alsa-lib: conf.c:3513:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
    [AO_ALSA] alsa-lib: conf.c:3985:(snd_config_expand) Evaluate error: No such file or directory
    [AO_ALSA] alsa-lib: pcm.c:2211:(snd_pcm_open_noupdate) Unknown PCM default
    [AO_ALSA] Playback open error: No such file or directory
    [JACK] cannot open server
    [AO SDL] Samplerate: 44100Hz Channels: Stereo Format s16le
    [AO_ALSA] alsa-lib: confmisc.c:768:(parse_card) cannot find card '2'
    [AO_ALSA] alsa-lib: conf.c:3513:(_snd_config_evaluate) function snd_func_card_driver returned error: No such file or directory
    [AO_ALSA] alsa-lib: confmisc.c:392:(snd_func_concat) error evaluating strings
    [AO_ALSA] alsa-lib: conf.c:3513:(_snd_config_evaluate) function snd_func_concat returned error: No such file or directory
    [AO_ALSA] alsa-lib: confmisc.c:1251:(snd_func_refer) error evaluating name
    [AO_ALSA] alsa-lib: conf.c:3513:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
    [AO_ALSA] alsa-lib: conf.c:3985:(snd_config_expand) Evaluate error: No such file or directory
    [AO_ALSA] alsa-lib: pcm.c:2211:(snd_pcm_open_noupdate) Unknown PCM default
    [AO SDL] Unable to open audio: No available audio device
    DVB card number must be between 1 and 4
    AO: [null] 44100Hz 2ch s16le (2 bytes per sample)
    Starting playback...
    VDec: vo config request - 854 x 480 (preferred colorspace: Planar YV12)
    VDec: using Planar YV12 as output csp (no 0)
    Movie-Aspect is 1.78:1 - prescaling to correct movie aspect.
    VO: [xv] 854x480 => 854x480 Planar YV12
    Thanks!
    Last edited by w1ntermute (2009-06-28 18:40:03)

    whoops wrote:Do you use the motherboard sound-card?
    No.
    whoops wrote:If not - did you try just turning it off in bios (or blacklisting the driver)?
    No, I haven't tried that. I'll give it a shot. Thanks for the tip!
    Last edited by w1ntermute (2009-07-02 18:11:53)

  • Hp envoy m6 sound card, simmple pass applicatio​n and support assistant is not working properly

    i have hp envoy m61204tx.
    after upudate using hp support assistant sound card is not working properly also when i run hp simple pass or hp support assistant only start window appears then it hides nothing happend next.
    please guide me what is the problem and how to solve it.
    any help will me much appriciated.
    Thanks.

    @alki,
    I understand that sound has quit working after support assistant ran a few updates.  
    Press Windows Key + X and select device manager.  The sound card should be listed in the sound section.  What status is displayed for the sound card?
    What is the status of the mute key on the notebook?  Does it have an amber light?
    What happens if you try to install this driver?
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • Can't find the original sound card

    I have an HP Media Center m7334n desktop pc with xp multimedia.  It came with a Realtec sound card, and I installed a second C Media sound card to use with an external interface.  It was set up so that the Realtec handled all sounds for the pc such as watching video or listening to audio, and the second sound card worked only with the selected external device.
    For some reason, I no longer have sound for audio or video through the Realtec.  The C Media card still works fine with th external device, but I get no audio through the PC speakers.  I have tried plugging the PC speakers into a different PC and they work fine.  I have also tried plugging different speakers into the HP pc, but still have no audio.  Also, I can't 'see' the Realtec card when I go to Device Manager.  I have tried resetting On-board Audio to Automatic in BIOS, but that did not help. 
    Any suggestions would be greatly appreciated - thanks!

    I suggest reinstalling the Realtek driver.  Also, check to assure that all boxes are checked correctly in the Control Panel.
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

  • I'm having a hard time with my sound blaster z sound card to sync with cs6. Can anyone share with me

    I'm having a hard time with Adobe CS6 synching up with my soundcard. Latency settings and other applications are challenging at this time. I had 3.0, but my Windows 7 computer is now "deceased". Please help.

    I endorse everything that Steve just said but to try and get you going while you're shopping for an audio interface more suitable for sound work than use as a doorstop, try the following:
    Go to the Windows sound control panel and make sure the SB card is selected as the default on both the Recording and Playback tabs.  On the advanced menu for both, set the bit depth and sample rate to either 16/44,100 (CD) or 16/48,000 (Video) depending what suits you best.  Note that your SB card only works natively at 16/48,000  so anything else involves a conversion that the card hides from you.
    Go to the Windows Control panel and, under the sound section, turn off all system sounds (since they can hijack your sound card).  Close every other application that may want to use the sound card (internet for example).
    In Audition, go to Edit/Preferences/Audio Hardware.  Set the device class to MME.  On the drop down menus set the Default Input and Default Output to be your Soundblaster.  On the Master Clock set it for the SB Output (this'll likely be default).  Set the latency at around 200ms (you may need to increase this later if your playback stutters--or you can try decreasing it until you get stutter, then take it back up a bit.  Set the sample rate to whatever you selected on the Windows Sound Control Panel.
    The Soundblaster will likely have installed it's own control menu.  Go to this and select Mic or Line as appropriate for the input and whatever you need for the output.  I can't be more specific as SB keep changing what they call things.
    Hopefully this'll get you going even if it's not the best compromise for quality and latency.

  • External USB Sound Card and 6-channel 5.1 SS speakers not working

    Hi. I purchased a few devices to expand my sound to 5.1 surround sound. However, I'm having trouble getting any results at all. Here's my situation.
    New 24-in Intel iMac
    Logitech G51 Surround Sound Speakers
    PPA International External Sound 6 Channel USB device
    I can select the audio device in the Sound control panel and under the Audio MIDI Setup utility. I have changed the device to be a 6 channel device, but I cannot get any sound to come out of the speakers at all. It could be that this particular USB audio device is not compatible, but since it shows up as a selectable device I had some hope that it would work. The device doesn't claim to be mac compatible, but that isn't always a requirement. I crossed my fingers and took a chance.
    If anyone has any suggestions I would appreciate the help.

    I'm almost certain it is because of the lack of a mac driver for this particular sound card. <gasp> This setup works great under XP when using BootCamp. If I'm dead in the water with sound card, are there reliable alternatives I look for?
    Here are the links to the products I'm referring to.
    The sound card:
    http://www.ppa-usa.com/products/soundcard/1455.htm
    The speakers:
    http://www.logitech.com/index.cfm/speakersaudio/home_pcspeakers/devices/3549&cl=us,en

  • HP Mini 110-1160SA problem recording sound from sound card

    I am trying to record sound from the sound card itself rather than an external or internal microphone, using a free software called Sonarca Sound Recorder. For example, I play radio from the internet using the BBC Iplayer. I have Windows 7 Starter. When I use the Windows Control Panel > Hardware and Sound > Manage Audio Devices, I get a window called Sound. I press the Recording tab, and get a choice of Internal Microphone, External Microphone, and Stereo Mix. According to my sound recorder software's documentation, I need to select that Stereo Mix, because it means "record whatever the sound card is playing". However, the Stereo Mix recording device, despite having a red tick mark next to it is "Currently Unavailable". How do I make it available?

    to be honest, i am not sure about your problems, normally, you need to set stereo mix as default device, then using recording devices to record sound on windows 7. Since you cannot make it, why not insall a virtual sound device, it works like a real one, install this streaming music recorder on your system, start recording. Just test it out by yourself.

  • Since Vista doesn't work correctly on XFI Pro Elite.. What other sound card solutions do wo

    I am not looking for a flame war - just to honestly get some advice from others on what other solid sound cards do you know that work properly when hooking up optical inputs and such and have a wide selection of inputs like the creative xfi elite pro's breakout box. M

    Ok an update. I am very persistant - was up to 4am trying to fix this and trying to go through every possible problem. That right there shows there is some serious problems with creative's software and drivers. It is suppose to be easy, not require someone who has a master's degree in computer science 2 hours to sort through the problems. It would help if there was just a clear install guide telling exactly what needs to be done - or better yet - gasp - an installer than actually did all the complicated things for you. (Creative - see Installshield and an expert consultant - they can help you. It will be worth outsourcing your efforts to get a clean view on things. I suspect the people putting these driver packages at creatives have been there a while and have lost perspecti've). It is possible to get the soundcard working to a degree on Vista. Things to realize (the following works if an only if you only have one creative product installed. Otherwise it could screw up your system):?
    Make am imagine of your Windows before and after this. Before because its easy to screw things up. After because once you get it working you will never want to do it again.<
    Order or find on torrent the Official Vista Install CD [do not install it yet]. Download it. Its large - or order it and pay $9 for shipping and handling. (I think they are paying a courier to hand deli'ver it and also bring me coffee since it is so expensi've). You can not get this from creative's online site. (Imagine that).<
    You must uninstall manually everything that creative installs at all before going to next step.<
    You must uninstall everything that is nati've audio to your system (e.g. built on the motherboard).<
    There must not be other audio drivers or audio software installed.<
    After you uninstall all this - make sure you also uninstall creative's drivers, any other drivers of an audio nature, and make sure you check the box that says "delete drivers" when you uninstall.<
    REBOOT<
    Remove any other audio products from the system if possible. If built on a motherboard - see next step.<
    Go into the BIOS. Disable anything that is audio related. Save your settings.<
    REBOOT (again).<
    Go delete every registry setting that is in your registry hi've using regedit that is creative xfi related. (This can take some time because there are many sub devices, and not everything says "creative" on it.)? Good luck.<
    Delete everything in your program files under creative (remember to make sure you do this as an administrator with adminstrator permissions - thanks UAC).<
    Delete everything in users/[every user name here that runs on your system]/appdata/local/creative<
    Delete everything in users/[every user name here that runs on your system]/roaming/creative<
    [another words - delete everything you can find creative related to the xfi] - again be careful if you have more than one creative product - you could screw your system.<
    Install the Official Vista CD. Install ALL the software with ALL options. Click yes to a thousands OK yes I agree to install. Make sure you install this with administrati've privliedges.<
    REBOOT (again).<
    Register (why not - you did everything else)<
    Update all the software that it says to update. This will take?a long time because all of the software that is on the CD is out of date. <
    Alchemy will not update because you will have just updated a new set of drivers. So...<
    REBOOT (again).<
    Update all of software again that it says to update. (Creatives update manager works decently).<
    Alchemy will finish installing.<
    REBOOT (again).<
    Do not use control/panel/sound to adjust things - its useless<
    Make sure you use the Creative XFI Volume Panel (It is not the same as the Windows Volume). Great job naming this guys... Set what you want... the sound should be working.<
    NOTE:? SPDIF seems to be not available in Games (Sorry folks who run PS3 Optical through this device - your SOL - thanks Creative). To do this you must use it in Entertainment mode - but wait... SPDIF is disable by default. You must go to the mixer and enable it.<
    Now with this being said - many things still won't be functional. E.g. there is no dolby through SPDIF, etc. Many of the features that were sold with this card - simply are not available in the Vista drivers. Also note that to use the latest Alchemy that is on the web site (not through the updates) you have to hunt down and find beta drivers and install those - which automatically expire later on in the year. Good jobs guys with this too... not very smart creative.<
    SO there you have it. I am sure I may have missed a step - so if someone trys this and has a question - I will try to help. This is ridiculous though that someone has to go through this. A Windows service pack for the OS is easier than this. Creative get a clue - - fire some of your developers and get some that can do a decent job programming the drivers after 2 years of alpha's and betas and release - and create a decent install product. I shudder to think of the poor souls who bought more than one creative product. Good luck sorting through the directory, shared files, registry hi'ves, etc. to get your software working. If I hadn't paid a large some of money for this piece of hardware I would have never spent so much time on it. I figure even at $30 an hour - its about $400 in effort just to figure the above out, search through all the registry, hunt through the multiple directories of Vista, download the software, find out which software you have to download, etc. I am posting it here so that the average person who spent a couple hundred bucks on this card doesn't spend hundreds of dollars of time trying to get it to work on Vista.
    My advice for newbies to computers - go to best buy - spend $50 for install and tell them to get it all working perfectly in your PC. Best Buy is overpriced on everything now adays anyway... they wanted $40 for a hdmi to dvi converter when you can order one online for $5. They seem to be the 7- of Electronics.
    Please creative - clean up your act.
    Michael

Maybe you are looking for

  • HT1296 how do i synch music between my gateway mp3 player and iTunes?

    Help!

  • External monitor/display for a 2012 MacBook Pro?

    I want to know if I can connect an Acer S201HL to a 2012 MacBook Pro i7 2.9GHz 8GB memory OSX10.8.1 - I will be using a magic mouse and apple wireless keyboard as well - if this setup will work what specific cables and adapters do I need to get? If a

  • Icons missing & blank configuration

    I purchased the 8830 World smartphone, (GPRS, COMA), SW ver 4.2.2.176 on Platform 3.0.0.76, with all SW modules ver 4.2.2.176, with excption: net_rim_reimbursed 4.2.10,  SecureIDLib 2.1.0, and all net_rim_bb_lbs....... at 1.2.26 I could have sworn th

  • Visual Composer cookie

    Hi, I'm developing a iView in VC. This iView shall show the updated result from 5 different queries from SAP BI system. The iView must be showing the queries as a circle shaped cookie with different colors. How do I proceed this task; - 1 iView pr. q

  • Current Tab Clickable?

    Hello, Is there anyway to make the current tab clickable so that it navigates to the primary tab page? Regards.