FFmpeg is a tool for converting video and audio files. It is being replaced in many applications with the better maintained avconv.

Installing FFmpeg on Ubuntu 12.04

On Ubuntu 12.04, you can install the ffmpeg command by SSH'ing into your server as root and running the following command:

sudo apt-get install ffmpeg

Installing FFmpeg on Ubuntu 14.04

On Ubuntu 14.04, ffmpeg has been removed and replaced with avconv.

You can install avconv by by SSH'ing into your server as root and running the command:

sudo apt-get install libav-tools

However, avconv has different syntax than ffmpeg so your PHP scripts will need to know how to use avconv, not ffmpeg.

If you need the original ffmpeg command, you can install an unofficial ffmpeg package for Ubuntu 14.04 using the following commands as root.

Be sure to make backups of your server before adding unofficial packages to your server.

sudo apt-add-repository ppa:jon-severinsson/ffmpeg
sudo apt-get update
sudo apt-get install ffmpeg

Note that this PPA doesn't provide gstreamer-ffmpeg integration.

Please be aware that SellCloud won't automatically update third-party packages like the ones installed from PPAs. If you install from this PPA, you'll need to perform your own ffmpeg updates using the following command as root:

sudo apt-get dist-upgrade
Alert: For Control Panel Help & Tutorials, click here: Panel Tutorials
Was this answer helpful? 0 Users Found This Useful (0 Votes)

Powered by WHMCompleteSolution