Page 3 of 6 FirstFirst 12345 ... LastLast
Results 21 to 30 of 55

Thread: HOWTO: MPlayer

  1. #21
    Join Date
    Dec 2004
    Location
    Finland
    Beans
    398

    Re: HOWTO: MPlayer

    Quote Originally Posted by clparker
    No, it just does that right away but if i switch drivers it will play just about anything, however it wont remember to use that driver after i close and reopen Mplayer
    Copy '/usr/local/etc/mplayer/example.conf' to '~/.mplayer/config' and edit the file to your liking. I use the line 'vo=xv' to specify the video output.

    I you use gmplayer and the preferences window, the settings should be remembered and stored in '~/.mplayer/gui.conf'. I have there the line 'vo_driver = "xv"'.

  2. #22
    Join Date
    Nov 2004
    Location
    University of New Mexico,
    Beans
    124
    Distro
    Hardy Heron (Ubuntu Development)

    Re: HOWTO: MPlayer

    No Dice, I copied the file, and edited it, and changed it to the driver I need and i wont change to VO=GL2
    -CLParker

  3. #23
    Join Date
    Dec 2004
    Location
    EU - Belgium
    Beans
    1,625

    Re: HOWTO: MPlayer

    Quote Originally Posted by clparker
    No Dice, I copied the file, and edited it, and changed it to the driver I need and i wont change to VO=GL2
    I followed the HOWTO and it works great, thanks.

    I changed one step however, I used checkinstall instead of make install to get a Debian package.
    Linux user #249404 - September 1997
    http://nocturn.vsbnet.be - RSS

    Before executing any commands, make sure you kow what they mean, read this first!

  4. #24
    Join Date
    Oct 2004
    Beans
    166

    Re: HOWTO: MPlayer

    Updated to show new versions (and and I prefer "blue" skin) as of 30 jan 2005 GMT +8
    Code:
    sudo mkdir mplyr
    cd mplyr
    # get & install Ubuntu packages
    apt-get install manpages-dev automake autoconf libtool flex bison gcc-doc g++ x-window-system-dev libgtk1.2-dev libpng12-dev -y
    #
    # get mplayer program
    wget http://www1.mplayerhq.hu/MPlayer/releases/MPlayer-1.0pre6a.tar.bz2
    #
    # get codecs
    wget http://ftp5.mplayerhq.hu/mplayer/releases/codecs/essential-20050115.tar.bz2
    #
    # get fonts
    wget http://ftp5.mplayerhq.hu/mplayer/releases/fonts/font-arial-iso-8859-1.tar.bz2 
    #
    # get skin (my default skin is "blue")
    # ***********************************
    # go to http://www.mplayerhq.hu/homepage/design7/dload.html to choose a 
    # different skin. Right Click your favourite *** [HTTP] *** skin, Copy Link Location, 
    # paste it over the following line after wget)
    # ***********************************
    wget http://ftp5.mplayerhq.hu/mplayer/Skin/Blue-1.4.tar.bz2
    #
    tar -xjf MPlayer-1.0pre6a.tar.bz2
    cd MPlayer-1.0pre6a
    ./configure --enable-gui
    make
    make install
    #
    cd ..
    tar -xjf essential-20050115.tar.bz2
    mkdir -p /usr/local/lib/codecs
    cp essential-20050115/* /usr/local/lib/codecs/
    #
    tar -xjf font-arial-iso-8859-1.tar.bz2
    cp font-arial-iso-8859-1/font-arial-14-iso-8859-1/* /usr/local/share/mplayer/font/
    #
    # ***********************************
    # If you decide on a different skin, you'll have to change the name "phony" 
    # (after tar -xfj) to your skin file name 
    # ***********************************
    tar -xjf Blue-1.4.tar.bz2
    mkdir -p /usr/local/share/mplayer/Skin/default
    # ***********************************
    # change the word "blue" with the name of your preferred skin
    # ***********************************
    cp -r Blue/* /usr/local/share/mplayer/Skin/default/
    #
    cp MPlayer-1.0pre6a/etc/* /usr/local/etc/mplayer/
    #
    # get dvd codecs
    wget http://www.las.ic.unicamp.br/pub/debian-marillat/dists/unstable/main/binary-i386/libdvdcss2_1.2.8-0.0_i386.deb
    #
    # install dvd codecs
    dpkg -i libdvdcss2_1.2.8-0.0_i386.deb 
    #
    cd ..
    # start gmplayer program
    gmplayer
    #
    exit
    Last edited by senectus; January 30th, 2005 at 03:21 AM.

  5. #25
    Join Date
    Jan 2005
    Beans
    30

    Re: HOWTO: MPlayer

    wouldnt it be better to firs install the codecs before installing mplayer, that would make mplayer compile with support for the installed codecs .. right??

  6. #26
    Join Date
    Dec 2004
    Location
    Kill Devil Hills, NC
    Beans
    272
    Distro
    Ubuntu 13.10 Saucy Salamander

    Re: HOWTO: MPlayer

    Yes, according to MPlayer's website, you compile and install the codecs first, then the player itself.

  7. #27
    Join Date
    Jan 2005
    Beans
    5

    Thumbs up Re: HOWTO: MPlayer

    for those who hav already installed the w32codecs pkg (ubuntu unofficial guide) can we just compile mplayer using --with-codecsdir=/usr/lib/win32 and forget about install the essencial pkg.. ?

    and.. do we really need to install all of those pkgs?! manpages-dev.. x-window-system-dev... why? R they required to install mplayer?

    tks in advnc..


    east.

  8. #28
    Join Date
    Jan 2005
    Beans
    30

    Re: HOWTO: MPlayer

    Quote Originally Posted by Eastlake
    for those who hav already installed the w32codecs pkg (ubuntu unofficial guide) can we just compile mplayer using --with-codecsdir=/usr/lib/win32 and forget about install the essencial pkg.. ?

    and.. do we really need to install all of those pkgs?! manpages-dev.. x-window-system-dev... why? R they required to install mplayer?

    tks in advnc..


    east.
    i was wondering that as well.. pesonally i didnt install x-window-dev... and no problems that i can tell with mplayer..

  9. #29
    Join Date
    Feb 2005
    Location
    Palermo, Italy
    Beans
    28

    Re: HOWTO: MPlayer

    Does this script works for PPC-Ubuntu users too?
    Testing UBUNTU on a 466 SE iBook

  10. #30
    Join Date
    Feb 2005
    Location
    Frankfurt am Main
    Beans
    1

    Re: HOWTO: MPlayer

    That's really cool man! Thank you so much for the script....but i don't know why, but it doesn't run on my ibook.

    I have tried it on my ibook, and sure it doesn't work. So i forward you the question of Caesar:

    Does this script works for PPC-Ubuntu users too?

Page 3 of 6 FirstFirst 12345 ... LastLast

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
  •