LinuxQuestions.org
Help answer threads with 0 replies.
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 07-19-2007, 01:07 AM   #16
kyo
LQ Newbie
 
Registered: Jul 2007
Posts: 6

Rep: Reputation: 0

Quote:
How did you install and run nspluginwrapper? I didn't work for me, but I had no idea what I was doing. I'm using Debian AMD64 testing.
I didn't know what I was doing either but read about it on the man page for nspluginwrapper:

man nspluginwrapper

It was a few weeks ago when I did it but if I remember correctly I just installed the 32-bit plugins as usual. I verified that the plugins were installed in the /usr/lib/mozilla/plugins directory. To wrap Flash Player, I typed in:

nspluginwrapper -i libflashplayer.so

The nspluginwrapper program created the file npwrapper.libflashplayer.so in the plugins directory. To wrap Adobe Reader I typed in:

nspluginwrapper -i nppdf.so

The nspluginwrapper program created the file npwrapper.nppdf.so in the plugins directory. I then typed in "about:plugins" in the firefox address field and saw that the plugins were enabled. Before installing flash I tried gnash and found it to be buggy. It's a fairly new project and isn't ready yet.

Last edited by kyo; 07-19-2007 at 01:17 AM.
 
Old 08-02-2007, 06:54 PM   #17
kyo
LQ Newbie
 
Registered: Jul 2007
Posts: 6

Rep: Reputation: 0
jameslaw;

I don't know if you will see this post because I'm posting quite a bit latter but I finally got Debian testing working om my machine (the kernel now supports my motherboard) and I can tell you exactly what I did to get acrobat reader and flash player working on Debian. Here are the steps:

INSTALL ADOBE FLASH PLAYER
su
nano /etc/apt/sources.list (add the following to /etc/apt/sources.list file)

# Uncomment to download packages unavailable in the official debian repositories
deb http://www.debian-multimedia.org testing main

apt-get update
aptitude install ia32-libs-gtk
aptitude install flashplayer-mozilla (installs flash-player and wraps the plugin)

INSTALL ADOBE READER

Download:
acroread_7.0.9-0.2sarge1_i386.deb
acroread-escript_7.0.9-0.2sarge1_i386.deb
mozilla-acroread_7.0.9-0.2sarge1_i386.deb
or later from a http://debian-multimedia.org/ mirror (I used the mirror at http://ftp.sunet.se/pub/os/Linux/dis...in/a/acroread/).

dpkg -i --force-architecture acroread_7.0.9-0.2sarge1_i386.deb acroread-escript_7.0.9-0.2sarge1_i386.deb mozilla-acroread_7.0.9-0.2sarge1_i386.deb

In /etc/ld.so.conf add the line:
/usr/lib/Adobe/Acrobat7.0/Reader/intellinux/lib (it works without doing this step and the ldconfig step but without doing these steps some of the libraries aren't loaded; I didn't test all the functions though. Maybe those libraries are used for printing or something like that)

ldconfig
nspluginwrapper -i /usr/lib/mozilla/plugins/nppdf.so

Last edited by kyo; 08-02-2007 at 07:13 PM.
 
Old 08-02-2007, 07:53 PM   #18
jameslaw
Member
 
Registered: Nov 2005
Location: Trento, Italy
Distribution: Debian:testing, Ubuntu
Posts: 33

Original Poster
Rep: Reputation: 15
Thanks kyo. LQ.org sends me mail everytime someone posts, so I got it quickly.

This is a *ton* more info than I had before. I'll give it another try.

jlaw

Quote:
Originally Posted by kyo
jameslaw;

I don't know if you will see this post because I'm posting quite a bit latter but I finally got Debian testing working om my machine (the kernel now supports my motherboard) and I can tell you exactly what I did to get acrobat reader and flash player working on Debian. Here are the steps:

INSTALL ADOBE FLASH PLAYER
su
nano /etc/apt/sources.list (add the following to /etc/apt/sources.list file)

# Uncomment to download packages unavailable in the official debian repositories
deb http://www.debian-multimedia.org testing main

apt-get update
aptitude install ia32-libs-gtk
aptitude install flashplayer-mozilla (installs flash-player and wraps the plugin)

INSTALL ADOBE READER

Download:
acroread_7.0.9-0.2sarge1_i386.deb
acroread-escript_7.0.9-0.2sarge1_i386.deb
mozilla-acroread_7.0.9-0.2sarge1_i386.deb
or later from a http://debian-multimedia.org/ mirror (I used the mirror at http://ftp.sunet.se/pub/os/Linux/dis...in/a/acroread/).

