Centos7 installation of FFmpeg audio/video tool simple document

Centos7 installation of FFmpeg audio/video tool simple document

ffmpeg is a very powerful audio and video processing tool. Its official website is: http://ffmpeg.org/. The official website introduces ffmpeg as: a complete, cross-platform solution that can record, convert and transmit audio and video. ffmpeg can play videos, and also provides command line tools to process videos. In addition, there is a powerful video processing library for development. The following is a simple command line to transcode videos using Linux as an example to introduce the installation process of ffmpeg. It is the simplest entry content in ffmpeg.

Mac Installation Steps

brew tap homebrew-ffmpeg/ffmpeg
brew install homebrew-ffmpeg/ffmpeg/ffmpeg --with-chromaprint \
  --with-fdk-aac \
  --with-game-music-emu \
  --with-libbluray \
  --with-libbs2b \
  --with-libcaca \
  --with-libgsm \
  --with-libmodplug \
  --with-librsvg \
  --with-libsoxr \
  --with-libssh \
  --with-libvidstab \
  --with-libvmaf \
  --with-libxml2 \
  --with-opencore-amr \
  --with-openh264 \
  --with-openjpeg \
  --with-openssl \
  --with-rtmpdump \
  --with-rubberband \
  --with-speex \
  --with-srt \
  --with-tesseract \
  --with-two-lame \
  --with-wavpack \
  --with-webp \
  --with-xvid \
  --with-zeromq \
  --with-zimg

Ubuntu installation steps

apt update && \
apt-get install -y software-properties-common && \
apt update && \
add-apt-repository -y ppa:jonathonf/ffmpeg-4 && \ 
apt install -y ffmpeg

Centos7 installation steps

yum install epel-release -y && \
yum update -y && \
rpm --import http://li.nux.ro/download/nux/RPM-GPG-KEY-nux.ro && \
rpm -Uvh http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-5.el7.nux.noarch.rpm && \
yum install ffmpeg ffmpeg-devel -y

Reminder: This method of installing FFmpeg on CentOS has a lower version

FFmpeg related commands

View current version

ffmpeg -version

Related Documents

ffmpeg official website
https://github.com/homebrew-ffmpeg/homebrew-ffmpeg#installation-and-usage

This is the end of this article about the simple document of installing FFmpeg audio/video tool on Centos7. For more relevant content about installing FFmpeg on Centos7, please search 123WORDPRESS.COM’s previous articles or the related articles below. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Analysis of the installation and use process of ffmpeg under Windows 10
  • Complete steps to install FFmpeg in CentOS server
  • Graphic tutorial on installing FFmpeg on MAC
  • Detailed steps to install ffmpeg extension in PHP 5.3 under Centos 6.5

<<:  mysql group_concat method example to write group fields into one row

>>:  Let’s talk in detail about how JavaScript affects DOM tree construction

Recommend

Detailed explanation of MySQL injection without knowing the column name

Preface I feel like my mind is empty lately, as I...

A super detailed Vue-Router step-by-step tutorial

Table of contents 1. router-view 2. router-link 3...

Differentiate between null value and empty character ('') in MySQL

In daily development, database addition, deletion...

MySQL 8.0.18 uses clone plugin to rebuild MGR implementation

Assume that a node in the three-node MGR is abnor...

jQuery manipulates cookies

Copy code The code is as follows: jQuery.cookie =...

Linux CentOS 6.5 Uninstall, tar and install MySQL tutorial

Uninstall the system-provided MySQL 1. Check whet...

32 Typical Column/Grid-Based Websites

If you’re looking for inspiration for columnar web...

MySQL exposes Riddle vulnerability that can cause username and password leakage

The Riddle vulnerability targeting MySQL versions...

Detailed explanation of Js class construction and inheritance cases

The definition and inheritance of classes in JS a...

How to implement Linux automatic shutdown when the battery is low

Preface The electricity in my residence has been ...

WeChat applet custom scroll-view example code

Mini Program Custom Scroll-View Scroll Bar Withou...

JS thoroughly understands GMT and UTC time zones

Table of contents Preface 1. GMT What is GMT Hist...

It's the end of the year, is your MySQL password safe?

Preface: It’s the end of the year, isn’t it time ...

How to solve the problem that mysql cannot be closed

Solution to mysql not closing: Right-click on the...

How to implement on-demand import and global import in element-plus

Table of contents Import on demand: Global Import...