


Red Hat® Enterprise Linux® 8にRPMFusion repositoryを利用してFFmpegをインストールしてみました。
RPM Fusion
https://rpmfusion.org/RPM Fusion
Installing Free and Nonfree Repositories
https://rpmfusion.org/Configuration
環境
・Red Hat Enterprise Linux release 8.2 (Ootpa)
・Kernel 4.18.0-193.14.3.el8_2.x86_64
・Red Hat Developer Subscription
- epel repositoryのインストール
- RPM Fusion free repositoryのインストール
- codeready-builder 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 |
[root@rhel8 ~]# dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm Updating Subscription Management repositories. epel-release-latest-8.noarch.rpm 23 kB/s | 22 kB 00:00 Dependencies resolved. ================================================================================ Package Architecture Version Repository Size ================================================================================ Installing: epel-release noarch 8-8.el8 @commandline 22 k Transaction Summary ================================================================================ Install 1 Package Total size: 22 k Installed size: 32 k Downloading Packages: Running transaction check Transaction check succeeded. Running transaction test Transaction test succeeded. Running transaction Preparing : 1/1 Installing : epel-release-8-8.el8.noarch 1/1 Running scriptlet: epel-release-8-8.el8.noarch 1/1 Verifying : epel-release-8-8.el8.noarch 1/1 Installed products updated. Installed: epel-release-8-8.el8.noarch Complete! |
free,nonfreeがありますが、取り合えずfree repoをインストールしました。
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@rhel8 ~]# dnf install https://download1.rpmfusion.org/free/el/rpmfusion-free-release-8.noarch.rpm Updating Subscription Management repositories. Extra Packages for Enterprise Linux Modular 8 - 90 kB/s | 82 kB 00:00 Extra Packages for Enterprise Linux 8 - x86_64 14 MB/s | 7.5 MB 00:00 rpmfusion-free-release-8.noarch.rpm 12 kB/s | 11 kB 00:00 Dependencies resolved. ================================================================================ Package Architecture Version Repository Size ================================================================================ Installing: rpmfusion-free-release noarch 8-0.1 @commandline 11 k Transaction Summary ================================================================================ Install 1 Package Total size: 11 k Installed size: 3.7 k Is this ok [y/N]: y Downloading Packages: Running transaction check Transaction check succeeded. Running transaction test Transaction test succeeded. Running transaction Preparing : 1/1 Installing : rpmfusion-free-release-8-0.1.noarch 1/1 Verifying : rpmfusion-free-release-8-0.1.noarch 1/1 Installed products updated. Installed: rpmfusion-free-release-8-0.1.noarch Complete! |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
[root@rhel8 ~]# dnf repolist --all | grep codeready-builder codeready-builder-for-rhel-8-x86_64-debug-rpms Red Hat CodeReady disabled codeready-builder-for-rhel-8-x86_64-eus-debug-rpms Red Hat CodeReady disabled codeready-builder-for-rhel-8-x86_64-eus-rpms Red Hat CodeReady disabled codeready-builder-for-rhel-8-x86_64-eus-source-rpms Red Hat CodeReady disabled codeready-builder-for-rhel-8-x86_64-rpms Red Hat CodeReady disabled codeready-builder-for-rhel-8-x86_64-source-rpms Red Hat CodeReady disabled [root@rhel8 ~]# subscription-manager repos --enable "codeready-builder-for-rhel-8-$(uname -m)-rpms" Repository 'codeready-builder-for-rhel-8-x86_64-rpms' is enabled for this system. [root@rhel8 ~]# dnf repolist Updating Subscription Management repositories. repo id repo name codeready-builder-for-rhel-8-x86_64-rpms Red Hat CodeReady Linux Builder for RHEL 8 x86_64 (RPMs) epel Extra Packages for Enterprise Linux 8 - x86_64 epel-modular Extra Packages for Enterprise Linux Modular 8 - x86_64 rhel-8-for-x86_64-appstream-rpms Red Hat Enterprise Linux 8 for x86_64 - AppStream (RPMs) rhel-8-for-x86_64-baseos-rpms Red Hat Enterprise Linux 8 for x86_64 - BaseOS (RPMs) rpmfusion-free-updates RPM Fusion for EL 8 - Free - Updates |
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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 |
[root@rhel8 ~]# dnf info ffmpeg Updating Subscription Management repositories. Red Hat CodeReady Linux Builder for RHEL 8 x86_ 2.3 MB/s | 3.7 MB 00:01 Red Hat Enterprise Linux 8 for x86_64 - AppStre 14 kB/s | 4.5 kB 00:00 Red Hat Enterprise Linux 8 for x86_64 - BaseOS 15 kB/s | 4.1 kB 00:00 Available Packages Name : ffmpeg Version : 4.2.4 Release : 1.el8 Architecture : x86_64 Size : 1.4 M Source : ffmpeg-4.2.4-1.el8.src.rpm Repository : rpmfusion-free-updates Summary : Digital VCR and streaming server URL : http://ffmpeg.org/ License : GPLv2+ Description : FFmpeg is a complete and free Internet live audio and video : broadcasting solution for Linux/Unix. It also includes a digital : VCR. It can encode in real time in many formats including MPEG1 : audio and video, MPEG4, h263, ac3, asf, avi, real, mjpeg, and : flash. [root@rhel8 ~]# dnf -y install ffmpeg Updating Subscription Management repositories. Dependencies resolved. ================================================================================ Package Arch Version Repository Size ================================================================================ Installing: ffmpeg x86_64 4.2.4-1.el8 rpmfusion-free-updates 1.4 M Installing dependencies: SDL2 x86_64 2.0.10-2.el8 codeready-builder-for-rhel-8-x86_64-rpms 461 k alsa-lib x86_64 1.2.1.2-3.el8 rhel-8-for-x86_64-appstream-rpms 441 k ffmpeg-libs x86_64 4.2.4-1.el8 rpmfusion-free-updates 7.1 M flac-libs x86_64 1.3.2-9.el8 rhel-8-for-x86_64-appstream-rpms 217 k glibmm24 x86_64 2.56.0-1.el8 rhel-8-for-x86_64-appstream-rpms 651 k gsm x86_64 1.0.17-5.el8 rhel-8-for-x86_64-appstream-rpms 37 k jack-audio-connection-kit x86_64 1.9.14-4.el8 epel 523 k lame-libs x86_64 3.100-6.el8 rhel-8-for-x86_64-appstream-rpms 361 k libX11-xcb x86_64 1.6.8-3.el8 rhel-8-for-x86_64-appstream-rpms 14 k libXtst x86_64 1.2.3-7.el8 rhel-8-for-x86_64-appstream-rpms 22 k libaom x86_64 1.0.0-8.20190810git9666276.el8 epel 1.6 M libass x86_64 0.14.0-4.el8 epel 110 k libasyncns x86_64 0.8-14.el8 rhel-8-for-x86_64-appstream-rpms 32 k libavdevice x86_64 4.2.4-1.el8 rpmfusion-free-updates 97 k libbluray x86_64 1.0.2-3.el8 rhel-8-for-x86_64-appstream-rpms 162 k libcdio x86_64 2.0.0-3.el8 rhel-8-for-x86_64-appstream-rpms 256 k libcdio-paranoia x86_64 10.2+0.94+2-3.el8 rhel-8-for-x86_64-appstream-rpms 92 k libdav1d x86_64 0.5.2-1.el8 epel 347 k libffado x86_64 2.4.3-2.el8 epel 835 k libglvnd x86_64 1:1.2.0-6.el8 rhel-8-for-x86_64-appstream-rpms 98 k libglvnd-glx x86_64 1:1.2.0-6.el8 rhel-8-for-x86_64-appstream-rpms 136 k libiec61883 x86_64 1.2.0-18.el8 rhel-8-for-x86_64-appstream-rpms 43 k libmfx x86_64 1.25-4.el8 epel 36 k libmodplug x86_64 1:0.8.9.0-9.el8 epel 171 k libogg x86_64 2:1.3.2-10.el8 rhel-8-for-x86_64-appstream-rpms 31 k libraw1394 x86_64 2.1.2-5.el8 rhel-8-for-x86_64-appstream-rpms 72 k libsamplerate x86_64 0.1.9-1.el8 rhel-8-for-x86_64-appstream-rpms 1.0 M libsigc++20 x86_64 2.10.0-5.el8 rhel-8-for-x86_64-appstream-rpms 44 k libsndfile x86_64 1.0.28-10.el8 rhel-8-for-x86_64-appstream-rpms 193 k libtheora x86_64 1:1.1.1-21.el8 rhel-8-for-x86_64-appstream-rpms 184 k libv4l x86_64 1.14.2-3.el8 rhel-8-for-x86_64-appstream-rpms 195 k libva x86_64 2.5.0-2.el8 rhel-8-for-x86_64-appstream-rpms 95 k libvdpau x86_64 1.1.1-7.el8 rhel-8-for-x86_64-appstream-rpms 40 k libvmaf x86_64 1.3.15-1.el8 epel 347 k libvorbis x86_64 1:1.3.6-2.el8 rhel-8-for-x86_64-appstream-rpms 196 k libvpx x86_64 1.7.0-6.el8 rhel-8-for-x86_64-appstream-rpms 852 k libwayland-client x86_64 1.17.0-1.el8 rhel-8-for-x86_64-appstream-rpms 39 k libxml++ x86_64 2.40.1-10.el8 epel 102 k libxshmfence x86_64 1.3-2.el8 rhel-8-for-x86_64-appstream-rpms 13 k mesa-filesystem x86_64 19.3.4-2.el8 rhel-8-for-x86_64-appstream-rpms 33 k mesa-libGL x86_64 19.3.4-2.el8 rhel-8-for-x86_64-appstream-rpms 184 k mesa-libglapi x86_64 19.3.4-2.el8 rhel-8-for-x86_64-appstream-rpms 63 k ocl-icd x86_64 2.2.12-1.el8 rhel-8-for-x86_64-appstream-rpms 51 k openal-soft x86_64 1.18.2-7.el8 rhel-8-for-x86_64-appstream-rpms 394 k opencore-amr x86_64 0.1.5-7.el8 rpmfusion-free-updates 180 k opus x86_64 1.3-0.4.beta.el8 rhel-8-for-x86_64-appstream-rpms 204 k pugixml x86_64 1.9-1.el8 epel 97 k pulseaudio-libs x86_64 11.1-23.el8 rhel-8-for-x86_64-appstream-rpms 677 k soxr x86_64 0.1.3-4.el8 epel 97 k speex x86_64 1.2.0-1.el8 rhel-8-for-x86_64-appstream-rpms 71 k srt-libs x86_64 1.4.1-3.el8 epel 249 k vapoursynth-libs x86_64 48-7.el8 epel 427 k vid.stab x86_64 1.1.0-12.20190213gitaeabc8d.el8 epel 47 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 zimg x86_64 2.9.3-1.el8 epel 269 k zvbi x86_64 0.2.35-9.el8 epel 424 k Transaction Summary ================================================================================ Install 60 Packages Total download size: 25 M Installed size: 82 M Downloading Packages: (1/60): libass-0.14.0-4.el8.x86_64.rpm 1.0 MB/s | 110 kB 00:00 (2/60): jack-audio-connection-kit-1.9.14-4.el8. 2.9 MB/s | 523 kB 00:00 (3/60): libdav1d-0.5.2-1.el8.x86_64.rpm 3.9 MB/s | 347 kB 00:00 (4/60): libmfx-1.25-4.el8.x86_64.rpm 1.7 MB/s | 36 kB 00:00 (5/60): libmodplug-0.8.9.0-9.el8.x86_64.rpm 3.5 MB/s | 171 kB 00:00 (6/60): libffado-2.4.3-2.el8.x86_64.rpm 5.9 MB/s | 835 kB 00:00 (7/60): libxml++-2.40.1-10.el8.x86_64.rpm 3.8 MB/s | 102 kB 00:00 (8/60): pugixml-1.9-1.el8.x86_64.rpm 4.0 MB/s | 97 kB 00:00 (9/60): libvmaf-1.3.15-1.el8.x86_64.rpm 3.3 MB/s | 347 kB 00:00 (10/60): soxr-0.1.3-4.el8.x86_64.rpm 3.5 MB/s | 97 kB 00:00 (11/60): libaom-1.0.0-8.20190810git9666276.el8. 3.9 MB/s | 1.6 MB 00:00 (12/60): vid.stab-1.1.0-12.20190213gitaeabc8d.e 1.4 MB/s | 47 kB 00:00 (13/60): srt-libs-1.4.1-3.el8.x86_64.rpm 2.6 MB/s | 249 kB 00:00 (14/60): vapoursynth-libs-48-7.el8.x86_64.rpm 4.3 MB/s | 427 kB 00:00 (15/60): zimg-2.9.3-1.el8.x86_64.rpm 3.9 MB/s | 269 kB 00:00 (16/60): zvbi-0.2.35-9.el8.x86_64.rpm 4.0 MB/s | 424 kB 00:00 (17/60): SDL2-2.0.10-2.el8.x86_64.rpm 1.0 MB/s | 461 kB 00:00 (18/60): libvpx-1.7.0-6.el8.x86_64.rpm 1.9 MB/s | 852 kB 00:00 (19/60): libtheora-1.1.1-21.el8.x86_64.rpm 462 kB/s | 184 kB 00:00 (20/60): ocl-icd-2.2.12-1.el8.x86_64.rpm 188 kB/s | 51 kB 00:00 (21/60): libXtst-1.2.3-7.el8.x86_64.rpm 73 kB/s | 22 kB 00:00 (22/60): flac-libs-1.3.2-9.el8.x86_64.rpm 717 kB/s | 217 kB 00:00 (23/60): glibmm24-2.56.0-1.el8.x86_64.rpm 2.0 MB/s | 651 kB 00:00 (24/60): libsamplerate-0.1.9-1.el8.x86_64.rpm 3.1 MB/s | 1.0 MB 00:00 (25/60): libiec61883-1.2.0-18.el8.x86_64.rpm 103 kB/s | 43 kB 00:00 (26/60): libvdpau-1.1.1-7.el8.x86_64.rpm 152 kB/s | 40 kB 00:00 (27/60): libsigc++20-2.10.0-5.el8.x86_64.rpm 172 kB/s | 44 kB 00:00 (28/60): libcdio-paranoia-10.2+0.94+2-3.el8.x86 354 kB/s | 92 kB 00:00 (29/60): libogg-1.3.2-10.el8.x86_64.rpm 126 kB/s | 31 kB 00:00 (30/60): speex-1.2.0-1.el8.x86_64.rpm 258 kB/s | 71 kB 00:00 (31/60): opus-1.3-0.4.beta.el8.x86_64.rpm 791 kB/s | 204 kB 00:00 (32/60): libbluray-1.0.2-3.el8.x86_64.rpm 666 kB/s | 162 kB 00:00 (33/60): libasyncns-0.8-14.el8.x86_64.rpm 139 kB/s | 32 kB 00:00 (34/60): lame-libs-3.100-6.el8.x86_64.rpm 1.3 MB/s | 361 kB 00:00 (35/60): libxshmfence-1.3-2.el8.x86_64.rpm 53 kB/s | 13 kB 00:00 (36/60): libraw1394-2.1.2-5.el8.x86_64.rpm 286 kB/s | 72 kB 00:00 (37/60): gsm-1.0.17-5.el8.x86_64.rpm 147 kB/s | 37 kB 00:00 (38/60): openal-soft-1.18.2-7.el8.x86_64.rpm 1.4 MB/s | 394 kB 00:00 (39/60): libv4l-1.14.2-3.el8.x86_64.rpm 774 kB/s | 195 kB 00:00 (40/60): libvorbis-1.3.6-2.el8.x86_64.rpm 781 kB/s | 196 kB 00:00 (41/60): pulseaudio-libs-11.1-23.el8.x86_64.rpm 2.0 MB/s | 677 kB 00:00 (42/60): libcdio-2.0.0-3.el8.x86_64.rpm 941 kB/s | 256 kB 00:00 (43/60): libsndfile-1.0.28-10.el8.x86_64.rpm 775 kB/s | 193 kB 00:00 (44/60): libglvnd-1.2.0-6.el8.x86_64.rpm 379 kB/s | 98 kB 00:00 (45/60): libX11-xcb-1.6.8-3.el8.x86_64.rpm 54 kB/s | 14 kB 00:00 (46/60): libva-2.5.0-2.el8.x86_64.rpm 379 kB/s | 95 kB 00:00 (47/60): mesa-libglapi-19.3.4-2.el8.x86_64.rpm 238 kB/s | 63 kB 00:00 (48/60): mesa-libGL-19.3.4-2.el8.x86_64.rpm 695 kB/s | 184 kB 00:00 (49/60): mesa-filesystem-19.3.4-2.el8.x86_64.rp 133 kB/s | 33 kB 00:00 (50/60): libwayland-client-1.17.0-1.el8.x86_64. 144 kB/s | 39 kB 00:00 (51/60): libglvnd-glx-1.2.0-6.el8.x86_64.rpm 503 kB/s | 136 kB 00:00 (52/60): alsa-lib-1.2.1.2-3.el8.x86_64.rpm 1.5 MB/s | 441 kB 00:00 (53/60): libavdevice-4.2.4-1.el8.x86_64.rpm 436 kB/s | 97 kB 00:00 (54/60): opencore-amr-0.1.5-7.el8.x86_64.rpm 1.7 MB/s | 180 kB 00:00 (55/60): vo-amrwbenc-0.1.3-8.el8.x86_64.rpm 1.3 MB/s | 77 kB 00:00 (56/60): ffmpeg-4.2.4-1.el8.x86_64.rpm 2.5 MB/s | 1.4 MB 00:00 (57/60): x264-libs-0.157-12.20190717git34c06d1. 1.6 MB/s | 651 kB 00:00 (58/60): xvidcore-1.3.7-1.el8.x86_64.rpm 1.8 MB/s | 268 kB 00:00 (59/60): x265-libs-3.1.2-1.el8.x86_64.rpm 3.2 MB/s | 1.9 MB 00:00 (60/60): ffmpeg-libs-4.2.4-1.el8.x86_64.rpm 5.2 MB/s | 7.1 MB 00:01 -------------------------------------------------------------------------------- Total 3.6 MB/s | 25 MB 00:06 warning: /var/cache/dnf/epel-fafd94c310c51e1e/packages/jack-audio-connection-kit-1.9.14-4.el8.x86_64.rpm: Header V4 RSA/SHA256 Signature, key ID 2f86d6a1: NOKEY Extra Packages for Enterprise Linux 8 - 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 Key imported successfully warning: /var/cache/dnf/rpmfusion-free-updates-4f04908c20c55925/packages/ffmpeg-4.2.4-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 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/60 Installing : alsa-lib-1.2.1.2-3.el8.x86_64 2/60 Running scriptlet: alsa-lib-1.2.1.2-3.el8.x86_64 2/60 Installing : libsigc++20-2.10.0-5.el8.x86_64 3/60 Running scriptlet: libsigc++20-2.10.0-5.el8.x86_64 3/60 Installing : glibmm24-2.56.0-1.el8.x86_64 4/60 Installing : libvorbis-1:1.3.6-2.el8.x86_64 5/60 Installing : libX11-xcb-1.6.8-3.el8.x86_64 6/60 Installing : gsm-1.0.17-5.el8.x86_64 7/60 Installing : libraw1394-2.1.2-5.el8.x86_64 8/60 Running scriptlet: libraw1394-2.1.2-5.el8.x86_64 8/60 Installing : opus-1.3-0.4.beta.el8.x86_64 9/60 Installing : ocl-icd-2.2.12-1.el8.x86_64 10/60 Running scriptlet: ocl-icd-2.2.12-1.el8.x86_64 10/60 Installing : SDL2-2.0.10-2.el8.x86_64 11/60 Installing : zimg-2.9.3-1.el8.x86_64 12/60 Installing : vapoursynth-libs-48-7.el8.x86_64 13/60 Installing : x264-libs-0.157-12.20190717git34c06d1.el8.x86_64 14/60 Running scriptlet: x264-libs-0.157-12.20190717git34c06d1.el8.x86_64 14/60 Installing : libiec61883-1.2.0-18.el8.x86_64 15/60 Running scriptlet: libiec61883-1.2.0-18.el8.x86_64 15/60 Installing : libxml++-2.40.1-10.el8.x86_64 16/60 Installing : libffado-2.4.3-2.el8.x86_64 17/60 Installing : libtheora-1:1.1.1-21.el8.x86_64 18/60 Installing : flac-libs-1.3.2-9.el8.x86_64 19/60 Installing : libsndfile-1.0.28-10.el8.x86_64 20/60 Running scriptlet: libsndfile-1.0.28-10.el8.x86_64 20/60 Installing : libsamplerate-0.1.9-1.el8.x86_64 21/60 Running scriptlet: libsamplerate-0.1.9-1.el8.x86_64 21/60 Running scriptlet: jack-audio-connection-kit-1.9.14-4.el8.x86_64 22/60 Installing : jack-audio-connection-kit-1.9.14-4.el8.x86_64 22/60 Installing : xvidcore-1.3.7-1.el8.x86_64 23/60 Installing : x265-libs-3.1.2-1.el8.x86_64 24/60 Installing : vo-amrwbenc-0.1.3-8.el8.x86_64 25/60 Installing : opencore-amr-0.1.5-7.el8.x86_64 26/60 Installing : libwayland-client-1.17.0-1.el8.x86_64 27/60 Installing : mesa-filesystem-19.3.4-2.el8.x86_64 28/60 Installing : mesa-libglapi-19.3.4-2.el8.x86_64 29/60 Running scriptlet: mesa-libglapi-19.3.4-2.el8.x86_64 29/60 Installing : libglvnd-1:1.2.0-6.el8.x86_64 30/60 Installing : libcdio-2.0.0-3.el8.x86_64 31/60 Running scriptlet: libcdio-2.0.0-3.el8.x86_64 31/60 Installing : libcdio-paranoia-10.2+0.94+2-3.el8.x86_64 32/60 Running scriptlet: libcdio-paranoia-10.2+0.94+2-3.el8.x86_64 32/60 Installing : libv4l-1.14.2-3.el8.x86_64 33/60 Running scriptlet: libv4l-1.14.2-3.el8.x86_64 33/60 Installing : openal-soft-1.18.2-7.el8.x86_64 34/60 Installing : libxshmfence-1.3-2.el8.x86_64 35/60 Installing : libglvnd-glx-1:1.2.0-6.el8.x86_64 36/60 Installing : mesa-libGL-19.3.4-2.el8.x86_64 37/60 Installing : libva-2.5.0-2.el8.x86_64 38/60 Installing : libmfx-1.25-4.el8.x86_64 39/60 Installing : lame-libs-3.100-6.el8.x86_64 40/60 Installing : libasyncns-0.8-14.el8.x86_64 41/60 Running scriptlet: libasyncns-0.8-14.el8.x86_64 41/60 Installing : libbluray-1.0.2-3.el8.x86_64 42/60 Running scriptlet: libbluray-1.0.2-3.el8.x86_64 42/60 Installing : speex-1.2.0-1.el8.x86_64 43/60 Installing : libvdpau-1.1.1-7.el8.x86_64 44/60 Running scriptlet: libvdpau-1.1.1-7.el8.x86_64 44/60 Installing : libXtst-1.2.3-7.el8.x86_64 45/60 Installing : pulseaudio-libs-11.1-23.el8.x86_64 46/60 Running scriptlet: pulseaudio-libs-11.1-23.el8.x86_64 46/60 Installing : libvpx-1.7.0-6.el8.x86_64 47/60 Installing : zvbi-0.2.35-9.el8.x86_64 48/60 Running scriptlet: zvbi-0.2.35-9.el8.x86_64 48/60 Installing : vid.stab-1.1.0-12.20190213gitaeabc8d.el8.x86_64 49/60 Installing : srt-libs-1.4.1-3.el8.x86_64 50/60 Installing : soxr-0.1.3-4.el8.x86_64 51/60 Installing : pugixml-1.9-1.el8.x86_64 52/60 Running scriptlet: pugixml-1.9-1.el8.x86_64 52/60 Installing : libvmaf-1.3.15-1.el8.x86_64 53/60 Installing : libmodplug-1:0.8.9.0-9.el8.x86_64 54/60 Installing : libdav1d-0.5.2-1.el8.x86_64 55/60 Installing : libass-0.14.0-4.el8.x86_64 56/60 Installing : libaom-1.0.0-8.20190810git9666276.el8.x86_64 57/60 Installing : ffmpeg-libs-4.2.4-1.el8.x86_64 58/60 Installing : libavdevice-4.2.4-1.el8.x86_64 59/60 Installing : ffmpeg-4.2.4-1.el8.x86_64 60/60 Running scriptlet: ffmpeg-4.2.4-1.el8.x86_64 60/60 Verifying : jack-audio-connection-kit-1.9.14-4.el8.x86_64 1/60 Verifying : libaom-1.0.0-8.20190810git9666276.el8.x86_64 2/60 Verifying : libass-0.14.0-4.el8.x86_64 3/60 Verifying : libdav1d-0.5.2-1.el8.x86_64 4/60 Verifying : libffado-2.4.3-2.el8.x86_64 5/60 Verifying : libmfx-1.25-4.el8.x86_64 6/60 Verifying : libmodplug-1:0.8.9.0-9.el8.x86_64 7/60 Verifying : libvmaf-1.3.15-1.el8.x86_64 8/60 Verifying : libxml++-2.40.1-10.el8.x86_64 9/60 Verifying : pugixml-1.9-1.el8.x86_64 10/60 Verifying : soxr-0.1.3-4.el8.x86_64 11/60 Verifying : srt-libs-1.4.1-3.el8.x86_64 12/60 Verifying : vapoursynth-libs-48-7.el8.x86_64 13/60 Verifying : vid.stab-1.1.0-12.20190213gitaeabc8d.el8.x86_64 14/60 Verifying : zimg-2.9.3-1.el8.x86_64 15/60 Verifying : zvbi-0.2.35-9.el8.x86_64 16/60 Verifying : SDL2-2.0.10-2.el8.x86_64 17/60 Verifying : libvpx-1.7.0-6.el8.x86_64 18/60 Verifying : libtheora-1:1.1.1-21.el8.x86_64 19/60 Verifying : ocl-icd-2.2.12-1.el8.x86_64 20/60 Verifying : libXtst-1.2.3-7.el8.x86_64 21/60 Verifying : flac-libs-1.3.2-9.el8.x86_64 22/60 Verifying : glibmm24-2.56.0-1.el8.x86_64 23/60 Verifying : libsamplerate-0.1.9-1.el8.x86_64 24/60 Verifying : libiec61883-1.2.0-18.el8.x86_64 25/60 Verifying : libvdpau-1.1.1-7.el8.x86_64 26/60 Verifying : libsigc++20-2.10.0-5.el8.x86_64 27/60 Verifying : libcdio-paranoia-10.2+0.94+2-3.el8.x86_64 28/60 Verifying : libogg-2:1.3.2-10.el8.x86_64 29/60 Verifying : speex-1.2.0-1.el8.x86_64 30/60 Verifying : opus-1.3-0.4.beta.el8.x86_64 31/60 Verifying : libbluray-1.0.2-3.el8.x86_64 32/60 Verifying : libasyncns-0.8-14.el8.x86_64 33/60 Verifying : lame-libs-3.100-6.el8.x86_64 34/60 Verifying : libxshmfence-1.3-2.el8.x86_64 35/60 Verifying : libraw1394-2.1.2-5.el8.x86_64 36/60 Verifying : gsm-1.0.17-5.el8.x86_64 37/60 Verifying : openal-soft-1.18.2-7.el8.x86_64 38/60 Verifying : libv4l-1.14.2-3.el8.x86_64 39/60 Verifying : libvorbis-1:1.3.6-2.el8.x86_64 40/60 Verifying : pulseaudio-libs-11.1-23.el8.x86_64 41/60 Verifying : libcdio-2.0.0-3.el8.x86_64 42/60 Verifying : libsndfile-1.0.28-10.el8.x86_64 43/60 Verifying : libglvnd-1:1.2.0-6.el8.x86_64 44/60 Verifying : libX11-xcb-1.6.8-3.el8.x86_64 45/60 Verifying : libva-2.5.0-2.el8.x86_64 46/60 Verifying : mesa-libglapi-19.3.4-2.el8.x86_64 47/60 Verifying : mesa-libGL-19.3.4-2.el8.x86_64 48/60 Verifying : mesa-filesystem-19.3.4-2.el8.x86_64 49/60 Verifying : libwayland-client-1.17.0-1.el8.x86_64 50/60 Verifying : libglvnd-glx-1:1.2.0-6.el8.x86_64 51/60 Verifying : alsa-lib-1.2.1.2-3.el8.x86_64 52/60 Verifying : ffmpeg-4.2.4-1.el8.x86_64 53/60 Verifying : ffmpeg-libs-4.2.4-1.el8.x86_64 54/60 Verifying : libavdevice-4.2.4-1.el8.x86_64 55/60 Verifying : opencore-amr-0.1.5-7.el8.x86_64 56/60 Verifying : vo-amrwbenc-0.1.3-8.el8.x86_64 57/60 Verifying : x264-libs-0.157-12.20190717git34c06d1.el8.x86_64 58/60 Verifying : x265-libs-3.1.2-1.el8.x86_64 59/60 Verifying : xvidcore-1.3.7-1.el8.x86_64 60/60 Installed products updated. Installed: SDL2-2.0.10-2.el8.x86_64 alsa-lib-1.2.1.2-3.el8.x86_64 ffmpeg-4.2.4-1.el8.x86_64 ffmpeg-libs-4.2.4-1.el8.x86_64 flac-libs-1.3.2-9.el8.x86_64 glibmm24-2.56.0-1.el8.x86_64 gsm-1.0.17-5.el8.x86_64 jack-audio-connection-kit-1.9.14-4.el8.x86_64 lame-libs-3.100-6.el8.x86_64 libX11-xcb-1.6.8-3.el8.x86_64 libXtst-1.2.3-7.el8.x86_64 libaom-1.0.0-8.20190810git9666276.el8.x86_64 libass-0.14.0-4.el8.x86_64 libasyncns-0.8-14.el8.x86_64 libavdevice-4.2.4-1.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 libdav1d-0.5.2-1.el8.x86_64 libffado-2.4.3-2.el8.x86_64 libglvnd-1:1.2.0-6.el8.x86_64 libglvnd-glx-1:1.2.0-6.el8.x86_64 libiec61883-1.2.0-18.el8.x86_64 libmfx-1.25-4.el8.x86_64 libmodplug-1:0.8.9.0-9.el8.x86_64 libogg-2:1.3.2-10.el8.x86_64 libraw1394-2.1.2-5.el8.x86_64 libsamplerate-0.1.9-1.el8.x86_64 libsigc++20-2.10.0-5.el8.x86_64 libsndfile-1.0.28-10.el8.x86_64 libtheora-1:1.1.1-21.el8.x86_64 libv4l-1.14.2-3.el8.x86_64 libva-2.5.0-2.el8.x86_64 libvdpau-1.1.1-7.el8.x86_64 libvmaf-1.3.15-1.el8.x86_64 libvorbis-1:1.3.6-2.el8.x86_64 libvpx-1.7.0-6.el8.x86_64 libwayland-client-1.17.0-1.el8.x86_64 libxml++-2.40.1-10.el8.x86_64 libxshmfence-1.3-2.el8.x86_64 mesa-filesystem-19.3.4-2.el8.x86_64 mesa-libGL-19.3.4-2.el8.x86_64 mesa-libglapi-19.3.4-2.el8.x86_64 ocl-icd-2.2.12-1.el8.x86_64 openal-soft-1.18.2-7.el8.x86_64 opencore-amr-0.1.5-7.el8.x86_64 opus-1.3-0.4.beta.el8.x86_64 pugixml-1.9-1.el8.x86_64 pulseaudio-libs-11.1-23.el8.x86_64 soxr-0.1.3-4.el8.x86_64 speex-1.2.0-1.el8.x86_64 srt-libs-1.4.1-3.el8.x86_64 vapoursynth-libs-48-7.el8.x86_64 vid.stab-1.1.0-12.20190213gitaeabc8d.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 zimg-2.9.3-1.el8.x86_64 zvbi-0.2.35-9.el8.x86_64 Complete! |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
[root@rhel8 ~]# ffmpeg ffmpeg version 4.2.4 Copyright (c) 2000-2020 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-libsrt --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libvorbis --enable-libv4l2 --enable-libvidstab --enable-libvmaf --enable-version3 --enable-vapoursynth --enable-libvpx --enable-libx264 --enable-libx265 --enable-libxvid --enable-libzimg --enable-libzvbi --enable-avfilter --enable-avresample --enable-libmodplug --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' |