CentOS 8にffmpegをインストールしてみました。
CentOS 7と同様に今回もRPMFusion repositoryを利用します。
Install FFmpeg and FFmpeg-php on CentOS 7 with RPMFusion repo
環境
・CentOS Linux release 8.1.1911 (Core)
・kernel 4.18.0-147.5.1.el8_1.x86_64
- epel repositoryのインストール
- PowerTools, epel repositoryの有効化
- RPM Fusion free Repositoryのインストール
- FFmpegのインストール
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
[root@centos8 ~]# dnf -y install epel-release Last metadata expiration check: 0:02:32 ago on Mon Feb 17 14:31:42 2020. Dependencies resolved. ================================================================================================ Package Architecture Version Repository Size ================================================================================================ Installing: epel-release noarch 8-5.el8 extras 22 k Transaction Summary ================================================================================================ Install 1 Package Total download size: 22 k Installed size: 30 k Downloading Packages: epel-release-8-5.el8.noarch.rpm 936 kB/s | 22 kB 00:00 ------------------------------------------------------------------------------------------------ Total 14 kB/s | 22 kB 00:01 Running transaction check Transaction check succeeded. Running transaction test Transaction test succeeded. Running transaction Preparing : 1/1 Installing : epel-release-8-5.el8.noarch 1/1 Running scriptlet: epel-release-8-5.el8.noarch 1/1 Verifying : epel-release-8-5.el8.noarch 1/1 Installed: epel-release-8-5.el8.noarch Complete! |
PowerToolsを有効にしないと依存関係でエラーになります。
https://serverfault.com/questions/997896/how-to-enable-powertools-repository-in-centos-8
1 2 3 4 5 6 |
[root@centos8 ~]# dnf -y install ffmpeg Last metadata expiration check: 0:00:27 ago on Mon Feb 17 14:40:18 2020. Error: Problem: conflicting requests - nothing provides libSDL2-2.0.so.0()(64bit) needed by ffmpeg-4.2.2-1.el8.x86_64 (try to add '--skip-broken' to skip uninstallable packages or '--nobest' to use not only best candidate packages) |
1 2 |
[root@centos8 ~]# dnf config-manager --set-enabled PowerTools [root@centos8 ~]# dnf config-manager --set-enabled epel-playground |
RPM Fusion
https://rpmfusion.org/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
[root@centos8 ~]# rpm -ivh https://download1.rpmfusion.org/free/el/rpmfusion-free-release-8.noarch.rpm Retrieving https://download1.rpmfusion.org/free/el/rpmfusion-free-release-8.noarch.rpm warning: /var/tmp/rpm-tmp.PvaFWU: Header V3 RSA/SHA1 Signature, key ID 158b3811: NOKEY Verifying... ################################# [100%] Preparing... ################################# [100%] Updating / installing... 1:rpmfusion-free-release-8-0.1 ################################# [100%] [root@centos8 ~]# cat /etc/yum.repos.d/rpmfusion-free-updates.repo [rpmfusion-free-updates] name=RPM Fusion for EL 8 - Free - Updates #baseurl=http://download1.rpmfusion.org/free/el/updates/8/$basearch/ mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=free-el-updates-released-8&arch=$basearch enabled=1 gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-el-8 [rpmfusion-free-updates-debuginfo] name=RPM Fusion for EL 8 - Free - Updates Debug #baseurl=http://download1.rpmfusion.org/free/el/updates/8/$basearch/debug/ mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=free-el-updates-released-debug-8&arch=$basearch enabled=0 type=rpm-md gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-el-8 [rpmfusion-free-updates-source] name=RPM Fusion for EL 8 - Free - Updates Source #baseurl=http://download1.rpmfusion.org/free/el/updates/8/SRPMS/ mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=free-el-updates-released-source-8&arch=$basearch enabled=0 type=rpm-md gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-el-8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 |
[root@centos8 ~]# dnf install ffmpeg RPM Fusion for EL 8 - Free - Updates 5.6 kB/s | 229 kB 00:40 Dependencies resolved. ================================================================================================ Package Arch Version Repository Size ================================================================================================ Installing: ffmpeg x86_64 4.2.2-1.el8 rpmfusion-free-updates 1.4 M Installing dependencies: alsa-lib x86_64 1.1.9-4.el8 AppStream 429 k flac-libs x86_64 1.3.2-9.el8 AppStream 217 k gsm x86_64 1.0.17-5.el8 AppStream 37 k lame-libs x86_64 3.100-6.el8 AppStream 361 k libXtst x86_64 1.2.3-7.el8 AppStream 22 k libasyncns x86_64 0.8-14.el8 AppStream 32 k libbluray x86_64 1.0.2-3.el8 AppStream 162 k libcdio x86_64 2.0.0-3.el8 AppStream 256 k libcdio-paranoia x86_64 10.2+0.94+2-3.el8 AppStream 92 k libogg x86_64 2:1.3.2-10.el8 AppStream 31 k libsamplerate x86_64 0.1.9-1.el8 AppStream 1.0 M libsndfile x86_64 1.0.28-8.el8 AppStream 193 k libtheora x86_64 1:1.1.1-21.el8 AppStream 184 k libv4l x86_64 1.14.2-3.el8 AppStream 194 k libva x86_64 2.4.1-1.el8 AppStream 93 k libvdpau x86_64 1.1.1-7.el8 AppStream 40 k libvorbis x86_64 1:1.3.6-2.el8 AppStream 196 k libvpx x86_64 1.7.0-6.el8 AppStream 852 k libwayland-client x86_64 1.15.0-1.el8 AppStream 39 k mesa-filesystem x86_64 19.1.4-3.el8_1 AppStream 32 k ocl-icd x86_64 2.2.12-1.el8 AppStream 51 k openal-soft x86_64 1.18.2-7.el8 AppStream 394 k opus x86_64 1.3-0.4.beta.el8 AppStream 204 k pulseaudio-libs x86_64 11.1-23.el8 AppStream 677 k speex x86_64 1.2.0-1.el8 AppStream 71 k libatomic x86_64 8.3.1-4.5.el8 BaseOS 22 k SDL2 x86_64 2.0.8-7.el8 PowerTools 429 k jack-audio-connection-kit x86_64 1.9.12-8.epel8.playground epel-playground 519 k libaom x86_64 1.0.0-8.20190810git9666276.epel8.playground epel-playground 1.6 M libass x86_64 0.14.0-4.epel8.playground epel-playground 110 k libdav1d x86_64 0.5.2-1.epel8.playground epel-playground 347 k libmfx x86_64 1.25-4.epel8.playground epel-playground 36 k libvmaf x86_64 1.3.15-1.epel8.playground epel-playground 347 k soxr x86_64 0.1.3-4.epel8.playground epel-playground 97 k vid.stab x86_64 1.1.0-12.20190213gitaeabc8d.epel8.playground epel-playground 47 k zimg x86_64 2.9.2-1.epel8.playground epel-playground 268 k pugixml x86_64 1.9-1.el8 epel 97 k zvbi x86_64 0.2.35-9.el8 epel 424 k ffmpeg-libs x86_64 4.2.2-1.el8 rpmfusion-free-updates 7.2 M libavdevice x86_64 4.2.2-1.el8 rpmfusion-free-updates 96 k opencore-amr x86_64 0.1.5-7.el8 rpmfusion-free-updates 180 k vo-amrwbenc x86_64 0.1.3-8.el8 rpmfusion-free-updates 77 k x264-libs x86_64 0.157-12.20190717git34c06d1.el8 rpmfusion-free-updates 651 k x265-libs x86_64 3.1.2-1.el8 rpmfusion-free-updates 1.9 M xvidcore x86_64 1.3.7-1.el8 rpmfusion-free-updates 268 k Transaction Summary ================================================================================================ Install 46 Packages Total download size: 22 M Installed size: 72 M Is this ok [y/N]: y Downloading Packages: (1/46): gsm-1.0.17-5.el8.x86_64.rpm 473 kB/s | 37 kB 00:00 (2/46): flac-libs-1.3.2-9.el8.x86_64.rpm 1.8 MB/s | 217 kB 00:00 (3/46): libXtst-1.2.3-7.el8.x86_64.rpm 1.0 MB/s | 22 kB 00:00 (4/46): lame-libs-3.100-6.el8.x86_64.rpm 4.9 MB/s | 361 kB 00:00 (5/46): alsa-lib-1.1.9-4.el8.x86_64.rpm 2.6 MB/s | 429 kB 00:00 (6/46): libasyncns-0.8-14.el8.x86_64.rpm 1.7 MB/s | 32 kB 00:00 (7/46): libbluray-1.0.2-3.el8.x86_64.rpm 7.2 MB/s | 162 kB 00:00 (8/46): libcdio-paranoia-10.2+0.94+2-3.el8.x86_64.rpm 4.0 MB/s | 92 kB 00:00 (9/46): libcdio-2.0.0-3.el8.x86_64.rpm 9.4 MB/s | 256 kB 00:00 (10/46): libogg-1.3.2-10.el8.x86_64.rpm 1.6 MB/s | 31 kB 00:00 (11/46): libsndfile-1.0.28-8.el8.x86_64.rpm 6.7 MB/s | 193 kB 00:00 (12/46): libtheora-1.1.1-21.el8.x86_64.rpm 6.3 MB/s | 184 kB 00:00 (13/46): libva-2.4.1-1.el8.x86_64.rpm 3.4 MB/s | 93 kB 00:00 (14/46): libv4l-1.14.2-3.el8.x86_64.rpm 3.4 MB/s | 194 kB 00:00 (15/46): libsamplerate-0.1.9-1.el8.x86_64.rpm 11 MB/s | 1.0 MB 00:00 (16/46): libvdpau-1.1.1-7.el8.x86_64.rpm 2.2 MB/s | 40 kB 00:00 (17/46): libvorbis-1.3.6-2.el8.x86_64.rpm 9.3 MB/s | 196 kB 00:00 (18/46): libwayland-client-1.15.0-1.el8.x86_64.rpm 1.7 MB/s | 39 kB 00:00 (19/46): mesa-filesystem-19.1.4-3.el8_1.x86_64.rpm 1.6 MB/s | 32 kB 00:00 (20/46): libvpx-1.7.0-6.el8.x86_64.rpm 19 MB/s | 852 kB 00:00 (21/46): ocl-icd-2.2.12-1.el8.x86_64.rpm 2.2 MB/s | 51 kB 00:00 (22/46): openal-soft-1.18.2-7.el8.x86_64.rpm 13 MB/s | 394 kB 00:00 (23/46): opus-1.3-0.4.beta.el8.x86_64.rpm 6.1 MB/s | 204 kB 00:00 (24/46): speex-1.2.0-1.el8.x86_64.rpm 2.2 MB/s | 71 kB 00:00 (25/46): pulseaudio-libs-11.1-23.el8.x86_64.rpm 9.8 MB/s | 677 kB 00:00 (26/46): SDL2-2.0.8-7.el8.x86_64.rpm 11 MB/s | 429 kB 00:00 (27/46): libatomic-8.3.1-4.5.el8.x86_64.rpm 290 kB/s | 22 kB 00:00 (28/46): libass-0.14.0-4.epel8.playground.x86_64.rpm 846 kB/s | 110 kB 00:00 (29/46): jack-audio-connection-kit-1.9.12-8.epel8.playground.x8 2.5 MB/s | 519 kB 00:00 (30/46): libmfx-1.25-4.epel8.playground.x86_64.rpm 1.3 MB/s | 36 kB 00:00 (31/46): libdav1d-0.5.2-1.epel8.playground.x86_64.rpm 703 kB/s | 347 kB 00:00 (32/46): libaom-1.0.0-8.20190810git9666276.epel8.playground.x86 2.1 MB/s | 1.6 MB 00:00 (33/46): soxr-0.1.3-4.epel8.playground.x86_64.rpm 798 kB/s | 97 kB 00:00 (34/46): vid.stab-1.1.0-12.20190213gitaeabc8d.epel8.playground. 2.1 MB/s | 47 kB 00:00 (35/46): pugixml-1.9-1.el8.x86_64.rpm 998 kB/s | 97 kB 00:00 (36/46): libvmaf-1.3.15-1.epel8.playground.x86_64.rpm 515 kB/s | 347 kB 00:00 (37/46): zvbi-0.2.35-9.el8.x86_64.rpm 2.9 MB/s | 424 kB 00:00 (38/46): zimg-2.9.2-1.epel8.playground.x86_64.rpm 1.0 MB/s | 268 kB 00:00 (39/46): libavdevice-4.2.2-1.el8.x86_64.rpm 97 kB/s | 96 kB 00:00 (40/46): opencore-amr-0.1.5-7.el8.x86_64.rpm 854 kB/s | 180 kB 00:00 (41/46): vo-amrwbenc-0.1.3-8.el8.x86_64.rpm 698 kB/s | 77 kB 00:00 (42/46): ffmpeg-4.2.2-1.el8.x86_64.rpm 968 kB/s | 1.4 MB 00:01 (43/46): x264-libs-0.157-12.20190717git34c06d1.el8.x86_64.rpm 2.8 MB/s | 651 kB 00:00 (44/46): xvidcore-1.3.7-1.el8.x86_64.rpm 2.2 MB/s | 268 kB 00:00 (45/46): x265-libs-3.1.2-1.el8.x86_64.rpm 5.7 MB/s | 1.9 MB 00:00 (46/46): ffmpeg-libs-4.2.2-1.el8.x86_64.rpm 1.0 MB/s | 7.2 MB 00:07 ------------------------------------------------------------------------------------------------ Total 1.8 MB/s | 22 MB 00:12 warning: /var/cache/dnf/epel-playground-f4a60bdd14783f87/packages/jack-audio-connection-kit-1.9.12-8.epel8.playground.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID 2f86d6a1: NOKEY Extra Packages for Enterprise Linux 8 - Playground - x86_64 1.6 MB/s | 1.6 kB 00:00 Importing GPG key 0x2F86D6A1: Userid : "Fedora EPEL (8) <epel@fedoraproject.org>" Fingerprint: 94E2 79EB 8D8F 25B2 1810 ADF1 21EA 45AB 2F86 D6A1 From : /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-8 Is this ok [y/N]: y Key imported successfully warning: /var/cache/dnf/rpmfusion-free-updates-4f04908c20c55925/packages/ffmpeg-4.2.2-1.el8.x86_64.rpm: Header V3 RSA/SHA1 Signature, key ID 158b3811: NOKEY RPM Fusion for EL 8 - Free - Updates 1.6 MB/s | 1.7 kB 00:00 Importing GPG key 0x158B3811: Userid : "RPM Fusion free repository for EL (8) <rpmfusion-buildsys@lists.rpmfusion.org>" Fingerprint: 8379 35CD 19E1 23AA 7F8A 8E69 979F 0C69 158B 3811 From : /etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-el-8 Is this ok [y/N]: y Key imported successfully Running transaction check Transaction check succeeded. Running transaction test Transaction test succeeded. Running transaction Preparing : 1/1 Installing : libogg-2:1.3.2-10.el8.x86_64 1/46 Installing : alsa-lib-1.1.9-4.el8.x86_64 2/46 Running scriptlet: alsa-lib-1.1.9-4.el8.x86_64 2/46 Installing : libvorbis-1:1.3.6-2.el8.x86_64 3/46 Installing : SDL2-2.0.8-7.el8.x86_64 4/46 Installing : opus-1.3-0.4.beta.el8.x86_64 5/46 Installing : ocl-icd-2.2.12-1.el8.x86_64 6/46 Running scriptlet: ocl-icd-2.2.12-1.el8.x86_64 6/46 Installing : gsm-1.0.17-5.el8.x86_64 7/46 Installing : x264-libs-0.157-12.20190717git34c06d1.el8.x86_64 8/46 Running scriptlet: x264-libs-0.157-12.20190717git34c06d1.el8.x86_64 8/46 Installing : flac-libs-1.3.2-9.el8.x86_64 9/46 Installing : libsndfile-1.0.28-8.el8.x86_64 10/46 Running scriptlet: libsndfile-1.0.28-8.el8.x86_64 10/46 Installing : libsamplerate-0.1.9-1.el8.x86_64 11/46 Running scriptlet: libsamplerate-0.1.9-1.el8.x86_64 11/46 Running scriptlet: jack-audio-connection-kit-1.9.12-8.epel8.playground.x86_64 12/46 Installing : jack-audio-connection-kit-1.9.12-8.epel8.playground.x86_64 12/46 Installing : libtheora-1:1.1.1-21.el8.x86_64 13/46 Installing : xvidcore-1.3.7-1.el8.x86_64 14/46 Installing : x265-libs-3.1.2-1.el8.x86_64 15/46 Installing : vo-amrwbenc-0.1.3-8.el8.x86_64 16/46 Installing : opencore-amr-0.1.5-7.el8.x86_64 17/46 Installing : zvbi-0.2.35-9.el8.x86_64 18/46 Running scriptlet: zvbi-0.2.35-9.el8.x86_64 18/46 Installing : pugixml-1.9-1.el8.x86_64 19/46 Running scriptlet: pugixml-1.9-1.el8.x86_64 19/46 Installing : libvmaf-1.3.15-1.epel8.playground.x86_64 20/46 Installing : zimg-2.9.2-1.epel8.playground.x86_64 21/46 Installing : vid.stab-1.1.0-12.20190213gitaeabc8d.epel8.playground.x86_64 22/46 Installing : soxr-0.1.3-4.epel8.playground.x86_64 23/46 Installing : libdav1d-0.5.2-1.epel8.playground.x86_64 24/46 Installing : libass-0.14.0-4.epel8.playground.x86_64 25/46 Installing : libaom-1.0.0-8.20190810git9666276.epel8.playground.x86_64 26/46 Installing : libatomic-8.3.1-4.5.el8.x86_64 27/46 Running scriptlet: libatomic-8.3.1-4.5.el8.x86_64 27/46 Installing : openal-soft-1.18.2-7.el8.x86_64 28/46 Installing : speex-1.2.0-1.el8.x86_64 29/46 Installing : mesa-filesystem-19.1.4-3.el8_1.x86_64 30/46 Installing : libwayland-client-1.15.0-1.el8.x86_64 31/46 Installing : libva-2.4.1-1.el8.x86_64 32/46 Installing : libmfx-1.25-4.epel8.playground.x86_64 33/46 Installing : libvpx-1.7.0-6.el8.x86_64 34/46 Installing : libvdpau-1.1.1-7.el8.x86_64 35/46 Running scriptlet: libvdpau-1.1.1-7.el8.x86_64 35/46 Installing : libv4l-1.14.2-3.el8.x86_64 36/46 Running scriptlet: libv4l-1.14.2-3.el8.x86_64 36/46 Installing : libcdio-2.0.0-3.el8.x86_64 37/46 Running scriptlet: libcdio-2.0.0-3.el8.x86_64 37/46 Installing : libcdio-paranoia-10.2+0.94+2-3.el8.x86_64 38/46 Running scriptlet: libcdio-paranoia-10.2+0.94+2-3.el8.x86_64 38/46 Installing : libbluray-1.0.2-3.el8.x86_64 39/46 Running scriptlet: libbluray-1.0.2-3.el8.x86_64 39/46 Installing : libasyncns-0.8-14.el8.x86_64 40/46 Running scriptlet: libasyncns-0.8-14.el8.x86_64 40/46 Installing : libXtst-1.2.3-7.el8.x86_64 41/46 Installing : pulseaudio-libs-11.1-23.el8.x86_64 42/46 Running scriptlet: pulseaudio-libs-11.1-23.el8.x86_64 42/46 Installing : lame-libs-3.100-6.el8.x86_64 43/46 Installing : ffmpeg-libs-4.2.2-1.el8.x86_64 44/46 Installing : libavdevice-4.2.2-1.el8.x86_64 45/46 Installing : ffmpeg-4.2.2-1.el8.x86_64 46/46 Running scriptlet: ffmpeg-4.2.2-1.el8.x86_64 46/46 Verifying : alsa-lib-1.1.9-4.el8.x86_64 1/46 Verifying : flac-libs-1.3.2-9.el8.x86_64 2/46 Verifying : gsm-1.0.17-5.el8.x86_64 3/46 Verifying : lame-libs-3.100-6.el8.x86_64 4/46 Verifying : libXtst-1.2.3-7.el8.x86_64 5/46 Verifying : libasyncns-0.8-14.el8.x86_64 6/46 Verifying : libbluray-1.0.2-3.el8.x86_64 7/46 Verifying : libcdio-2.0.0-3.el8.x86_64 8/46 Verifying : libcdio-paranoia-10.2+0.94+2-3.el8.x86_64 9/46 Verifying : libogg-2:1.3.2-10.el8.x86_64 10/46 Verifying : libsamplerate-0.1.9-1.el8.x86_64 11/46 Verifying : libsndfile-1.0.28-8.el8.x86_64 12/46 Verifying : libtheora-1:1.1.1-21.el8.x86_64 13/46 Verifying : libv4l-1.14.2-3.el8.x86_64 14/46 Verifying : libva-2.4.1-1.el8.x86_64 15/46 Verifying : libvdpau-1.1.1-7.el8.x86_64 16/46 Verifying : libvorbis-1:1.3.6-2.el8.x86_64 17/46 Verifying : libvpx-1.7.0-6.el8.x86_64 18/46 Verifying : libwayland-client-1.15.0-1.el8.x86_64 19/46 Verifying : mesa-filesystem-19.1.4-3.el8_1.x86_64 20/46 Verifying : ocl-icd-2.2.12-1.el8.x86_64 21/46 Verifying : openal-soft-1.18.2-7.el8.x86_64 22/46 Verifying : opus-1.3-0.4.beta.el8.x86_64 23/46 Verifying : pulseaudio-libs-11.1-23.el8.x86_64 24/46 Verifying : speex-1.2.0-1.el8.x86_64 25/46 Verifying : libatomic-8.3.1-4.5.el8.x86_64 26/46 Verifying : SDL2-2.0.8-7.el8.x86_64 27/46 Verifying : jack-audio-connection-kit-1.9.12-8.epel8.playground.x86_64 28/46 Verifying : libaom-1.0.0-8.20190810git9666276.epel8.playground.x86_64 29/46 Verifying : libass-0.14.0-4.epel8.playground.x86_64 30/46 Verifying : libdav1d-0.5.2-1.epel8.playground.x86_64 31/46 Verifying : libmfx-1.25-4.epel8.playground.x86_64 32/46 Verifying : libvmaf-1.3.15-1.epel8.playground.x86_64 33/46 Verifying : soxr-0.1.3-4.epel8.playground.x86_64 34/46 Verifying : vid.stab-1.1.0-12.20190213gitaeabc8d.epel8.playground.x86_64 35/46 Verifying : zimg-2.9.2-1.epel8.playground.x86_64 36/46 Verifying : pugixml-1.9-1.el8.x86_64 37/46 Verifying : zvbi-0.2.35-9.el8.x86_64 38/46 Verifying : ffmpeg-4.2.2-1.el8.x86_64 39/46 Verifying : ffmpeg-libs-4.2.2-1.el8.x86_64 40/46 Verifying : libavdevice-4.2.2-1.el8.x86_64 41/46 Verifying : opencore-amr-0.1.5-7.el8.x86_64 42/46 Verifying : vo-amrwbenc-0.1.3-8.el8.x86_64 43/46 Verifying : x264-libs-0.157-12.20190717git34c06d1.el8.x86_64 44/46 Verifying : x265-libs-3.1.2-1.el8.x86_64 45/46 Verifying : xvidcore-1.3.7-1.el8.x86_64 46/46 Installed: ffmpeg-4.2.2-1.el8.x86_64 alsa-lib-1.1.9-4.el8.x86_64 flac-libs-1.3.2-9.el8.x86_64 gsm-1.0.17-5.el8.x86_64 lame-libs-3.100-6.el8.x86_64 libXtst-1.2.3-7.el8.x86_64 libasyncns-0.8-14.el8.x86_64 libbluray-1.0.2-3.el8.x86_64 libcdio-2.0.0-3.el8.x86_64 libcdio-paranoia-10.2+0.94+2-3.el8.x86_64 libogg-2:1.3.2-10.el8.x86_64 libsamplerate-0.1.9-1.el8.x86_64 libsndfile-1.0.28-8.el8.x86_64 libtheora-1:1.1.1-21.el8.x86_64 libv4l-1.14.2-3.el8.x86_64 libva-2.4.1-1.el8.x86_64 libvdpau-1.1.1-7.el8.x86_64 libvorbis-1:1.3.6-2.el8.x86_64 libvpx-1.7.0-6.el8.x86_64 libwayland-client-1.15.0-1.el8.x86_64 mesa-filesystem-19.1.4-3.el8_1.x86_64 ocl-icd-2.2.12-1.el8.x86_64 openal-soft-1.18.2-7.el8.x86_64 opus-1.3-0.4.beta.el8.x86_64 pulseaudio-libs-11.1-23.el8.x86_64 speex-1.2.0-1.el8.x86_64 libatomic-8.3.1-4.5.el8.x86_64 SDL2-2.0.8-7.el8.x86_64 jack-audio-connection-kit-1.9.12-8.epel8.playground.x86_64 libaom-1.0.0-8.20190810git9666276.epel8.playground.x86_64 libass-0.14.0-4.epel8.playground.x86_64 libdav1d-0.5.2-1.epel8.playground.x86_64 libmfx-1.25-4.epel8.playground.x86_64 libvmaf-1.3.15-1.epel8.playground.x86_64 soxr-0.1.3-4.epel8.playground.x86_64 vid.stab-1.1.0-12.20190213gitaeabc8d.epel8.playground.x86_64 zimg-2.9.2-1.epel8.playground.x86_64 pugixml-1.9-1.el8.x86_64 zvbi-0.2.35-9.el8.x86_64 ffmpeg-libs-4.2.2-1.el8.x86_64 libavdevice-4.2.2-1.el8.x86_64 opencore-amr-0.1.5-7.el8.x86_64 vo-amrwbenc-0.1.3-8.el8.x86_64 x264-libs-0.157-12.20190717git34c06d1.el8.x86_64 x265-libs-3.1.2-1.el8.x86_64 xvidcore-1.3.7-1.el8.x86_64 Complete! [root@centos8 ~]# ffmpeg ffmpeg version 4.2.2 Copyright (c) 2000-2019 the FFmpeg developers built with gcc 8 (GCC) configuration: --prefix=/usr --bindir=/usr/bin --datadir=/usr/share/ffmpeg --docdir=/usr/share/doc/ffmpeg --incdir=/usr/include/ffmpeg --libdir=/usr/lib64 --mandir=/usr/share/man --arch=x86_64 --optflags='-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection' --extra-ldflags='-Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld ' --extra-cflags=' ' --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libvo-amrwbenc --enable-version3 --enable-bzlib --disable-crystalhd --enable-fontconfig --enable-frei0r --enable-gcrypt --enable-gnutls --enable-ladspa --enable-libaom --enable-libdav1d --enable-libass --enable-libbluray --enable-libcdio --enable-libdrm --enable-libjack --enable-libfreetype --enable-libfribidi --enable-libgsm --enable-libmp3lame --enable-nvenc --enable-openal --enable-opencl --enable-opengl --enable-libopenjpeg --enable-libopus --enable-libpulse --enable-librsvg --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libvorbis --enable-libv4l2 --enable-libvidstab --enable-libvmaf --enable-libvpx --enable-libx264 --enable-libx265 --enable-libxvid --enable-libzimg --enable-libzvbi --enable-avfilter --enable-avresample --enable-postproc --enable-pthreads --disable-static --enable-shared --enable-gpl --disable-debug --disable-stripping --shlibdir=/usr/lib64 --enable-libmfx --enable-runtime-cpudetect libavutil 56. 31.100 / 56. 31.100 libavcodec 58. 54.100 / 58. 54.100 libavformat 58. 29.100 / 58. 29.100 libavdevice 58. 8.100 / 58. 8.100 libavfilter 7. 57.100 / 7. 57.100 libavresample 4. 0. 0 / 4. 0. 0 libswscale 5. 5.100 / 5. 5.100 libswresample 3. 5.100 / 3. 5.100 libpostproc 55. 5.100 / 55. 5.100 Hyper fast Audio and Video encoder usage: ffmpeg [options] [[infile options] -i infile]... {[outfile options] outfile}... Use -h to get full help or, even better, run 'man ffmpeg' |