Results 1 to 5 of 5

Thread: ffmpeg with 12.04?

  1. #1
    Join Date
    May 2008
    Location
    USA New York
    Beans
    1,451
    Distro
    Ubuntu 20.04 Focal Fossa

    Exclamation ffmpeg with 12.04?

    Installed ffmpeg in 64 bit 12.04 and got this message in terminal:
    *** THIS PROGRAM IS DEPRECATED ***
    This program is only provided for compatibility and will be removed in a future release. Please use avconv instead.
    What is best to do? I've only used ffmpeg in the past and am familiar with it.

    Is avconv as easy to use as ffmpeg?
    Should I remove ffmpeg and go with avconv?
    Do you use similar code as ffmpeg, or is avconv code completely different?
    Ubuntu 20.04.06 LTS 64bit Ext4 on a Dell Studio XPS Desktop Intel® Core™ i7-860 2.8GHz, 8GB DDR3 ram

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

    Re: ffmpeg with 12.04?

    Quote Originally Posted by cybrsaylr View Post
    Installed ffmpeg in 64 bit 12.04 and got this message in terminal:
    Code:
     *** THIS PROGRAM IS DEPRECATED ***
    This program is only provided for compatibility and will be removed in a future release. Please use avconv instead.
    This is a confusing statement since it does not make a distinction between ffmpeg (the program: offered by both FFmpeg and libav for a some time) and FFmpeg (the project), and therefore many users imply that the statement means the FFmpeg (the project) is going away. FFmpeg is very active. For a better summary see: Who can tell me the difference and relation between ffmpeg, libav, and avconv.

    Quote Originally Posted by cybrsaylr View Post
    What is best to do? I've only used ffmpeg in the past and am familiar with it.
    The good thing is that you have a choice. I didn't want the whims of a package maintainer to choose for me, and prefer FFmpeg, so I compile it myself: Compile FFmpeg on Ubuntu. Static FFmpeg builds are also available if you don't want to compile or deal with the package management system.

    Quote Originally Posted by cybrsaylr View Post
    Do you use similar code as ffmpeg, or is avconv code completely different?
    For the general user the syntax should be similar between ffmpeg (from FFmpeg) and avconv. I'm referring to current upstream. It isn't guaranteed to stay that way however.
    Last edited by FakeOutdoorsman; October 15th, 2012 at 12:22 AM.

  3. #3
    Join Date
    May 2008
    Location
    USA New York
    Beans
    1,451
    Distro
    Ubuntu 20.04 Focal Fossa

    Re: ffmpeg with 12.04?

    Thanks FakeOutdoorsman, you and Ron helped me out with this a couple years ago in this thread.
    http://ubuntuforums.org/showthread.p...eo+mp4+youtube

    You both basically helped me use command line with ffmpeg.

    Glad to hear ffmpeg will be around because that message terminal gave out was a bit confusing.

    Since I installed ffmpeg in 12.04 should I remove it and replace it with the latest version for 12.04?
    Then I believe the libraries have to be added to make it work properly.

    Do you happen to have the proper code needed to do this?
    Ubuntu 20.04.06 LTS 64bit Ext4 on a Dell Studio XPS Desktop Intel® Core™ i7-860 2.8GHz, 8GB DDR3 ram

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

    Re: ffmpeg with 12.04?

    Quote Originally Posted by cybrsaylr View Post
    Thanks FakeOutdoorsman, you and Ron helped me out with this a couple years ago in this thread.
    http://ubuntuforums.org/showthread.p...eo+mp4+youtube
    I remember that thread now. Those pesky spaces as the first character will confuse just about anyone.

    Quote Originally Posted by cybrsaylr View Post
    Since I installed ffmpeg in 12.04 should I remove it and replace it with the latest version for 12.04?
    Are you trying to decide between using "ffmpeg"/avconv from the repository or using ffmpeg from FFmpeg? Only you can decide that. There are pros and cons to both the repository "ffmpeg"/avconv and using real ffmpeg:

    Repository "ffmpeg"/avconv pros:
    • It is easy to install
    • It will work with other repository programs that depend on ffmpeg


    Cons:
    • It's not FFmpeg (I'm biased)
    • It is old (in terms of FFmpeg development)
    • I do not use avconv so I don't provide help for it (if that's worth anything)
    • It seems buggier than real ffmpeg


    FFmpeg pros (assuming you're compiling):
    • Compiling lets you decide everything: what to support, etc
    • Will always be newer than what the repo supplies and therefore will have more bugfixes and features
    • Geek points for compiling


    Cons:
    • Potential syntax changes
    • Takes time to compile
    • Will not always work with packages that depend on "ffmpeg"/avconv


    If you plan on using ffmpeg often then try compiling it. If you are simply encoding on rare occasions you may want to use whatever the repository offers for convenience.

    That being said you can still use both at the same time. You can use the repo version to keep other packages happy, and then use the static build when you want to use ffmpeg directly.

  5. #5
    Join Date
    May 2008
    Location
    USA New York
    Beans
    1,451
    Distro
    Ubuntu 20.04 Focal Fossa

    Re: ffmpeg with 12.04?

    Quote Originally Posted by FakeOutdoorsman View Post
    If you are simply encoding on rare occasions you may want to use whatever the repository offers for convenience.
    I just used ffmpeg occasionally to upload clips to Youtube so the Repository "ffmpeg" version should suffice.

    To avoid those pesky spaces errors, I saved the required codes needed so all that was needed we to replace the new image and mp3 titles. Then I would simply 'copy & paste' the new adjusted code into terminal and it worked like a charm....lol

    This would avoid having to manually type everything into terminal and have it fail due to a 1 space error or typing error....lol
    Last edited by cybrsaylr; October 15th, 2012 at 08:09 PM.
    Ubuntu 20.04.06 LTS 64bit Ext4 on a Dell Studio XPS Desktop Intel® Core™ i7-860 2.8GHz, 8GB DDR3 ram

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
  •