LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
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


Reply
  Search this Thread
Old 11-01-2005, 11:14 AM   #16
merchtemeagle
Member
 
Registered: Oct 2004
Location: Belgium
Distribution: Slackware 13.37
Posts: 512

Rep: Reputation: 31

What's the output of:

gcc -v
 
Old 11-02-2005, 04:54 AM   #17
hassegubben
LQ Newbie
 
Registered: Nov 2005
Location: Sweden
Distribution: SuSe 10.0
Posts: 21

Original Poster
Rep: Reputation: 15
command not found
 
Old 11-02-2005, 04:57 AM   #18
merchtemeagle
Member
 
Registered: Oct 2004
Location: Belgium
Distribution: Slackware 13.37
Posts: 512

Rep: Reputation: 31
Yes, that's what I thought. SuSe does not include gcc.

Take a look here
 
Old 11-02-2005, 06:44 AM   #19
hassegubben
LQ Newbie
 
Registered: Nov 2005
Location: Sweden
Distribution: SuSe 10.0
Posts: 21

Original Poster
Rep: Reputation: 15
I am surprised! I thought a c-compiler was enough? OR a gcc-compiler. The programs I have compiled used c++ OR gcc for compiling! mplayer looked for both and a c-compiler was already installed on SuSe. Anyway-the three packages started downloading immediately once I clicked on them in Konqueror. I hope I can find them later for installation through Yast!
 
Old 11-03-2005, 05:12 AM   #20
hassegubben
LQ Newbie
 
Registered: Nov 2005
Location: Sweden
Distribution: SuSe 10.0
Posts: 21

Original Poster
Rep: Reputation: 15
HELP!!! I have installed mplayer but now I can't start the program! A skin, codecs, fonts have been downloaded and extracted to the deviced folders. Trying gmplayer give the following message:
linux:~/mplayer/MPlayer-1.0pre7try2/MPlayer-1.0pre7try2 # gmplayer
MPlayer 1.0pre7try2-3.3.3 (C) 2000-2005 MPlayer Team
CPU: Intel Celeron 2/Pentium III Coppermine,Geyserville (Family: 6, Stepping: 10)
Detected cache-line size is 32 bytes
CPUflags: MMX: 1 MMX2: 1 3DNow: 0 3DNow2: 0 SSE: 1 SSE2: 0
Compiled for x86 CPU with extensions: MMX MMX2 SSE


vo: X11 running at 1024x768 with depth 16 and 16 bpp (":0.0" => local display)
[skin] file ( /usr/local/share/mplayer/Skin/default/skin ) not found.
Skin not found (default).
 
Old 11-03-2005, 05:22 AM   #21
merchtemeagle
Member
 
Registered: Oct 2004
Location: Belgium
Distribution: Slackware 13.37
Posts: 512

Rep: Reputation: 31
The error message is pretty clear, no default Skin has been found.
Where and how did you install the skin?
In "/usr/local/share/mplayer/Skin/" or in "~/.mplayer/Skin/" ?

Basically a skin is just a directory, for example "~/.mplayer/Skin/Blue/" .
Then do this:

cd ~/.mplayer/Skin/
ln -s Blue/ default
 
Old 11-03-2005, 05:28 AM   #22
hassegubben
LQ Newbie
 
Registered: Nov 2005
Location: Sweden
Distribution: SuSe 10.0
Posts: 21

Original Poster
Rep: Reputation: 15
I extracted the skin to:
In "/usr/local/share/mplayer/Skin/
A skin folder was created with the skin I selected!

cd ~/.mplayer/Skin/

gives the response:
bash: cd: /root/.mplayer/Skin/: No such file or directory
linux:~/mplayer #

Last edited by hassegubben; 11-03-2005 at 05:39 AM.
 
Old 11-03-2005, 06:19 AM   #23
merchtemeagle
Member
 
Registered: Oct 2004
Location: Belgium
Distribution: Slackware 13.37
Posts: 512

Rep: Reputation: 31
Are you working under the root account all the time?

If it is installed in "/usr/local/share/mplayer/Skin/<skinfolder>" do:

Code:
cd /usr/local/share/mplayer/Skin/
ln -s <skinfolder> default
and replace <skinfolder> with the real name
 
Old 11-03-2005, 06:55 AM   #24
hassegubben
LQ Newbie
 
Registered: Nov 2005
Location: Sweden
Distribution: SuSe 10.0
Posts: 21

Original Poster
Rep: Reputation: 15
That did the trick! Mplayer opens with the gui but with the following error message (even though I have installed western fonts in the directory):
/usr/local/share/mplayer/font

linux:/usr/local/share/mplayer/Skin # gmplayer
MPlayer 1.0pre7try2-3.3.3 (C) 2000-2005 MPlayer Team
CPU: Intel Celeron 2/Pentium III Coppermine,Geyserville (Family: 6, Stepping: 10)
Detected cache-line size is 32 bytes
CPUflags: MMX: 1 MMX2: 1 3DNow: 0 3DNow2: 0 SSE: 1 SSE2: 0
Compiled for x86 CPU with extensions: MMX MMX2 SSE


vo: X11 running at 1024x768 with depth 16 and 16 bpp (":0.0" => local display)
New_Face failed. Maybe the font path is wrong.
Please supply the text font file (~/.mplayer/subfont.ttf).
subtitle font: load_sub_face failed.


Is there a similar command for directing mplayer to the fonts directory?

And I can't seem to open the shared network files from the win XP server. Amarok plays the mp3:s fine and Kaffeine finds the .avi:s, but can't play them because it can only open local files. My intent was to replace kaffeine and Amarok(crashes all the time) with mplayer. Does mplayer need to be configured with the smb server to find networked files?
 
Old 11-03-2005, 06:58 AM   #25
merchtemeagle
Member
 
Registered: Oct 2004
Location: Belgium
Distribution: Slackware 13.37
Posts: 512

Rep: Reputation: 31
Make the in the "/usr/local/share/mplayer/font" there is not just the extracted fontdirectory.
The files in this fontdirectory should be in "/usr/local/share/mplayer/font".

Do you get what I'm trying to say?

EDIT: I have no idea about networked files. Try a google search on these keywords.
 
Old 11-03-2005, 07:09 AM   #26
hassegubben
LQ Newbie
 
Registered: Nov 2005
Location: Sweden
Distribution: SuSe 10.0
Posts: 21

Original Poster
Rep: Reputation: 15
I copied the .raw font files into the directory /font and mplayer opened without any errors! Obviously the search path for the fonts doesn't go beyond the font library.

I am truly grateful for your help!! There is no way I could have done this on my own!!

I will go through the documentation now to see what is stopping mplayer to open networked files. I will try the copy/paste trick to see if mplayer finds all the codecs as well.
 
Old 11-03-2005, 07:09 AM   #27
merchtemeagle
Member
 
Registered: Oct 2004
Location: Belgium
Distribution: Slackware 13.37
Posts: 512

Rep: Reputation: 31
But you didn't answer my question. You are not running everything as root, are you?
 
Old 11-03-2005, 07:56 AM   #28
hassegubben
LQ Newbie
 
Registered: Nov 2005
Location: Sweden
Distribution: SuSe 10.0
Posts: 21

Original Poster
Rep: Reputation: 15
Well-I log in as root. If that is what you mean. I rely on the programs default install directory for installations, but I don't put every file in the root. I create new folders in my Home Folder for downloads etc. But once I installed SuSe I couldn't log in. After asking a friend I managed to log in as root. I still haven't figured out how to set up a user account and password. I will take a look in the control center when I am up and running with mplayer. I still cant open the .avi from the DVD-player. I guess the codecs were not installed properly.
 
Old 11-03-2005, 07:58 AM   #29
merchtemeagle
Member
 
Registered: Oct 2004
Location: Belgium
Distribution: Slackware 13.37
Posts: 512

Rep: Reputation: 31
The first thing you should do is make a user account. Running as root is a HUGE security risk.
 
Old 11-03-2005, 08:56 AM   #30
hassegubben
LQ Newbie
 
Registered: Nov 2005
Location: Sweden
Distribution: SuSe 10.0
Posts: 21

Original Poster
Rep: Reputation: 15
Talking

I have created a user account which I am now using. I was able to open a .avi over the LAN, but subtitles are still missing. Must be a font problem.

I am slowly getting there.
 
  


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
Installing Freevo on Suse 9.3 tvphil Linux - Software 7 08-30-2005 07:40 AM
freevo metusnon Linux - Software 2 05-23-2004 12:28 PM
Freevo Mike2001 Linux - Software 1 05-11-2004 07:54 PM
Freevo Help Mike2001 Linux - Software 1 05-11-2004 07:47 PM
Freevo DBZForever456 Linux - Software 0 09-24-2003 05:38 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

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