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 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:
|
<<: mysql group_concat method example to write group fields into one row
>>: Let’s talk in detail about how JavaScript affects DOM tree construction
Preface I feel like my mind is empty lately, as I...
Table of contents 1. router-view 2. router-link 3...
In daily development, database addition, deletion...
Assume that a node in the three-node MGR is abnor...
Copy code The code is as follows: jQuery.cookie =...
Uninstall the system-provided MySQL 1. Check whet...
If you’re looking for inspiration for columnar web...
The Riddle vulnerability targeting MySQL versions...
The definition and inheritance of classes in JS a...
Preface The electricity in my residence has been ...
Mini Program Custom Scroll-View Scroll Bar Withou...
Table of contents Preface 1. GMT What is GMT Hist...
Preface: It’s the end of the year, isn’t it time ...
Solution to mysql not closing: Right-click on the...
Table of contents Import on demand: Global Import...