Linux - SoftwareThis 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
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.
I had to switch th X11 in preferences to get Mplayer to play, but it does now, everything ... wmv, xvid,divx, mov etc
installed all my codecs correctly
tough when i installed the mplayer plugin for mozilla/firefox and it starts to play I get wmv with sound but no video and quicktime with buffering to 99 percent , doesn't play just hangs.
does this have something to do with gstreamer?
using fedora core 3 and latest firefox
having to open all video in totem xine using their plugin until i can figure out how to get it to stream right in the browser
how did you install the mplayerplug-in? from source or an rpm?
assuming you have mplayer installed correctly, this should do the trick:
i) First, download latest source (mplayerplug-in.sourceforge.net). Unpack it somewhere. You'll need the gecko sdk. Get it at http://ftp.mozilla.org/pub/mozilla.org/mozilla/releases choose the latest release, and then download the gecko sdk tar file that matches your architecture. extract that somewhere.
ii) in console, navigate to your unpacked mplayerplug-in directory. type ./configure --with-gecko-sdk=/path/to/geckosdkhere
iii) change to root, and then type 'make' If all is well, two files will be created in the directory you just configured:
- mplayerplug-in.so
- mplayerplug-in.xpt
copy these somewhere to be used later without having to build them if you reinstall. you will need to copy mplayerplug-in.so to the plugins directory of your firefox install and mplayerplug-in.xpt into the components directory of firefox. That is all you need. Testing can be done at apple's quicktime page for cinematic previews and various other pages where streaming media is used.
i've only been using mandrake since i started with linux about a year ago, so i'm not familiar with fedora packaging systems. the main thing you'll want to do is look in the directory where you have firefox installed.
in the "components" directory, mplayerplug-in.xpt needs to be present.
in the "plugins" directory, mplayerplug-in.so needs to be present.
otherwise i'd try compiling from source with the above instructions. let me know how it turns out
Check out this site its what I followed and I have mplayer with the GUI and it works great alone and in the browser . I'm also using fedora core 3 and firefox http://ghaefb.fedorausers.org/howto01.html
[root@localhost mplayerplug-in]# ./configure --with-gecko-sdk=/home/bryan/Desktop/mozilla-installer
checking for g++... no
checking for c++... no
checking for gpp... no
checking for aCC... no
checking for CC... no
checking for cxx... no
checking for cc++... no
checking for cl... no
checking for FCC... no
checking for KCC... no
checking for RCC... no
checking for xlC_r... no
checking for xlC... no
checking for C++ compiler default output file name... configure: error: C++ compiler cannot create executables
See `config.log' for more details.
[root@localhost mplayerplug-in]#
you'll need to download that and unpack it. then in your configure options, point it to where you unpack it. so for you, if you unpack it at your desktop, it will look like:
[root@localhost mplayerplug-in]# ./configure --with-gecko-sdk=/home/bryan/Desktop/gecko-sdk
checking for g++... no
checking for c++... no
checking for gpp... no
checking for aCC... no
checking for CC... no
checking for cxx... no
checking for cc++... no
checking for cl... no
checking for FCC... no
checking for KCC... no
checking for RCC... no
checking for xlC_r... no
checking for xlC... no
checking for C++ compiler default output file name... configure: error: C++ compiler cannot create executables
See `config.log' for more details.
apt does say I have gcc installed and I have compiled other things such as my nvidia driver
[bryan@localhost ~]$ gcc --version
gcc (GCC) 3.4.2 20041017 (Red Hat 3.4.2-6.fc3)
Copyright (C) 2004 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
configure:1390: checking for g++
configure:1419: result: no
configure:1390: checking for c++
configure:1419: result: no
configure:1390: checking for gpp
configure:1419: result: no
configure:1390: checking for aCC
configure:1419: result: no
configure:1390: checking for CC
configure:1419: result: no
configure:1390: checking for cxx
configure:1419: result: no
configure:1390: checking for cc++
configure:1419: result: no
configure:1390: checking for cl
configure:1419: result: no
configure:1390: checking for FCC
configure:1419: result: no
configure:1390: checking for KCC
configure:1419: result: no
configure:1390: checking for RCC
configure:1419: result: no
configure:1390: checking for xlC_r
configure:1419: result: no
configure:1390: checking for xlC
configure:1419: result: no
configure:1432: checking for C++ compiler version
configure:1435: g++ --version </dev/null >&5
./configure: line 1436: g++: command not found
configure:1438: $? = 127
configure:1440: g++ -v </dev/null >&5
./configure: line 1441: g++: command not found
configure:1443: $? = 127
configure:1445: g++ -V </dev/null >&5
./configure: line 1446: g++: command not found
configure:1448: $? = 127
configure:1471: checking for C++ compiler default output file name
configure:1474: g++ conftest.cc >&5
./configure: line 1475: g++: command not found
configure:1477: $? = 127
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "mplayerplug-in"
| #define PACKAGE_TARNAME "mplayerplug-in"
| #define PACKAGE_VERSION "2.80"
| #define PACKAGE_STRING "mplayerplug-in 2.80"
| #define PACKAGE_BUGREPORT "mplayerplug-in-devel@lists.sourceforge.net"
| /* end confdefs.h. */
|
| int
| main ()
| {
|
| ;
| return 0;
| }
configure:1516: error: C++ compiler cannot create executables
See `config.log' for more details.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.