LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   SUSE / openSUSE (https://www.linuxquestions.org/questions/suse-opensuse-60/)
-   -   No Sound in Flash on firefox, konq or opera (https://www.linuxquestions.org/questions/suse-opensuse-60/no-sound-in-flash-on-firefox-konq-or-opera-617335/)

eibo 04-11-2008 04:58 AM

As i did reach this thread looking for a solution but unfortunately not finding it here I just wanted to give you this http://bbs.archlinux.org/viewtopic.php?pid=346626 and this http://forum.skype.com/index.php?sho...40&#entry70440 which solved the problem for me. It was kind of a problem with the alsa configuration here, I had to change my /etc/asound.conf to get sound working:
Code:

pcm.asymed {
  type asym
  playback.pcm "dmix"
  capture.pcm "dsnoop"
}

pcm.!default {
  type plug
  slave.pcm "asymed"
}

pcm.dsp0 {
  type plug
  slave.pcm "asymed"
}

pcm.dsp1 {
  type plug
  slave.pcm "asymed"
}

pcm.dmixer {
        type dmix
        ipc_key 1024
        slave {
                pcm "hw:1,0"
                period_time 0
                period_size 1024
                buffer_size 8192
                rate 48000  #many new cards are 48000 only
        }
        bindings {
                0 0
                1 1
        }
}
       

ctl.dmixer {
        type hw
        card 1
}

pcm.!dsnoop {
  type dsnoop
  ipc_key 5778293
  ipc_key_add_uid yes
  slave {
      pcm "hw:0,0"
      period_time 0
      period_size 1024
      buffer_size 8192
      rate 48000  #many new cards are 48000 only
  }
}

I use Debian Etch on x86_64 with nspluginwrapper 0.9.91.4-1 and Flash 9, on SUSE /etc/asound.conf might already be like this.

Have fun!

angelpoplin 08-30-2008 07:06 PM

Same Problem different solution
 
I had the same problem(flash wrapper with x86_64 under firefox and no flash sound), I got the solution from another blog, I had to:

yum install libflashsupport.i386

Thanks.


All times are GMT -5. The time now is 05:43 AM.