Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place! |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
03-08-2005, 11:12 AM
|
#1
|
LQ Newbie
Registered: Feb 2005
Location: Ohio
Distribution: Mandrake 10.1
Posts: 13
Rep:
|
Streaming audio/video through Firefox
I'm using Mandrake 10.1 with Firefox 1.0.1. I've been unable to successfully find any plugin/application which will allow this. I like to listen every morning and afternoon to www.610wtvn.com so I can get my fill of Glenn Beck and Rush Limbaugh. I tried urpmi mplayer, butt it says it can't install it, due to a missing codec. Does anyone have any suggestion on how I can accomplish this? I posted a similar question before, and was never able to figure out how, or I misunderstood any suggestions.
Please, I'd appreciate any help,
New2MDK
|
|
|
03-08-2005, 12:34 PM
|
#2
|
LQ Newbie
Registered: May 2004
Distribution: Gentoo (main box, mythtv and laptop)
Posts: 14
Rep:
|
You'll need a few components to get the stream running. I visited your site, but I didn't see what codec they were using. I did notice it was clearchannel, which means it probably isn't something simple like mp3 or ogg streaming.
For MPlayer, you'll need an RPM of MPlayer for Mandrake, as well as the MPlayer codec pack (often called win32codecs). These are available from mplayerhq. When you're finished installing that (and tested!), go get the mplayer-plugin for firefox. This will allow you to use mplayer as your "universal" plugin from within firefox.
If you're still having trouble getting mplayer installed, post the error so we can see what the exact problem is.
|
|
|
03-08-2005, 03:15 PM
|
#3
|
LQ Newbie
Registered: Feb 2005
Location: Ohio
Distribution: Mandrake 10.1
Posts: 13
Original Poster
Rep:
|
rpdillon
After trying to install the RPM or using urpmi I get the same message:
Some package requested cannot be installed:
mplayer-1.0-0.pre6.7plf.i586 (due to unsatisfied real-codecs)
Continue? (Y/n) yhttp://www.mplayerhq.hu/homepage/design7/dload.htmlhttp://www.mplayerhq.hu/homepage/design7/dload.html
Then it asked me to continue, and when I do it goes back to a prompt:
[root@FicA gian]#
After visiting mplayerhq I read the best way to install mplayer is by building from source. By doing this will I be able to accomplish what you said?
Thank you
New2MDK
|
|
|
03-08-2005, 03:27 PM
|
#4
|
Senior Member
Registered: Oct 2003
Posts: 3,057
Rep:
|
I wouldn't get too excited about installing mplayer for that web site. I tried it and it wouldn't play with mplayer or realplayer. I even went to a windows box and couldn't get it to play. That site it one big advertising block after another but they don't seem too up and up on online streaming.
I did a google for streaming Rush Limbaugh and came up with this http://www.premiereinteractive.com/rushstream/ . Maybe one of those will work better.
|
|
|
03-08-2005, 03:34 PM
|
#5
|
LQ Newbie
Registered: May 2004
Distribution: Gentoo (main box, mythtv and laptop)
Posts: 14
Rep:
|
Building from source is a good option, usually. The only problem with RPM based distos is that things can be difficult to remove if the makefile doesn't support "uninstall".
Anyway, check for a codec RPM first, and try to install that. If that isn't available or doesn't work, then go for the source based install from mplayerhq. Try a google search for "mplayer RPM mandrake" and see what turns up. If you don't see any add-on RPMs for codecs, see if you can get an RPM for real_codec, since that is what the error mentioned (sounds like the RPM was compiled with real support, and now it needs it to install - you won't have that problem installing from source.)
As far as that website, I have no experience with it, but it is run by clearchannel, which probably means that have the stream DRM'd to hell and back, making playing it impossible without some custom player, I'd expect.
Good luck!
|
|
|
03-09-2005, 04:12 PM
|
#6
|
LQ Newbie
Registered: Feb 2005
Location: Ohio
Distribution: Mandrake 10.1
Posts: 13
Original Poster
Rep:
|
rpdillon,
Hi again. I've never complied/installed from source before, but am wanting to learn it, however, I'm not clear on something. From mplayerhq it says under README & INSTALLATION SECTION the things you'll need to compile, for example:
README INSTALLATION SECTION
http://www.mplayerhq.hu/DOCS/HTML/en/install.html
Does that mean I have to acquire those apps and install those particular libraries. Sorry about this, but I have yet to try any of this, thus my "STILL" newbie status
Thanks for any and all suggestions
New2MDK
|
|
|
03-09-2005, 05:58 PM
|
#7
|
Senior Member
Registered: Jan 2005
Location: Nottingham, UK
Distribution: Mageia 6, KDE Neon
Posts: 4,313
|
Did you use Y or y? the response is case sensitive.
|
|
|
03-09-2005, 06:53 PM
|
#8
|
LQ Newbie
Registered: May 2004
Distribution: Gentoo (main box, mythtv and laptop)
Posts: 14
Rep:
|
In short, yes.
The list *does* look quite daunting, but you'll find you have much of it already installed. For the things you don't, you can use RPMs available for Mandrake. A lot of it is also optional, and will be detected when you run ./configure before compiling.
One of the hardest (and most daunting) tasks for new users is to NOT be intimidated by compiling from source. It's usually fairly simple, and involves just about 5 steps:
1) Make sure you have the dependencies installed
2) Untar the archive (tar xvzf archive.tar.gz)
3) cd to the new directory and run ./configure
4) run "make"
5) use "sudo" to run "make install" (i.e. "sudo make install" and then enter your password)
In 90% of cases, that's it, and it doesn't often vary for mainstream projects. Java programs may use Ant for something like that, but it's pretty rare for most programs.
Stick with it, read the docs, and you'll be fine. =)
|
|
|
03-10-2005, 09:35 AM
|
#9
|
LQ Newbie
Registered: Feb 2005
Location: Ohio
Distribution: Mandrake 10.1
Posts: 13
Original Poster
Rep:
|
Quote:
Originally posted by {BBI}Nexus{BBI}
Did you use Y or y? the response is case sensitive.
|
Oops, it was a y, I'll try again. I wasn't aware responses such as that were case sensitive.
Thank you
|
|
|
All times are GMT -5. The time now is 05:32 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|