dpkg -i --force-architecture acroread_7.0.9-0.2sarge1_i386.deb acroread-escript_7.0.9-0.2sarge1_i386.deb mozilla-acroread_7.0.9-0.2sarge1_i386.deb

In /etc/ld.so.conf add the line:
/usr/lib/Adobe/Acrobat7.0/Reader/intellinux/lib (it works without doing this step and the ldconfig step but without doing these steps some of the libraries aren't loaded; I didn't test all the functions though. Maybe those libraries are used for printing or something like that)

ldconfig
nspluginwrapper -i /usr/lib/mozilla/plugins/nppdf.so
 
Old 08-08-2007, 09:18 PM   #19
djancak
LQ Newbie
 
Registered: Aug 2007
Posts: 1

Rep: Reputation: 0
Quote:
Originally Posted by slatibartfast
I had the same problem: Flashplayer 9 plugin did not make any sound. I followed practically all suggestions from this thred and plus, but with no results... Then I swapped the Ensoniq Creative ES1370 sound card from my computer with C-Media CMI8738 and problem was solved. Maybe some Alsa drivers are incompatible with the latest Flashplayer? Just a thought.
I have a Ensoniq Creative ES1370 also, and I've tried everything other than replacing it to get the sound in Flash to work.
 
Old 08-08-2007, 10:57 PM   #20
jameslaw
Member
 
Registered: Nov 2005
Location: Trento, Italy
Distribution: Debian:testing, Ubuntu
Posts: 33

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by djancak
I have a Ensoniq Creative ES1370 also, and I've tried everything other than replacing it to get the sound in Flash to work.
What distribution and architecture are you running?
 
Old 11-04-2007, 09:41 AM   #21
kernel-P4N1C
Member
 
Registered: Nov 2007
Location: Panama city, Republic of Panmaa
Posts: 167

Rep: Reputation: 18
Quote:
Originally Posted by johnnyblade View Post
I'm getting similar problems with Slackware. An interesting note to this, however, is that it only affects non-root users. When I run FireFox as root, sound is just fine, but when I use it with my regular user, no sound. My guess is that the Flash plugin requires root privileges in order to use sound. So as craigevil has already stated, it's a bug that Adobe needs to fix. Y'know, nVidia has done a wonderful thing with their Linux support and I applaud their effort. I wish more commercial developers would take nVidia's example to heart. The computing world would be a far better place. God, I hate Micro$oft. (I know that's OT but I don't care. F*CK M$!)
Sorry but I'm having the same problem and it doesn't run as root as well.



running slackware 12
 
Old 11-09-2007, 09:25 AM   #22
kernel-P4N1C
Member
 
Registered: Nov 2007
Location: Panama city, Republic of Panmaa
Posts: 167

Rep: Reputation: 18
ok... fixed the issue by updating the browser...

funny, firefox run very slow so i insatlled opera and have no issues so far
 
Old 01-10-2008, 08:13 PM   #23
jamby
LQ Newbie
 
Registered: Jan 2008
Posts: 1

Rep: Reputation: 0
Hi
New here, just joined to post a reply. I had the same problem with firefox 1.5.0.12-7.el5 running centos5.1 on hp pavilion a340n.
Sound worked with cd's, xmms and others. But not with firefox. Found this thread through Google. And found if I first launch firefox from a root shell, then firefox launched from the user icon will have sound. The root instance does not have sound and it can be closed once sound is working on the user instance. Sound will continue to work until both instances are closed, then its back to starting both to have sound.

Weird..

Thanks
Jim
 
Old 01-11-2008, 08:18 AM   #24
saak.stepi
Member
 
Registered: Dec 2007
Posts: 88

Rep: Reputation: 15
Quote:
Originally Posted by craigevil View Post
It is a bug in Flash that hopefully will be fix if Adobe ever releases a newer Linux version. Until then you can:

Get sound working in Firefox for Flash

What worked was to 1) install alsa-oss and 2) change the FIREFOX_DSP setting in /etc/firefox/firefoxrc to "aoss"

The above works in Debian and PCLinuxOS not sure if the file would be in the same place for other
distros.
Hello,

I got the same problem with RHEL4, x86_64.
My flashplayer does not have audio in firefox 32-bit browser.
I tried to fix the problem by using your advise:
1) Installed aoss

# which aoss
/usr/bin/aoss


