LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 09-06-2007, 03:33 AM   #16
b0uncer
LQ Guru
 
Registered: Aug 2003
Distribution: CentOS, OS X
Posts: 5,131

Rep: Reputation: Disabled

Hi everyone

I'll post some information here about my own setup with Flash 9 (on a Slackware 12 box), hoping that it sheds some light.

I don't have sound working on Flash 9. I've installed Flash9 using the installer script provided by Adobe, and later by simply copying the .so file to the right place; these two methods don't differ, the script just automates the copying. Anyway, Flash 9 is correctly installed and works in Konqueror; on Firefox 3 Alpha (Gran Paradiso) it is not loading for some reason, but I suspect it's just because it's alpha - it probably works on FF2 and 1. Anyway, on Konqueror videos play fine with Flash 9, except there's no sound output. I have ALSA installed, at the moment I have the kernel modules built-in (I've dropped off every module from my kernel that I do not need, and tried to compile the rest that I know I need into the kernel itself); I've also tried having each alsa module built as a separate module, without luck. ALSA is working as I do get sound off other players that are configured to use ALSA. In KDE I enabled Arts last week, still getting sound without problem from other players, still not getting any sound out of Flash 9. There's no OSS or ESD on the system (as far as I know, unless somebody else installed those), so every requirement listed at Adobe's site (or in the above posts) is filled - still no sound.

I'll be recompiling my kernel later this week, to see if it helps - I had accidentally left a dummy sound device in place, which shouldn't be there. The problem is, that dummy device is sound dev #1, and my *real* sound device only #3. Took a while to figure this out to get Arts working now that I enabled it, it was using the dummy device by default. I'm suspecting this could have something to do with Flash also, maybe it's using the dummy device -- I can't find any place to configure the device it should be using (how do people do this, who have several devices?) Another reason I can think of is that there is still some piece of software "blocking" the sound output from Flash, but I haven't been able to think of any particular case. I'll be dealing with the dummy device first, and if Flash still doesn't output any sound after that, hunt for more reasons..

The whole sound system on Linux, especially if one uses a desktop environment that wants to have a centralized sound server, seems to be a jungle. There are several "technologies", several sound-producing "servers", several devices and all. Means a lot of configuration if one wants to have it simple & clear as it should be..
 
Old 04-24-2008, 01:45 PM   #17
k1ngdv
LQ Newbie
 
Registered: Apr 2008
Posts: 6

Rep: Reputation: 0
I installed the adobe flash plugin, went to:
http://labs.adobe.com/wiki/index.php...port_for_Linux

now where do i save the "flashsupport.c" file to?

(I am a very, very, very new Linux user so the more detailed the instructions, the better) Thanks in advance.
 
Old 04-24-2008, 01:49 PM   #18
k1ngdv
LQ Newbie
 
Registered: Apr 2008
Posts: 6

Rep: Reputation: 0
When I enter:
cc -shared -02 -Wall - Werror -licuuc -lssl flashsupport.c -o libflashsupport.so

in the terminal I am left with this:

-o libflashsupport.so
cc: Werror: No such file or directory
cc: unrecognized option '-02'
cc: -E or -x required when input is from standard input
flashsupport.c:158:25: error: openssl/ssl.h: No such file or directory
flashsupport.c: In function ‘FPX_Init’:
flashsupport.c:245: warning: implicit declaration of function ‘SSL_library_init’
flashsupport.c: At top level:
flashsupport.c:268: error: expected specifier-qualifier-list before ‘SSL’
flashsupport.c: In function ‘FPX_SSLSocket_Create’:
flashsupport.c:278: error: ‘struct SSL_Instance’ has no member named ‘sslCtx’
flashsupport.c:278: warning: implicit declaration of function ‘SSL_CTX_new’
flashsupport.c:278: warning: implicit declaration of function ‘TLSv1_client_method’
flashsupport.c:280: error: ‘struct SSL_Instance’ has no member named ‘ssl’
flashsupport.c:280: warning: implicit declaration of function ‘SSL_new’
flashsupport.c:280: error: ‘struct SSL_Instance’ has no member named ‘sslCtx’
flashsupport.c:282: warning: implicit declaration of function ‘SSL_set_fd’
flashsupport.c:282: error: ‘struct SSL_Instance’ has no member named ‘ssl’
flashsupport.c:286: error: ‘struct SSL_Instance’ has no member named ‘ssl’
flashsupport.c:287: warning: implicit declaration of function ‘SSL_shutdown’
flashsupport.c:287: error: ‘struct SSL_Instance’ has no member named ‘ssl’
flashsupport.c:290: error: ‘struct SSL_Instance’ has no member named ‘sslCtx’
flashsupport.c:291: warning: implicit declaration of function ‘SSL_CTX_free’
flashsupport.c:291: error: ‘struct SSL_Instance’ has no member named ‘sslCtx’
flashsupport.c: In function ‘FPX_SSLSocket_Destroy’:
flashsupport.c:305: error: ‘struct SSL_Instance’ has no member named ‘ssl’
flashsupport.c:306: error: ‘struct SSL_Instance’ has no member named ‘ssl’
flashsupport.c:309: error: ‘struct SSL_Instance’ has no member named ‘sslCtx’
flashsupport.c:310: error: ‘struct SSL_Instance’ has no member named ‘sslCtx’
flashsupport.c: In function ‘FPX_SSLSocket_Connect’:
flashsupport.c:326: warning: implicit declaration of function ‘SSL_connect’
flashsupport.c:326: error: ‘struct SSL_Instance’ has no member named ‘ssl’
flashsupport.c: In function ‘FPX_SSLSocket_Receive’:
flashsupport.c:338: warning: implicit declaration of function ‘SSL_read’
flashsupport.c:338: error: ‘struct SSL_Instance’ has no member named ‘ssl’
flashsupport.c: In function ‘FPX_SSLSocket_Send’:
flashsupport.c:350: warning: implicit declaration of function ‘SSL_write’
flashsupport.c:350: error: ‘struct SSL_Instance’ has no member named ‘ssl’
 
Old 04-25-2008, 08:19 PM   #19
dwpbike
Member
 
Registered: Sep 2005
Location: macon, ga
Distribution: downgraded from rh9 to fc8
Posts: 57

Rep: Reputation: 16
i'm thinking the first thing you need to tell lq is what linux are you using - suse, fedora, etc. then check to insure you have all flash components in the same folder.
 
Old 04-26-2008, 05:14 PM   #20
k1ngdv
LQ Newbie
 
Registered: Apr 2008
Posts: 6

Rep: Reputation: 0
I'm using ubuntu, and how do I check if I have all the flash components in the right dir?
 
Old 04-27-2008, 12:34 AM   #21
BallsOfSteel
Member
 
Registered: Mar 2008
Location: Florida
Distribution: Fedora mainly, but I am open to others.
Posts: 273

Rep: Reputation: 34
Taking Ivop's advice and leaving out -licuuc, I was able to get sound working with Flash 9.0 in Fedora 9.

Thanks,

Brandon
 
Old 05-20-2008, 07:54 AM   #22
nolebrink
LQ Newbie
 
Registered: May 2007
Posts: 13

Rep: Reputation: 0
I was having this problem since installing F9 too, then a buddy showed me this:

http://www.mjmwired.net/resources/mj...-f9.html#flash

Looks like the libflashsupport package needs to be installed for sound to work. I did the trick for me. Good luck!
 
Old 05-20-2008, 09:23 AM   #23
dwpbike
Member
 
Registered: Sep 2005
Location: macon, ga
Distribution: downgraded from rh9 to fc8
Posts: 57

Rep: Reputation: 16
a bit off thread, but what version of flash are you on? i show LNX 9,0,31,0 when i do adobe check. wolfgang stopped playing for me last week. installed a couple times, but still no go at all. i do fc6.
 
Old 05-22-2008, 12:37 PM   #24
dwpbike
Member
 
Registered: Sep 2005
Location: macon, ga
Distribution: downgraded from rh9 to fc8
Posts: 57

Rep: Reputation: 16
as of this date, the latest flash-plugin is LNX 9,0,124,0. the problem seems to be that yum didn't complete, although i received no error message. multiple tries later, it worked. kind of shakes my faith in automatic for the people.
 
Old 02-14-2010, 12:04 PM   #25
kribbs@wt.net
LQ Newbie
 
Registered: Feb 2010
Posts: 7

Rep: Reputation: 0
Talking No Sound running Flashplayer 9.0 (but FIXED)

My system is Slackware Linux 12.2 and sound hardware Audigy 2 ZS. My browser is SeaMonkey.

I recently re-loaded Linux 2.6.27.7 onto a new hard drive with Slackware 12.2 because my boot drive failed. So I am re-installing everything and ran into this sound problem with flashplayer 9.0.

After a lot of experimentation, I found a work-around. Maybe some more knowledgeable person out there can use this information to make a more permanent fix.

In my Linux /proc/asound directory, I found the sound devices detected by the operating system. I also, initially had sound under flashplayer 9.0 working, but suddenly it stopped, and I was confused by this event. Something I had done was interfering with flashplayer's ability to make sound. Now, I also noticed that alsaconf was detecting the driver (emu10k1) for the Audigy card OK, but it was also detecting a USB sound device as well. I was initially confused by that, until my eyes fell on the Logitech 9000 web cam that I had plugged in. It has a microphone! In /proc/asound, card0 was pointing to some USB device driver, and card1 was pointing to the emu10k1 driver for the Audigy. I unplugged the Logitech 9000 USB web cam and rebooted the OS. BINGO! Only the emu10k1 driver for the Audigy showd up in /proc/asound as card0 ! Now sound WORKED for flashplayer, as well as for xine and gxine!

So, my conclusion is that flashplayer wants to talk to card0, and does not recognize the emu10k1 driver when it is card1 !

I re-plugged in the Logictec 9000 USB while the OS was still up, and a usb driver now showed up as card1 in /proc/asound (instead of as card0 when I had the sound problem) and I got pictures from the web cam too!

If you need to re-boot the computer, disconnect any other sound device first, so that your sound card (my Audigy) becomes card0 and you get sound for flashplayer. After the computer re-boots, you can re-plug-in your other sound device (my Logitech Web Cam with microphone), it will become card1 in /proc/asound, and everything will be hunky-dory.

A permanent solution would be to get the OS to always make the sound card be card0 in /proc/asound at boot-up time, and make any other devices (USB web cam with microphone in my case) be card1 and up. Then flashplayer will always be happy with the sound card as card0. I do not know how to make that fix. In my case, I will have to live with unplugging the USB web cam every time I re-boot.

Hope this helps!

Last edited by kribbs@wt.net; 02-15-2010 at 09:09 AM.
 
  


Reply

Tags
alsa, flash, flash9, oss, plugin, sound, yum



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
trying to install adobe flash player mwade38 Linux - Newbie 2 01-11-2007 10:13 AM
adobe flash support on PPC rwbarat Linux - Software 0 01-10-2007 07:42 PM
Adobe Flash Installer Cannot Run chireo Linux - Software 8 12-24-2006 02:46 PM
Adobe Flash 9 Beta is available jlo_sandog Linux - Software 10 10-19-2006 03:06 AM
Adobe Flash Player on FC5_64 satimis Fedora 2 07-21-2006 11:47 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 11:23 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration