Results 1 to 10 of 10

Thread: How to open Mplayer?

  1. #1
    Join Date
    Mar 2008
    Beans
    163

    Exclamation How to open Mplayer?

    This has got to be the weirdest thing ever.

    I installed Mplayer via Terminal (sudo apt-get install Mplayer), and I can't find the programme anywhere. It's not in Applications. When I type Mplayer in Terminal, I get a ridiculous long line of text.

    Code:
    oyv@oyv-laptop:~$ mplayer
    MPlayer SVN-r1.0~rc3+svn20090426-4.4.3 (C) 2000-2009 MPlayer Team
    Usage:   mplayer [options] [url|path/]filename
    
    Basic options: (complete list in the man page)
     -vo <drv>        select video output driver ('-vo help' for a list)
     -ao <drv>        select audio output driver ('-ao help' for a list)
     vcd://<trackno>  play (S)VCD (Super Video CD) track (raw device, no mount)
     dvd://<titleno>  play DVD title from device instead of plain file
     -alang/-slang    select DVD audio/subtitle language (by 2-char country code)
     -ss <position>   seek to given (seconds or hh:mm:ss) position
     -nosound         do not play sound
     -fs              fullscreen playback (or -vm, -zoom, details in the man page)
     -x <x> -y <y>    set display resolution (for use with -vm or -zoom)
     -sub <file>      specify subtitle file to use (also see -subfps, -subdelay)
     -playlist <file> specify playlist file
     -vid x -aid y    select video (x) and audio (y) stream to play
     -fps x -srate y  change video (x fps) and audio (y Hz) rate
     -pp <quality>    enable postprocessing filter (details in the man page)
     -framedrop       enable frame dropping (for slow machines)
    
    Basic keys: (complete list in the man page, also check input.conf)
     <-  or  ->       seek backward/forward 10 seconds
     down or up       seek backward/forward  1 minute
     pgdown or pgup   seek backward/forward 10 minutes
     < or >           step backward/forward in playlist
     p or SPACE       pause movie (press any key to continue)
     q or ESC         stop playing and quit program
     + or -           adjust audio delay by +/- 0.1 second
     o                cycle OSD mode:  none / seekbar / seekbar + timer
     * or /           increase or decrease PCM volume
     x or z           adjust subtitle delay by +/- 0.1 second
     r or t           adjust subtitle position up/down, also see -vf expand
    
     * * * SEE THE MAN PAGE FOR DETAILS, FURTHER (ADVANCED) OPTIONS AND KEYS * * *
    I thought there was supposed to be a GUI here?

  2. #2
    Join Date
    Aug 2009
    Location
    United States
    Beans
    4,523
    Distro
    Ubuntu Development Release

    Re: How to open Mplayer?

    #open a terminal:
    Code:
    nautilus /usr/share/applications
    Is it there:

    #Or below:
    Code:
    sudo apt-get install aptitude
    Code:
    aptitude show mplayer
    Will tell you version if installed and much more:

    ## Or you can try mplayer not Mplayer:
    Last edited by garvinrick4; January 16th, 2011 at 04:42 AM.
    Remember hence where you come and pass it down.
    Ubuntu Forums member #899097 and Ubuntu Member:


  3. #3
    Join Date
    Mar 2006
    Location
    The Internet
    Beans
    1,817
    Distro
    Ubuntu

    Re: How to open Mplayer?

    Nope, no gui. mplayer is all from the command line. Basically issue mplayer file or stream.

    Ex:

    Code:
    mplayer -aspect 16:9 http://bglive-a.bitgravity.com/twit/live/high

    You might want to check out gmplayer which is a gui:

    Code:
    sudo apt-get install gmplayer

  4. #4
    Join Date
    Mar 2010
    Location
    Norway
    Beans
    674

    Re: How to open Mplayer?

    mplayer is a terminal program.
    Try launching "mplayer -gui" <- will probably don't work.
    To play play video with mplayer:
    Code:
    mplayer /path/to/video.ogv
    Read the man page for mplayer
    Code:
    man mplayer
    Maybe you where looking for totem?

  5. #5
    Join Date
    Mar 2008
    Beans
    163

    Re: How to open Mplayer?

    Ah, thank you people. I actually managed to open the desired file in Mplayer by using Smart Viking's command.

    No, I were not looking for Totem, that is after all the standard player...

    I wanted to use Mplayer because it seemed to solve problems many people had with wmv – windows media audio 9 decoder. Unfortunately, I didn't get any sound in Mplayer either.

    Is Gmplayer the same as Mplayer, just with a GUI?

    Edit: sudo apt-get install gmplayer did not work.
    Code:
    Reading package lists... Done
    Building dependency tree       
    Reading state information... Done
    E: Couldn't find package gmplayer
    Last edited by Jetro; January 16th, 2011 at 05:11 AM. Reason: GMplayer does not work

  6. #6
    Join Date
    Mar 2010
    Location
    Norway
    Beans
    674

    Re: How to open Mplayer?

    Quote Originally Posted by stmiller View Post

    You might want to check out gmplayer which is a gui:

    Code:
    sudo apt-get install gmplayer
    Does not exist in the Ubuntu repos.

    There are two front ends to mplayer in the repos, they are "smplayer" and "gnome-mplayer".
    To install smplayer
    Code:
    sudo apt-get install smplayer
    to install gnome-mplayer
    Code:
    sudo apt-get install gnome-mplayer
    You can also install themes to smplayer if you want it to look pwned/1337
    Code:
    sudo apt-get install smplayer-themes

  7. #7
    Join Date
    May 2009
    Location
    Canada
    Beans
    868
    Distro
    Ubuntu Development Release

    Re: How to open Mplayer?

    SMPlayer is the best I hear, I still use VLC but I have SMPlayer as my backup with a source built mplayer with all the libraries so it can run virtually anything now. Check out this tutorial if you are interested.
    Intel Core i7 970 6/12 (Cores/Threads) 3.2GHz 12MB Cache
    6GB DDR3
    1866MHz RAM | ATI Radeon HD 5770 1GB GDDR5
    60GB SSD
    (/) | 1TB 64MB Cache HDD (/home)
    Ubuntu Oneiric
    Ocelot 11.10 x64

  8. #8
    Join Date
    Mar 2008
    Beans
    163

    Re: How to open Mplayer?

    Once again, thanks.

    I installed something called mplayer-gui and it was something like that I was looking for. It couldn't play the file at all.
    I will check out that tutorial later. It looked complicated like hell, though. :S

  9. #9
    Join Date
    Dec 2006
    Beans
    7,349

    Re: How to open Mplayer?

    Hi Jetro,

    Quote Originally Posted by Jetro View Post
    I will check out that tutorial later. It looked complicated like hell, though. :S
    Well I have have actually simplified it enormously just recently so now it consists of a series of code blocks that can be copied and pasted directly into a terminal. I simplified it so that people who do not routinely compile software would perhaps be gently eased into the process .

    Andrew
    You think that's air you're breathing now?

  10. #10
    Join Date
    Jan 2008
    Beans
    4,305

    Re: How to open Mplayer?

    Edit, nvm, packages changed in new releases.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •