Page 104 of 241 FirstFirst ... 45494102103104105106114154204 ... LastLast
Results 1,031 to 1,040 of 2402

Thread: HOWTO: Install and use the latest FFmpeg and x264

  1. #1031
    Join Date
    Mar 2008
    Location
    Sri lanka
    Beans
    764
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: HOWTO: Install and use the latest FFmpeg and x264

    Isn't there a way around building from source? Other instructions I have read say that ffmpeg (with all the proprietary codes) should be available in the universe (or multiverse) repository. It could have been mentioned in this thread but it is a hundred pages long...

    NEVERMIND.. I found the answer in post #1
    Last edited by mahela007; May 31st, 2010 at 02:50 PM.

  2. #1032
    Join Date
    Jul 2007
    Location
    Newcastle, Australia
    Beans
    20
    Distro
    Ubuntu

    Re: HOWTO: Install and use the latest FFmpeg and x264

    Should you add the (optional) step -
    sudo apt-get install libgpac-dev
    before running ./configure ?

    Only after I did this, configure reported -
    MP4 output: Yes
    Last edited by Tybion; June 1st, 2010 at 09:55 AM. Reason: trivial

  3. #1033
    Join Date
    Sep 2006
    Beans
    3,713

    Re: HOWTO: Install and use the latest FFmpeg and x264

    Quote Originally Posted by Tybion View Post
    Should you add the (optional) step -
    sudo apt-get install libgpac-dev
    before running ./configure ?

    Only after I did this, configure reported -
    MP4 output: Yes
    You only need libgpac-dev if you want to directly use x264 to output to .mp4.

  4. #1034
    Join Date
    Dec 2006
    Beans
    7,349

    Re: HOWTO: Install and use the latest FFmpeg and x264

    Looks like the FFmpeg developers are really getting close to the cutting edge of x264 now:
    Code:
    enabled libx264    && require  libx264 x264.h x264_encoder_encode -lx264 -lm &&
                          { check_cpp_condition x264.h "X264_BUILD >= 98" ||
                            die "ERROR: libx264 version must be >= 0.98."; }
    Andrew
    You think that's air you're breathing now?

  5. #1035
    Join Date
    Dec 2005
    Location
    St. Petersburg, FL
    Beans
    570
    Distro
    Ubuntu Budgie

    Re: HOWTO: Install and use the latest FFmpeg and x264

    My guess is because it's probably a major enough bugfix/change to warrant it.

    http://git.ffmpeg.org/?p=ffmpeg;a=co...9f64b953a701e8

    Properly initialize x264_picture_t in libx264.

    Bump libx264 version requirement accordingly.
    I'm simply assuming that x264_picture_t is a critical function.

  6. #1036
    Join Date
    Nov 2008
    Beans
    19

    Re: HOWTO: Install and use the latest FFmpeg and x264

    I'm having problem regarding x264 with ffms support.
    Can someone help me out how to install ffmpeg and x264 with ffms support?

  7. #1037
    Join Date
    Sep 2006
    Beans
    3,713

    Re: HOWTO: Install and use the latest FFmpeg and x264

    Quote Originally Posted by @H.264 View Post
    I'm having problem regarding x264 with ffms support.
    Can someone help me out how to install ffmpeg and x264 with ffms support?
    What have you tried so far and what kind of problems are you experiencing? What version of Ubuntu are you using?

  8. #1038
    Join Date
    Dec 2005
    Location
    St. Petersburg, FL
    Beans
    570
    Distro
    Ubuntu Budgie

    Re: HOWTO: Install and use the latest FFmpeg and x264

    Quote Originally Posted by @H.264 View Post
    I'm having problem regarding x264 with ffms support.
    Can someone help me out how to install ffmpeg and x264 with ffms support?
    http://ubuntuforums.org/showpost.php...&postcount=900

    The only thing that needs changing is to take out the --disable-filters option in the first FFmpeg compile. And of course adding any additional decoding/encoding libraries you might want to the relevant FFmpeg (only decoders for the first one, decoders and encoders for the second).

    Works on Karmic and Lucid, or should (I migrate up to the next version immediately, so I know it works on Lucid; it worked on Karmic when I wrote those steps back in March).
    Last edited by qyot27; June 4th, 2010 at 06:55 PM.

  9. #1039
    Join Date
    Mar 2007
    Beans
    Hidden!

    Re: HOWTO: Install and use the latest FFmpeg and x264

    Now it is possible to produce a WebM-compliant file with latest ffmpeg SVN if you build with libvpx and libvorbis. It can be as simple as:
    Code:
    ffmpeg -i input output.webm
    Plays nicely in Firefox's WebM build.
    The only problem is that I can't find how to disable frame dropping of libvpx. Libvpx drops frames by default so your video might be choppy in some high motion areas.
    Last edited by verb3k; June 5th, 2010 at 01:11 AM.
    Freedom is neither exclusive nor unlimited.

  10. #1040
    Join Date
    Sep 2006
    Beans
    3,713

    Re: HOWTO: Install and use the latest FFmpeg and x264

    Quote Originally Posted by verb3k View Post
    Now it is possible to produce a WebM-compliant file with latest ffmpeg SVN if you build with libvpx and libvorbis. It can be as simple as:
    Code:
    ffmpeg -i input output.webm
    Plays nicely in Firefox's WebM build.
    The only problem is that I can't find how to disable frame dropping of libvpx. Libvpx drops frames by default so your video might be choppy in some high motion areas.
    I plan on adding a libvpx section to the guide soon. I was waiting for the muxer to be finished. Yeah, that's my excuse:
    Code:
    $ svn log -l 24 svn://svn.mplayerhq.hu/ffmpeg/trunk
    ------------------------------------------------------------------------
    r23474 | conrad | 2010-06-04 14:40:54 -0800 (Fri, 04 Jun 2010) | 3 lines
    
    Add WebM muxer
    
    Patch by James Zern <jzern at google>
    ------------------------------------------------------------------------
    As requested through a PM, I will also add qt-faststart installation instructions once I can figure out an elegant package management solution. It's tasks like this that make me especially admire the ports-like capable systems such as Arch and Slackware (amirite, andrew.46? da.). This little FFmpeg tool moves the moov atom to the beginning of a file so it can start playing before it is completely downloaded. Useful for web videos. Usage: qt-faststart input.foo output.foo.

    Update: I added a qt-faststart section to the Lucid guide. It's a somewhat messy way of doing it, but I can't make myself use checkinstall more than I have to. Anyone have a better method that works with Ubuntu package management, or is this Good Enough?
    Last edited by FakeOutdoorsman; June 5th, 2010 at 01:13 AM.

Page 104 of 241 FirstFirst ... 45494102103104105106114154204 ... 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
  •