Page 10 of 30 FirstFirst ... 8910111220 ... LastLast
Results 91 to 100 of 297

Thread: HowTo: Install the very latest MPlayer under Jaunty Jackalope

  1. #91
    Join Date
    Dec 2006
    Beans
    7,349

    Re: HowTo: Install the very latest MPlayer under Jaunty Jackalope

    Hi ajunsum,

    Quote Originally Posted by ajunsum View Post
    thanks! worked 100%!
    Excellent news . I hope that the majority of people sail through this guide with no problem, most only post when there is a problem I suspect. Anyway all the best with your new copy of MPlayer and MEncoder!

    Andrew

  2. #92
    Join Date
    Nov 2006
    Beans
    161

    Re: HowTo: Install the very latest MPlayer under Jaunty Jackalope

    Your guide is perfect! Thank you for your work!
    The old bug is fixed

    You know if last svn mplayer, support multithread decoding? I've found a guide for get ffmpeg-mt libraries, but I can't understand the difference with main mplayer/ffmpeg.

  3. #93
    Join Date
    Dec 2006
    Beans
    7,349

    Re: HowTo: Install the very latest MPlayer under Jaunty Jackalope

    Hi psychok9,

    Quote Originally Posted by psychok9 View Post
    Your guide is perfect! Thank you for your work!
    Well, it is not perfect but I think it is definitely ready for the release of Jaunty Jackalope. It has been good to have a little preparation time before everybody installs the release version and then thinks 'Hmmm.... now to install MPlayer.....'

    You know if last svn mplayer, support multithread decoding? I've found a guide for get ffmpeg-mt libraries, but I can't understand the difference with main mplayer/ffmpeg.
    I believe that the stock version (=this guide) supports limited multiple threads within a single process for MPEG-1/2 and H.264 only (-lavdopts threads=n where 'n' can be 1-8). I gather the FFmpeg-MT project greatly extends this but I have not used this and have no great knowledge of the project except that it exists :-). Just be aware that if you use FFmpeg-MT you will be even closer to the bleeding edge than this guide takes you.

    I believe also that decoding by hardware cards is what you should really be looking at and vdpau is the flavour of the month. In a sure demonstration that I am losing touch with modern developments I don't have such a card and have not experimented with this. Oh well.....

    All the best,

    Andrew

  4. #94
    Join Date
    Sep 2007
    Location
    /dev/null/
    Beans
    1,589

    Re: HowTo: Install the very latest MPlayer under Jaunty Jackalope

    So, your using the SVN mplayer and the static links to the SVN FFMPEG libraries that mplayer pulls in. But you lack WMA Pro decoding. Here's the solution

    Code:
    cd ~/src/mplayer
    svn checkout svn://svn.ffmpeg.org/soc/wmapro wmapro
    cp wmapro/wma* libavcodec
    patch -p0 <wmapro/audioframesize.patch
    patch -p0 <wmapro/mplayer.patch
    patch -p0 <wmapro/wmapro_ffmpeg.patch
    This summer of code google project works well. Havent found any bugs so far.
    He that will not reason is a bigot; he that cannot reason is a fool; he that dares not reason is a slave.

  5. #95
    Join Date
    Dec 2006
    Beans
    7,349

    Re: HowTo: Install the very latest MPlayer under Jaunty Jackalope

    Hi Nullack,

    Quote Originally Posted by Nullack View Post
    So, your using the SVN mplayer and the static links to the SVN FFMPEG libraries that mplayer pulls in. But you lack WMA Pro decoding. Here's the solution [...]
    Great news Nullack. I see that work has been going on this one for many months now and a quick peek at FFmpeg-soc shows that work is still continuing:

    http://lists.mplayerhq.hu/pipermail/...il/thread.html

    I can see that you have a taste for the bleeding edge .

    All the best,

    Andrew

  6. #96
    Join Date
    Sep 2007
    Location
    /dev/null/
    Beans
    1,589

    Re: HowTo: Install the very latest MPlayer under Jaunty Jackalope

    Yes my friend it is bleeding edge but its proving to be quite robust actually.

    If we look at the recent commits into SVN, we find that its doxygen related fluff and some bike shedding relating to putting c functions into different areas. This is the same sort of fluff that goes on in many commits for the main ffmpeg branch.
    He that will not reason is a bigot; he that cannot reason is a fool; he that dares not reason is a slave.

  7. #97
    Join Date
    Aug 2005
    Location
    Norfolk, UK
    Beans
    389
    Distro
    Ubuntu 14.10 Utopic Unicorn

    Re: HowTo: Install the very latest MPlayer under Jaunty Jackalope

    this worked for me in 8.10 but does not install in Jaunty 9.04

    Code:
    carl@carl-laptop:~$ sudo checkinstall -D --install=yes --fstrans=no --pakdir "$HOME/Desktop" \
    > --pkgname mplayer --backup=no --deldoc=yes --deldesc=yes --delspec=yes --default \
    > --pkgversion "3:1.0~svn-`grep "#define VERSION" version.h | cut -d"-" -f2`"
    grep: version.h: No such file or directory
    
    checkinstall 1.6.1, Copyright 2002 Felipe Eduardo Sanchez Diaz Duran
               This software is released under the GNU GPL.
    
    
    The package documentation directory ./doc-pak does not exist. 
    Should I create a default set of package docs?  [y]: y
    
    Preparing package documentation...OK
    
    *** No known documentation files were found. The new package 
    *** won't include a documentation directory.
    
    *****************************************
    **** Debian package creation selected ***
    *****************************************
    
    *** Warning: The package version "3:1.0~svn-" is not a
    *** Warning: debian policy compliant one. Please specify an alternate one
    
    This package will be built according to these values: 
    
    0 -  Maintainer: [ root@carl-laptop ]
    1 -  Summary: [ Package created with checkinstall 1.6.1 ]
    2 -  Name:    [ mplayer ]
    3 -  Version: [ 0 ]
    4 -  Release: [ 1 ]
    5 -  License: [ GPL ]
    6 -  Group:   [ checkinstall ]
    7 -  Architecture: [ i386 ]
    8 -  Source location: [ carl ]
    9 -  Alternate source location: [  ]
    10 - Requires: [  ]
    11 - Provides: [ mplayer ]
    
    Enter a number to change any of them or press ENTER to continue: 
    
    Installing with make...Installing with install...
    
    ========================= Installation results ===========================
    make: *** No rule to make target `install'.  Stop.
    
    ****  Installation failed. Aborting package creation.
    
    Cleaning up...OK
    
    Bye.
    can anyone help? At the moment i have nothing that can play movie files

  8. #98
    Join Date
    Dec 2006
    Beans
    7,349

    Re: HowTo: Install the very latest MPlayer under Jaunty Jackalope

    Hi c-m,

    For some reason the file version.h, which is generated during make by version.sh, has not been detected:

    Quote Originally Posted by c-m View Post
    this worked for me in 8.10 but does not install in Jaunty 9.04
    Code:
    carl@carl-laptop:~$ sudo checkinstall -D --install=yes --fstrans=no --pakdir "$HOME/Desktop" \
    > --pkgname mplayer --backup=no --deldoc=yes --deldesc=yes --delspec=yes --default \
    > --pkgversion "3:1.0~svn-`grep "#define VERSION" version.h | cut -d"-" -f2`"
    grep: version.h: No such file or directory
    There could be a few reasons that this file is not generated but I have a strong suspicion that you may not have been in the right location when you issued the command. If you have followed the guide exactly your source files should be in $HOME/mplayer while your prompt:

    Code:
    carl@carl-laptop:~$
    looks like $HOME. This is more than likely the problem. Have a look at this section of the guide:
    Code:
    $ sudo apt-get install subversion
    $ cd $HOME
    $ svn checkout svn://svn.mplayerhq.hu/mplayer/trunk mplayer
    $ cd $HOME/mplayer
    $ ./configure --codecsdir=/usr/lib/codecs --confdir=/etc/mplayer
    $ make
    $ sudo checkinstall -D --install=yes --fstrans=no --pakdir "$HOME/Desktop" \
    --pkgname mplayer --backup=no --deldoc=yes --deldesc=yes --delspec=yes --default \
    --pkgversion "3:1.0~svn-`grep "#define VERSION" version.h | cut -d"-" -f2`"
    $ make distclean
    and you can see where the navigation lies (in red). If this does not resolve the problem could you run a simple search:

    Code:
    find $HOME -iname 'version.h'
    and this might help.

    Andrew

  9. #99
    Join Date
    Sep 2007
    Location
    /dev/null/
    Beans
    1,589

    Re: HowTo: Install the very latest MPlayer under Jaunty Jackalope

    SVN is borked due to a bad ffmpeg mmx commit. Hopefully it will be fixed soon.
    He that will not reason is a bigot; he that cannot reason is a fool; he that dares not reason is a slave.

  10. #100
    Join Date
    Dec 2006
    Beans
    7,349

    Re: HowTo: Install the very latest MPlayer under Jaunty Jackalope

    Revision: 29175 still broken .......

    Andrew

    Edit: r29176 is right to go .
    Last edited by andrew.46; April 13th, 2009 at 11:33 AM.

Page 10 of 30 FirstFirst ... 8910111220 ... LastLast

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
  •