Results 1 to 6 of 6

Thread: feature request: ffmpeg mainline

  1. #1
    Join Date
    Apr 2009
    Beans
    12

    feature request: ffmpeg mainline

    I'm aware that ubuntu comes packaged with "libav" package providing ffmpeg (the executable). Would it be possible to also add ffmpeg "mainline" as a package (also providing ffmpeg)? Pretty please? Thanks
    -r

  2. #2
    Join Date
    Oct 2010
    Location
    London
    Beans
    482
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: feature request: ffmpeg mainline


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

    Re: feature request: ffmpeg mainline

    Quote Originally Posted by rogerdpack View Post
    I'm aware that ubuntu comes packaged with "libav" package providing ffmpeg (the executable). Would it be possible to also add ffmpeg "mainline" as a package (also providing ffmpeg)? Pretty please? Thanks
    -r
    I assume you mean as a package in an official Ubuntu repository. I would like to see this happen. However, I doubt the libav package maintainer in Ubuntu, as a member of libav, would allow this to happen. He was the one responsible for the switch from FFmpeg to libav in the first place.

    Disregarding any libav bias by the Ubuntu overlords, for this to happen there would at least need to be a volunteer to maintain the package and a way for the package to work without conflict with libav.

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

    Re: feature request: ffmpeg mainline

    Or build your own:

    Compile FFmpeg on Ubuntu
    https://ffmpeg.org/trac/ffmpeg/wiki/...mpilationGuide

    But I agree, a repository version would be nice...
    You think that's air you're breathing now?

  5. #5
    Join Date
    Apr 2009
    Beans
    12

    Re: feature request: ffmpeg mainline

    Yeah something like how mplayer and mplayer 2 do it:

    $ mplayer
    The program 'mplayer' can be found in the following packages:
    * mplayer
    * mplayer2
    Try: sudo apt-get install <selected package>


    What does it mean for 2 packages to "not conflict" I assume you just mean file naming wise?

    $ sudo apt-get install mplayer mplayer2 -y
    The following packages have unmet dependencies:
    mplayer : Conflicts: mplayer2 but 2.0-426-gc32b3ed-2 is to be installed
    mplayer2 : Conflicts: mplayer

    Maybe conflicts are alright then? Just wondering.
    -roger-
    Last edited by rogerdpack; November 22nd, 2012 at 01:14 AM. Reason: note conflict?

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

    Re: feature request: ffmpeg mainline

    I implied two things:

    • FFmpeg and libav share many of the same file names (assuming you want both installed at once)
    • The issue of getting dependencies to work with both packages


    I don't think the first point would be much trouble, but I am not a maintainer. Perhaps the following ./configure options:
    Code:
    --prefix=/usr \
    --incdir=/usr/include/libav \
    --libdir=/usr/lib/libav \
    --shlibdir=/usr/lib/libav
    This would put the libav's libavcodec files into "/usr/include/libav/libavcodec" while ffmpeg's, not having the additional configure options, would go to default "/usr/include/libavcodec/". I didn't look into how mplayer/mplayer2 was handled.
    Last edited by FakeOutdoorsman; November 22nd, 2012 at 03:11 AM.

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
  •