LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian
User Name
Password
Debian This forum is for the discussion of Debian Linux.

Notices


Reply
  Search this Thread
Old 09-04-2011, 09:23 AM   #1
edhe1
Member
 
Registered: Sep 2006
Posts: 115

Rep: Reputation: 0
No You Tube sound or audio with Iceweasel version 3.5.16


I am using linux debian squeeze. I can't get audio or video on Iceweasel (which is like Firefox 3.5.16) but I can get audio and video on my laptop which uses Firefox version 3.6.21.
 
Old 09-04-2011, 09:53 AM   #2
jdkaye
LQ Guru
 
Registered: Dec 2008
Location: Westgate-on-Sea, Kent, UK
Distribution: Debian Testing Amd64
Posts: 5,465

Rep: Reputation: Disabled
1. does your audio and video work in general? I mean, is the problem limited to Iceweasel (which I use myself). Which websites don't work for audio and video? all? some? a few?
2. If you go into Tools-->Addons, in IW do you see Shockwave Flash listed in the Plugin? If yes, which version.
ciao,
jdk
 
Old 09-22-2011, 06:48 PM   #3
Stromie
LQ Newbie
 
Registered: Sep 2011
Posts: 3

Rep: Reputation: Disabled
I also have a problem with Iceweasel audio & video -- both are broken and choppy; sometimes neither works. I run Windows XP on a parallel drive and it works reasonably well, so the problem is Iceweasel, not Firefox. I would appreciate a "fix" because I want to switch over to Linux, but cannot as long as I can't view/hear lectures on YouTube.

Last edited by Stromie; 09-22-2011 at 06:49 PM.
 
Old 09-22-2011, 08:12 PM   #4
62chevy
Member
 
Registered: Mar 2002
Location: West (By God) Virginia
Distribution: Debian Squeeze - Sid
Posts: 281

Rep: Reputation: 45
Sound works just fine on my computer with Iceweasel 3.5.16 and Firefox 6.0.2 on Squeeze. If you give a little more information like does sound work at all, what have you done to get sound working someone might be able to give you better advice.
 
Old 09-22-2011, 08:16 PM   #5
widget
Senior Member
 
Registered: Oct 2008
Location: S.E. Montana
Distribution: Debian Testing, Stable, Sid and Manjaro, Mageia 3, LMDE
Posts: 2,628

Rep: Reputation: 497Reputation: 497Reputation: 497Reputation: 497Reputation: 497
A, there is nothing stopping you from using FF instead of IW.

B, if version 2.6 FF is working so should IW 2.6.

C, I use IW 5.0 on Debian Testing and have no trouble with YouTube or any other video.

D, I use IW 6 on Debian Sid and have no trouble.