2) I do not have /etc/firefox/firefoxrc in my system.
I just typed
#export FIREFOX_DSP=aoss

#echo $FIREFOX_DSP
aoss


Unfortunately this did not work. May be I have done
something incorrectly?


Thank you,

John
 
Old 01-19-2008, 03:25 PM   #25
simbobo
LQ Newbie
 
Registered: Jan 2006
Location: Hampshire, UK
Distribution: Debian Lenny - it may be testing, but XP is a lot more testing!
Posts: 27

Rep: Reputation: 15
If you're still struggling, try this thread: http://www.linuxquestions.org/questi...8/#post2967514
 
Old 04-05-2008, 06:26 AM   #26
frogweasel
LQ Newbie
 
Registered: Mar 2008
Location: Poquoson, VA
Distribution: Ubuntu 10.04
Posts: 12

Rep: Reputation: 0
No guarantees, but this worked for me.

I wondered if some other software had the sound card tied up so I killed all of the sound daemons running on my box (esd and artsd in my case).
Then I started Firefox and I had sound for flash content. I'm running Fedora Core 5 with the old ES1370 sound card. Firefox is 2.0.0.13.

One disclaimer -- I have been trying to get this to work for months and I have not documented all the changes I made, so the solution may have been a combination of steps that I can not now replicate.
 
Old 04-05-2008, 12:54 PM   #27
juliadream
LQ Newbie
 
Registered: Oct 2006
Location: /var/random
Distribution: debian. slackware, dsl
Posts: 8
Blog Entries: 1

Rep: Reputation: 0
I have been trying for some months to finally get to the root of this problem which has been with me now across 3 machines and in changing from sarge to etch..

All suggested fixes do not work, and some break all sound capability completely. As one of the earlier posters found it is very hardware sensitive. I have an ensoniq card also, and it just doesn't work.

A lenny system with a c-media card just works out of the box,after using something which I bookmarked on the other system and can't exactly remember what..(flashplayer-nonfree-extrasound rings a bell) so I have given up with my particular hardware until I upgrade to lenny later in the year.. (don't think I'm missing anything anyway not having sound on 2 sites I never use)
 
Old 04-07-2008, 09:34 AM   #28
saak.stepi
Member
 
Registered: Dec 2007
Posts: 88

Rep: Reputation: 15
Quote:
Originally Posted by simbobo View Post
If you're still struggling, try this thread: http://www.linuxquestions.org/questi...8/#post2967514
no luck unfortunately ...
 
Old 04-23-2008, 11:18 AM   #29
owenoak
LQ Newbie
 
Registered: Feb 2008
Posts: 4

Rep: Reputation: 0
Unhappy No Sound from Firefox Flash Player FC8

I thought I was doing well to update Firefox and install the most recent Flash plugin I could find, so I was crushed when the Flash video ran well but there is no audio output.
I have movie and mp3/ogg players working well and the Flash problem is annoying.

Another problem is that if I right click-properties in the Flash window and click on Mike a Gecko bug report is generated and Firefox is closed down.

Help.

Linux version 2.6.24.4-64.fc8 (64 Bit?)
Tbird 2.0.0.13
Flash 9,0,115,0 installed

Last edited by owenoak; 04-24-2008 at 02:22 PM. Reason: May be 64 bit
 
Old 04-23-2008, 08:07 PM   #30
jameslaw
Member
 
Registered: Nov 2005
Location: Trento, Italy
Distribution: Debian:testing, Ubuntu
Posts: 33

Original Poster
Rep: Reputation: 15
Are you running a 64-bit version of Linux? The flash plugin does not work properly on 64-bit systems. I struggled with this for over a year.

Try Swiftfox: http://getswiftfox.com/

Runs beautifully for me.
 
  


Reply

Tags
firefox, flashplayer, nspluginwrapper, sound



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
firefox mplayerplugin no video NightKids Linux - Newbie 14 10-09-2008 02:38 AM
Sound lagging behind video in Google video slackist Linux - General 1 05-15-2006 07:45 AM
firefox does not stream video after firefox automatic upgrade? kazuya1977 VectorLinux 1 02-12-2006 01:48 PM
Sound Problems: CD works, no system/mp3/video sound tabnaka SUSE / openSUSE 5 01-13-2006 12:33 PM
Video without sound; sound without video - in Debian, KDE with SB Live headisdead Linux - Hardware 0 06-20-2004 07:43 AM

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

All times are GMT -5. The time now is 11:59 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