E, I used IW 3 on Debian Stable and had no trouble (use 5 now because I like it better in other ways

F, I do not think you have the right codex installed

What kind of flash support have you installed?
 
Old 09-23-2011, 10:51 AM   #6
Stromie
LQ Newbie
 
Registered: Sep 2011
Posts: 3

Rep: Reputation: Disabled
No You Tube sound or audio w/Iceweasel v 3.5.16

My apologies for lack of information. I am a newbie with Linux, and do not know how to determine which codices are installed. I am receiving some sound, some video, on some sites, and broken sound and video on other sites. I will search this site for information on how to determine type of codices installed, & then reply back. Thanks your answers. Stromie.
 
Old 09-23-2011, 02:19 PM   #7
62chevy
Member
 
Registered: Mar 2002
Location: West (By God) Virginia
Distribution: Debian Squeeze - Sid
Posts: 281

Rep: Reputation: 45
Quote:
Originally Posted by Stromie View Post
My apologies for lack of information. I am a newbie with Linux, and do not know how to determine which codices are installed. I am receiving some sound, some video, on some sites, and broken sound and video on other sites. I will search this site for information on how to determine type of codices installed, & then reply back. Thanks your answers. Stromie.
You may want to ad debian-multimedia to your /ect/apt/sources.list then update ad the keyring then install flashplugin-nonfree.
 
Old 09-23-2011, 06:28 PM   #8
widget
Senior Member
 
Registered: Oct 2008
Location: S.E. Montana
Distribution: Debian Testing, Stable, Sid and Manjaro, Mageia 3, LMDE
Posts: 2,628

Rep: Reputation: 497Reputation: 497Reputation: 497Reputation: 497Reputation: 497
That would be a great start.

Mine looks like this;
Code:
deb http://www.debian-multimedia.org sqeeze main non-free
You may want to look at this thread;
http://www.linuxquestions.org/questi...e-list-330913/
Start on the last page and work back. Old thread and I doubt you are using Sarge which is the first version besides Sid (always Debian unstable) to be mentioned and posted in 05. The last few pages are actually modern and may give you some ideas.

You already have the debian main repo in your sources.list. It should look something like;
Code:
deb http://http.us.debian.org/debian/ squeeze main contrib non-free
Note the "contrib non-free". This is probably not in your sources.list. Put them there while you ae at it.

To add to your sources.list you will need to open a terminal and, as root;
Code:
gedit /etc/apt/sources.list
This will open the text editor "gedit" with root permissions so that you can change it.

All my sources.lists (have several installs) have this in them that you could cut and paste as you may find it handy;
Code:
### Public Key

### apt-get install debian-keyring debian-archive-keyring
### apt-key update

### Or

### If you get errors about missing keys, run these commands (replace KEY with key number)

### gpg --keyserver subkeys.pgp.net --recv KEY
### gpg --export --armor KEY | apt-key add -
in the case of Debian Multimedia you will need the second option.

You can put that in any file you want. If putting it in sources.list use it as I have it there. The "#" indicate to your package manager that the line is a comment and to be ignored by it (you really only need 1 not 3 like I have here).

Run;
Code:
apt-get update
after saving the file with the new repo(s) that you add so that your box knows what is going on.

In addition to the package recommended by 62chevy, I would install "firmware-linux".

I do not know how you install packages but I prefer apt-get or aptitude. Apt-get is a little simpler, aptitude has a lot more options particularly for tricky installs. The CLI is your friend.

Synaptic is alright if you have the preferences set right. In this case I would simply, as root;
Code:
apt-get install firmware-linux flashplugin-nonfree
I would also run;
Code:
apt-get upgrade
as there may be some other packages that want to be installed now that you have changed the sources.list.
 
Old 09-24-2011, 09:13 AM   #9
edhe1
Member
 
Registered: Sep 2006
Posts: 115

Original Poster
Rep: Reputation: 0
I found that in order to get audio and sound on You Tube I must:

1. sudo /etc/init.d/alsa-utils stop

2. sudo alsa force-reload

3. sudo /etc/init.d/alsa-utils start
 
Old 09-24-2011, 12:29 PM   #10
widget
Senior Member
 
Registered: Oct 2008
Location: S.E. Montana
Distribution: Debian Testing, Stable, Sid and Manjaro, Mageia 3, LMDE
Posts: 2,628

Rep: Reputation: 497Reputation: 497Reputation: 497Reputation: 497Reputation: 497
I think that I would try;
Code:
apt-get install --reinstall alsa-utils
May or may not help but would not take long to try.
 
Old 09-24-2011, 01:54 PM   #11
Stromie
LQ Newbie
 
Registered: Sep 2011
Posts: 3

Rep: Reputation: Disabled
Smile

Thank you for all your suggestions -- I am too much a Newbie to understand most of them. 1st stop Monday is the library to get a book on Linux.

I downloaded a current mplayer and can now listen to lectures just fine -- better than on Windows. Some other new files were downloaded as part of an automatic upgrade (went by too fast for me to write them down) but the mplayer helped the most.
 
Old 09-25-2011, 12:02 PM   #12
widget
Senior Member
 
Registered: Oct 2008
Location: S.E. Montana
Distribution: Debian Testing, Stable, Sid and Manjaro, Mageia 3, LMDE
Posts: 2,628

Rep: Reputation: 497Reputation: 497Reputation: 497Reputation: 497Reputation: 497
Here are some links that may, or may not, be of some help. Hope they are good for entertainment at least.
http://linux.oneandoneis2.org/LNW.htm

http://www.unixguide.net/linux/linuxshortcuts.shtml

http://www.linuxnewbieguide.org/cont...r-1-what-linux

http://www.freeos.com/articles/3102/
 
Old 10-02-2011, 08:48 PM   #13
cryingthug
Member
 
Registered: Jun 2009
Posts: 131

Rep: Reputation: 18
sound

Stromie and edhe1,

This is the easiest thing to do. Check out the site www.howtoforge.com They have tutorials on how to set up the perfect desktop.

http://www.howtoforge.com/the-perfec...debian-squeeze

Make sure you have the correct URLs in /etc/apt/sources.list
Then follow the tutorial to install the correct multimedia codecs.
Go to System > Preferences > Sound to make sure the volume is turned up.
Come back to the forum with more questions if you have any.
I got off of XP a long while ago and I am really glad that I did.

Reading a lot is also good.

Quote:
Originally Posted by Stromie View Post
Thank you for all your suggestions -- I am too much a Newbie to understand most of them. 1st stop Monday is the library to get a book on Linux.

I downloaded a current mplayer and can now listen to lectures just fine -- better than on Windows. Some other new files were downloaded as part of an automatic upgrade (went by too fast for me to write them down) but the mplayer helped the most.

Last edited by cryingthug; 10-02-2011 at 08:51 PM. Reason: error
 
Old 10-03-2011, 10:48 PM   #14
lugoteehalt
Senior Member
 
Registered: Sep 2003
Location: UK
Distribution: Debian
Posts: 1,215
Blog Entries: 2

Rep: Reputation: 49
Simplest thing is just to download the newest version of Firefox from their site. http://www.mozilla.org/en-US/firefox/fx/ .

Just follow their instructions, there is no need to compile it.

If flash still does not work then obviously get back.
 
  


Reply



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
Iceweasel crashes when use full screen in You tube, update flashplayer? JosephS Debian 14 12-24-2010 02:23 PM
iceweasel version vs firefox version Cultist Debian 11 10-26-2010 11:15 PM
No sound for You Tube videos in Firefox after upgrade to 10.04 Buzzygirl Ubuntu 1 08-29-2010 06:47 PM
E-Mail Sound Notification & I cant watch U-Tube any longer magician777 Linux - Newbie 2 11-26-2008 11:12 AM
no more sound in amarok and iceweasel xine can't initialize audio driver cyrilng Linux - Software 4 06-11-2008 12:35 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian

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