CentOS 7にnux-dextop repoを使用してffmpegのインストールを試したのですが回線が遅いようでタイムアウトになってしまいます。
他の方法を探したらatrpms repositoryでのインストールも出来るようなので試そうと思ったら、もう提供されていないのですね。
ATrpms
http://atrpms.net/
探したらイギリスのミラーサイトに残っていました。
UK Mirror Service
https://www.mirrorservice.org/sites/dl.atrpms.net/el7-x86_64/atrpms/stable/
試しにここを使用してインストールしてみます。
- epel repository
- atrpms repository
- atrpms.repoの修正
- info ffmpeg
- install ffmpeg ffmpeg-devel
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 |
[root@host01 ~]# yum -y install epel-release 読み込んだプラグイン:fastestmirror Loading mirror speeds from cached hostfile * base: www.ftp.ne.jp * extras: www.ftp.ne.jp * rpmforge: ftp.kddilabs.jp * updates: www.ftp.ne.jp 依存性の解決をしています --> トランザクションの確認を実行しています。 ---> パッケージ epel-release.noarch 0:7-5 を インストール --> 依存性解決を終了しました。 依存性を解決しました ================================================================================ Package アーキテクチャー バージョン リポジトリー 容量 ================================================================================ インストール中: epel-release noarch 7-5 extras 14 k トランザクションの要約 ================================================================================ インストール 1 パッケージ 総ダウンロード容量: 14 k インストール容量: 24 k Downloading packages: epel-release-7-5.noarch.rpm | 14 kB 00:00 Running transaction check Running transaction test Transaction test succeeded Running transaction 警告: RPMDB は yum 以外で変更されました。 インストール中 : epel-release-7-5.noarch 1/1 検証中 : epel-release-7-5.noarch 1/1 インストール: epel-release.noarch 0:7-5 完了しました! |
1 2 3 4 5 6 |
[root@host01 ~]# rpm -ivh https://www.mirrorservice.org/sites/dl.atrpms.net/el7-x86_64/atrpms/stable/atrpms-repo-7-7.el7.x86_64.rpm https://www.mirrorservice.org/sites/dl.atrpms.net/el7-x86_64/atrpms/stable/atrpms-repo-7-7.el7.x86_64.rpm を取得中 警告: /var/tmp/rpm-tmp.GLoLau: ヘッダー V4 DSA/SHA1 Signature、鍵 ID 66534c2b: NOKEY 準備しています... ################################# [100%] 更新中 / インストール中... 1:atrpms-repo-7-7.el7 ################################# [100%] |
サイト情報を書換えます。
1 2 3 4 5 6 7 8 9 |
[root@host01 ~]# vi /etc/yum.repos.d/atrpms.repo [atrpms] name=Red Hat Enterprise Linux $releasever - $basearch - ATrpms failovermethod=priority #baseurl=http://dl.atrpms.net/el$releasever-$basearch/atrpms/stable baseurl=https://www.mirrorservice.org/sites/dl.atrpms.net/el$releasever-$basearch/atrpms/stable enabled=1 gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-atrpms |
バージョン2.2.1なので少し古いです。
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 |
[root@host01 ~]# yum info ffmpeg 読み込んだプラグイン:fastestmirror Loading mirror speeds from cached hostfile * base: www.ftp.ne.jp * epel: ftp.riken.jp * extras: www.ftp.ne.jp * updates: www.ftp.ne.jp 利用可能なパッケージ 名前 : ffmpeg アーキテクチャー : x86_64 バージョン : 2.2.1 リリース : 65.el7 容量 : 1.6 M リポジトリー : atrpms/7/x86_64 要約 : Hyper fast MPEG1/MPEG4/H263/RV and AC3/MPEG audio encoder URL : http://ffmpeg.sourceforge.net/ ライセンス : GPLv3 説明 : FFmpeg is a very fast video and audio converter. It can : also grab from a live audio/video source. : The command line interface is designed to be intuitive, in : the sense that ffmpeg tries to figure out all the : parameters, when possible. You have usually to give only : the target bitrate you want. FFmpeg can also convert from : any sample rate to any other, and resize video on the fly : with a high quality polyphase filter. |
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 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 |
[root@host01 ~]# yum -y install ffmpeg ffmpeg-devel 読み込んだプラグイン:fastestmirror Loading mirror speeds from cached hostfile * base: www.ftp.ne.jp * epel: ftp.riken.jp * extras: www.ftp.ne.jp * updates: www.ftp.ne.jp 依存性の解決をしています --> トランザクションの確認を実行しています。 ---> パッケージ ffmpeg.x86_64 0:2.2.1-65.el7 を インストール --> 依存性の処理をしています: libswscale2 = 2.2.1-65.el7 のパッケージ: ffmpeg-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libavdevice55 = 2.2.1-65.el7 のパッケージ: ffmpeg-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libavfilter4 = 2.2.1-65.el7 のパッケージ: ffmpeg-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libpostproc52 = 2.2.1-65.el7 のパッケージ: ffmpeg-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libavcodec55 = 2.2.1-65.el7 のパッケージ: ffmpeg-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libavutil52 = 2.2.1-65.el7 のパッケージ: ffmpeg-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libswresample0 = 2.2.1-65.el7 のパッケージ: ffmpeg-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libavformat55 = 2.2.1-65.el7 のパッケージ: ffmpeg-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libavformat.so.55(LIBAVFORMAT_55)(64bit) のパッケ ージ: ffmpeg-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libavdevice.so.55(LIBAVDEVICE_55)(64bit) のパッケ ージ: ffmpeg-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libavfilter.so.4(LIBAVFILTER_4)(64bit) のパッケー ジ: ffmpeg-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libpostproc.so.52(LIBPOSTPROC_52)(64bit) のパッケ ージ: ffmpeg-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libswscale.so.2(LIBSWSCALE_2)(64bit) のパッケージ: ffmpeg-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libavutil.so.52(LIBAVUTIL_52)(64bit) のパッケージ: ffmpeg-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libswresample.so.0(LIBSWRESAMPLE_0)(64bit) のパッ ケージ: ffmpeg-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libavcodec.so.55(LIBAVCODEC_55)(64bit) のパッケー ジ: ffmpeg-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libavformat.so.55()(64bit) のパッケージ: ffmpeg-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libvdpau.so.1()(64bit) のパッケージ: ffmpeg-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libswresample.so.0()(64bit) のパッケージ: ffmpeg-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libavutil.so.52()(64bit) のパッケージ: ffmpeg-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libpostproc.so.52()(64bit) のパッケージ: ffmpeg-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libavdevice.so.55()(64bit) のパッケージ: ffmpeg-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libavfilter.so.4()(64bit) のパッケージ: ffmpeg-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libSDL-1.2.so.0()(64bit) のパッケージ: ffmpeg-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libX11.so.6()(64bit) のパッケージ: ffmpeg-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libavcodec.so.55()(64bit) のパッケージ: ffmpeg-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libswscale.so.2()(64bit) のパッケージ: ffmpeg-2.2.1-65.el7.x86_64 ---> パッケージ ffmpeg-devel.x86_64 0:2.2.1-65.el7 を インストール --> 依存性の処理をしています: zlib-devel のパッケージ: ffmpeg-devel-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libdc1394-devel のパッケージ: ffmpeg-devel-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: lame-devel のパッケージ: ffmpeg-devel-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: faad2-devel のパッケージ: ffmpeg-devel-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libX11-devel のパッケージ: ffmpeg-devel-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: x264-devel のパッケージ: ffmpeg-devel-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libvorbis-devel のパッケージ: ffmpeg-devel-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: xvidcore-devel のパッケージ: ffmpeg-devel-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libraw1394-devel のパッケージ: ffmpeg-devel-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libtheora-devel のパッケージ: ffmpeg-devel-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: a52dec-devel のパッケージ: ffmpeg-devel-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libXext-devel のパッケージ: ffmpeg-devel-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: gsm-devel のパッケージ: ffmpeg-devel-2.2.1-65.el7.x86_64 --> トランザクションの確認を実行しています。 ---> パッケージ SDL.x86_64 0:1.2.15-14.el7 を インストール ---> パッケージ a52dec-devel.x86_64 0:0.7.4-7.0.1.el7 を インストール --> 依存性の処理をしています: liba52_0 = 0.7.4 のパッケージ: a52dec-devel-0.7.4-7.0.1.el7.x86_64 --> 依存性の処理をしています: liba52.so.0()(64bit) のパッケージ: a52dec-devel-0.7.4-7.0.1.el7.x86_64 ---> パッケージ faad2-devel.x86_64 1:2.7-18.el7 を インストール --> 依存性の処理をしています: libfaad2 = 1:2.7-18.el7 のパッケージ: 1:faad2-devel-2.7-18.el7.x86_64 --> 依存性の処理をしています: libfaad.so.2()(64bit) のパッケージ: 1:faad2-devel-2.7-18.el7.x86_64 ---> パッケージ gsm-devel.x86_64 0:1.0.13-11.el7 を インストール --> 依存性の処理をしています: gsm = 1.0.13-11.el7 のパッケージ: gsm-devel-1.0.13-11.el7.x86_64 --> 依存性の処理をしています: libgsm.so.1()(64bit) のパッケージ: gsm-devel-1.0.13-11.el7.x86_64 ---> パッケージ lame-devel.x86_64 0:3.99.3-23.el7 を インストール --> 依存性の処理をしています: libmp3lame0 = 3.99.3-23.el7 のパッケージ: lame-devel-3.99.3-23.el7.x86_64 --> 依存性の処理をしています: libmp3lame.so.0()(64bit) のパッケージ: lame-devel-3.99.3-23.el7.x86_64 ---> パッケージ libX11.x86_64 0:1.6.3-2.el7 を インストール --> 依存性の処理をしています: libX11-common >= 1.6.3-2.el7 のパッケージ: libX11-1.6.3-2.el7.x86_64 --> 依存性の処理をしています: libxcb.so.1()(64bit) のパッケージ: libX11-1.6.3-2.el7.x86_64 ---> パッケージ libX11-devel.x86_64 0:1.6.3-2.el7 を インストール --> 依存性の処理をしています: pkgconfig(xcb) >= 1.1.92 のパッケージ: libX11-devel-1.6.3-2.el7.x86_64 --> 依存性の処理をしています: pkgconfig(xproto) のパッケージ: libX11-devel-1.6.3-2.el7.x86_64 --> 依存性の処理をしています: pkgconfig(xcb) のパッケージ: libX11-devel-1.6.3-2.el7.x86_64 --> 依存性の処理をしています: pkgconfig(kbproto) のパッケージ: libX11-devel-1.6.3-2.el7.x86_64 ---> パッケージ libXext-devel.x86_64 0:1.3.3-3.el7 を インストール --> 依存性の処理をしています: libXext = 1.3.3-3.el7 のパッケージ: libXext-devel-1.3.3-3.el7.x86_64 --> 依存性の処理をしています: libXext.so.6()(64bit) のパッケージ: libXext-devel-1.3.3-3.el7.x86_64 ---> パッケージ libavcodec55.x86_64 0:2.2.1-65.el7 を インストール --> 依存性の処理をしています: libtheoradec.so.1(libtheoradec_1.0)(64bit) のパッ ケージ: libavcodec55-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libtheoraenc.so.1(libtheoraenc_1.0)(64bit) のパッ ケージ: libavcodec55-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libspeex.so.1()(64bit) のパッケージ: libavcodec55-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libopencore-amrwb.so.0()(64bit) のパッケージ: libavcodec55-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libva.so.1()(64bit) のパッケージ: libavcodec55-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libvorbisenc.so.2()(64bit) のパッケージ: libavcodec55-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libopencore-amrnb.so.0()(64bit) のパッケージ: libavcodec55-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libvpx.so.1()(64bit) のパッケージ: libavcodec55-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libx264.so.142()(64bit) のパッケージ: libavcodec55-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libopenjpeg.so.1()(64bit) のパッケージ: libavcodec55-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libxvidcore.so.4()(64bit) のパッケージ: libavcodec55-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libtheoradec.so.1()(64bit) のパッケージ: libavcodec55-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libtheoraenc.so.1()(64bit) のパッケージ: libavcodec55-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libvorbis.so.0()(64bit) のパッケージ: libavcodec55-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libxavs.so.1()(64bit) のパッケージ: libavcodec55-2.2.1-65.el7.x86_64 ---> パッケージ libavdevice55.x86_64 0:2.2.1-65.el7 を インストール --> 依存性の処理をしています: libdc1394.so.22()(64bit) のパッケージ: libavdevice55-2.2.1-65.el7.x86_64 --> 依存性の処理をしています: libXfixes.so.3()(64bit) のパッケージ: libavdevice55-2.2.1-65.el7.x86_64 ---> パッケージ libavfilter4.x86_64 0:2.2.1-65.el7 を インストール ---> パッケージ libavformat55.x86_64 0:2.2.1-65.el7 を インストール --> 依存性の処理をしています: librtmp.so.0()(64bit) のパッケージ: libavformat55-2.2.1-65.el7.x86_64 ---> パッケージ libavutil52.x86_64 0:2.2.1-65.el7 を インストール ---> パッケージ libdc1394-devel.x86_64 0:2.2.2-3.el7 を インストール ---> パッケージ libpostproc52.x86_64 0:2.2.1-65.el7 を インストール ---> パッケージ libraw1394-devel.x86_64 0:2.1.0-2.el7 を インストール --> 依存性の処理をしています: libraw1394 = 2.1.0-2.el7 のパッケージ: libraw1394-devel-2.1.0-2.el7.x86_64 --> 依存性の処理をしています: libraw1394.so.11()(64bit) のパッケージ: libraw1394-devel-2.1.0-2.el7.x86_64 ---> パッケージ libswresample0.x86_64 0:2.2.1-65.el7 を インストール ---> パッケージ libswscale2.x86_64 0:2.2.1-65.el7 を インストール ---> パッケージ libtheora-devel.x86_64 1:1.1.1-8.el7 を インストール --> 依存性の処理をしています: pkgconfig(ogg) >= 1.1 のパッケージ: 1:libtheora-devel-1.1.1-8.el7.x86_64 --> 依存性の処理をしています: libogg-devel >= 2:1.1 のパッケージ: 1:libtheora-devel-1.1.1-8.el7.x86_64 ---> パッケージ libvdpau.x86_64 0:1.1-2.el7 を インストール ---> パッケージ libvorbis-devel.x86_64 1:1.3.3-8.el7 を インストール ---> パッケージ x264-devel.x86_64 0:0.142-20_20140406.2245.el7 を インストール ---> パッケージ xvidcore-devel.x86_64 0:1.3.2-15.el7 を インストール ---> パッケージ zlib-devel.x86_64 0:1.2.7-15.el7 を インストール --> トランザクションの確認を実行しています。 ---> パッケージ gsm.x86_64 0:1.0.13-11.el7 を インストール ---> パッケージ libX11-common.noarch 0:1.6.3-2.el7 を インストール ---> パッケージ libXext.x86_64 0:1.3.3-3.el7 を インストール ---> パッケージ libXfixes.x86_64 0:5.0.1-2.1.el7 を インストール ---> パッケージ liba52_0.x86_64 0:0.7.4-7.0.1.el7 を インストール ---> パッケージ libdc1394.x86_64 0:2.2.2-3.el7 を インストール --> 依存性の処理をしています: libusb-1.0.so.0()(64bit) のパッケージ: libdc1394-2.2.2-3.el7.x86_64 ---> パッケージ libfaad2.x86_64 1:2.7-18.el7 を インストール ---> パッケージ libmp3lame0.x86_64 0:3.99.3-23.el7 を インストール ---> パッケージ libogg-devel.x86_64 2:1.3.0-7.el7 を インストール --> 依存性の処理をしています: libogg = 2:1.3.0-7.el7 のパッケージ: 2:libogg-devel-1.3.0-7.el7.x86_64 --> 依存性の処理をしています: libogg.so.0()(64bit) のパッケージ: 2:libogg-devel-1.3.0-7.el7.x86_64 ---> パッケージ libopencore-amrnb0.x86_64 0:0.1.3-1.el7 を インストール ---> パッケージ libopencore-amrwb0.x86_64 0:0.1.3-1.el7 を インストール ---> パッケージ libraw1394.x86_64 0:2.1.0-2.el7 を インストール ---> パッケージ librtmp0.x86_64 0:2.3-1.el7 を インストール ---> パッケージ libtheora.x86_64 1:1.1.1-8.el7 を インストール ---> パッケージ libva1.x86_64 0:1.3.1-11.el7 を インストール ---> パッケージ libvorbis.x86_64 1:1.3.3-8.el7 を インストール ---> パッケージ libvpx.x86_64 0:1.3.0-5.el7_0 を インストール ---> パッケージ libx264_142.x86_64 0:0.142-20_20140406.2245.el7 を インストール ---> パッケージ libxavs1.x86_64 0:0.1.51-2.el7 を インストール ---> パッケージ libxcb.x86_64 0:1.11-4.el7 を インストール --> 依存性の処理をしています: libXau.so.6()(64bit) のパッケージ: libxcb-1.11-4.el7.x86_64 ---> パッケージ libxcb-devel.x86_64 0:1.11-4.el7 を インストール --> 依存性の処理をしています: pkgconfig(xau) >= 0.99.2 のパッケージ: libxcb-devel-1.11-4.el7.x86_64 ---> パッケージ libxvidcore4.x86_64 0:1.3.2-15.el7 を インストール ---> パッケージ openjpeg-libs.x86_64 0:1.5.1-10.el7 を インストール ---> パッケージ speex.x86_64 0:1.2-0.19.rc1.el7 を インストール ---> パッケージ xorg-x11-proto-devel.noarch 0:7.7-12.el7 を インストール --> トランザクションの確認を実行しています。 ---> パッケージ libXau.x86_64 0:1.0.8-2.1.el7 を インストール ---> パッケージ libXau-devel.x86_64 0:1.0.8-2.1.el7 を インストール ---> パッケージ libogg.x86_64 2:1.3.0-7.el7 を インストール ---> パッケージ libusbx.x86_64 0:1.0.15-4.el7 を インストール --> 依存性解決を終了しました。 依存性を解決しました ================================================================================ Package アーキテクチャー バージョン リポジトリー 容量 ================================================================================ インストール中: ffmpeg x86_64 2.2.1-65.el7 atrpms 1.6 M ffmpeg-devel x86_64 2.2.1-65.el7 atrpms 5.4 M 依存性関連でのインストールをします: SDL x86_64 1.2.15-14.el7 base 204 k a52dec-devel x86_64 0.7.4-7.0.1.el7 atrpms 31 k faad2-devel x86_64 1:2.7-18.el7 atrpms 219 k gsm x86_64 1.0.13-11.el7 base 30 k gsm-devel x86_64 1.0.13-11.el7 base 14 k lame-devel x86_64 3.99.3-23.el7 atrpms 24 k libX11 x86_64 1.6.3-2.el7 base 605 k libX11-common noarch 1.6.3-2.el7 base 162 k libX11-devel x86_64 1.6.3-2.el7 base 980 k libXau x86_64 1.0.8-2.1.el7 base 29 k libXau-devel x86_64 1.0.8-2.1.el7 base 14 k libXext x86_64 1.3.3-3.el7 base 39 k libXext-devel x86_64 1.3.3-3.el7 base 75 k libXfixes x86_64 5.0.1-2.1.el7 base 18 k liba52_0 x86_64 0.7.4-7.0.1.el7 atrpms 27 k libavcodec55 x86_64 2.2.1-65.el7 atrpms 3.3 M libavdevice55 x86_64 2.2.1-65.el7 atrpms 38 k libavfilter4 x86_64 2.2.1-65.el7 atrpms 346 k libavformat55 x86_64 2.2.1-65.el7 atrpms 677 k libavutil52 x86_64 2.2.1-65.el7 atrpms 118 k libdc1394 x86_64 2.2.2-3.el7 epel 121 k libdc1394-devel x86_64 2.2.2-3.el7 epel 53 k libfaad2 x86_64 1:2.7-18.el7 atrpms 142 k libmp3lame0 x86_64 3.99.3-23.el7 atrpms 131 k libogg x86_64 2:1.3.0-7.el7 base 24 k libogg-devel x86_64 2:1.3.0-7.el7 base 13 k libopencore-amrnb0 x86_64 0.1.3-1.el7 atrpms 93 k libopencore-amrwb0 x86_64 0.1.3-1.el7 atrpms 46 k libpostproc52 x86_64 2.2.1-65.el7 atrpms 44 k libraw1394 x86_64 2.1.0-2.el7 base 63 k libraw1394-devel x86_64 2.1.0-2.el7 base 39 k librtmp0 x86_64 2.3-1.el7 atrpms 42 k libswresample0 x86_64 2.2.1-65.el7 atrpms 41 k libswscale2 x86_64 2.2.1-65.el7 atrpms 114 k libtheora x86_64 1:1.1.1-8.el7 base 136 k libtheora-devel x86_64 1:1.1.1-8.el7 base 33 k libusbx x86_64 1.0.15-4.el7 base 50 k libva1 x86_64 1.3.1-11.el7 atrpms 37 k libvdpau x86_64 1.1-2.el7 base 32 k libvorbis x86_64 1:1.3.3-8.el7 base 204 k libvorbis-devel x86_64 1:1.3.3-8.el7 base 21 k libvpx x86_64 1.3.0-5.el7_0 base 498 k libx264_142 x86_64 0.142-20_20140406.2245.el7 atrpms 372 k libxavs1 x86_64 0.1.51-2.el7 atrpms 131 k libxcb x86_64 1.11-4.el7 base 189 k libxcb-devel x86_64 1.11-4.el7 base 1.1 M libxvidcore4 x86_64 1.3.2-15.el7 atrpms 178 k openjpeg-libs x86_64 1.5.1-10.el7 base 85 k speex x86_64 1.2-0.19.rc1.el7 base 98 k x264-devel x86_64 0.142-20_20140406.2245.el7 atrpms 19 k xorg-x11-proto-devel noarch 7.7-12.el7 base 281 k xvidcore-devel x86_64 1.3.2-15.el7 atrpms 203 k zlib-devel x86_64 1.2.7-15.el7 base 50 k トランザクションの要約 ================================================================================ インストール 2 パッケージ (+53 個の依存関係のパッケージ) 総ダウンロード容量: 19 M インストール容量: 60 M Downloading packages: (1/55): SDL-1.2.15-14.el7.x86_64.rpm | 204 kB 00:00 warning: /var/cache/yum/x86_64/7/atrpms/packages/a52dec-devel-0.7.4-7.0.1.el7.x86_64.rpm: Header V4 DSA/SHA1 Signature, key ID 66534c2b: NOKEY a52dec-devel-0.7.4-7.0.1.el7.x86_64.rpm の公開鍵がインストールされていません (2/55): a52dec-devel-0.7.4-7.0.1.el7.x86_64.rpm | 31 kB 00:01 (3/55): faad2-devel-2.7-18.el7.x86_64.rpm | 219 kB 00:02 (4/55): gsm-1.0.13-11.el7.x86_64.rpm | 30 kB 00:00 (5/55): gsm-devel-1.0.13-11.el7.x86_64.rpm | 14 kB 00:00 (6/55): ffmpeg-2.2.1-65.el7.x86_64.rpm | 1.6 MB 00:06 (7/55): libX11-common-1.6.3-2.el7.noarch.rpm | 162 kB 00:00 (8/55): libXau-1.0.8-2.1.el7.x86_64.rpm | 29 kB 00:00 (9/55): libX11-1.6.3-2.el7.x86_64.rpm | 605 kB 00:00 (10/55): libXau-devel-1.0.8-2.1.el7.x86_64.rpm | 14 kB 00:00 (11/55): libXext-1.3.3-3.el7.x86_64.rpm | 39 kB 00:00 (12/55): libXfixes-5.0.1-2.1.el7.x86_64.rpm | 18 kB 00:00 (13/55): libXext-devel-1.3.3-3.el7.x86_64.rpm | 75 kB 00:00 (14/55): lame-devel-3.99.3-23.el7.x86_64.rpm | 24 kB 00:00 (15/55): liba52_0-0.7.4-7.0.1.el7.x86_64.rpm | 27 kB 00:00 (16/55): libX11-devel-1.6.3-2.el7.x86_64.rpm | 980 kB 00:00 (17/55): libavcodec55-2.2.1-65.el7.x86_64.rpm | 3.3 MB 00:13 (18/55): libavdevice55-2.2.1-65.el7.x86_64.rpm | 38 kB 00:00 (19/55): ffmpeg-devel-2.2.1-65.el7.x86_64.rpm | 5.4 MB 00:22 (20/55): libavfilter4-2.2.1-65.el7.x86_64.rpm | 346 kB 00:02 warning: /var/cache/yum/x86_64/7/epel/packages/libdc1394-2.2.2-3.el7.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID 352c64e5: NOKEY libdc1394-2.2.2-3.el7.x86_64.rpm の公開鍵がインストールされていません (21/55): libdc1394-2.2.2-3.el7.x86_64.rpm | 121 kB 00:00 (22/55): libdc1394-devel-2.2.2-3.el7.x86_64.rpm | 53 kB 00:00 (23/55): libavutil52-2.2.1-65.el7.x86_64.rpm | 118 kB 00:01 (24/55): libavformat55-2.2.1-65.el7.x86_64.rpm | 677 kB 00:02 (25/55): libogg-1.3.0-7.el7.x86_64.rpm | 24 kB 00:00 (26/55): libogg-devel-1.3.0-7.el7.x86_64.rpm | 13 kB 00:00 (27/55): libfaad2-2.7-18.el7.x86_64.rpm | 142 kB 00:01 (28/55): libmp3lame0-3.99.3-23.el7.x86_64.rpm | 131 kB 00:00 (29/55): libopencore-amrnb0-0.1.3-1.el7.x86_64.rpm | 93 kB 00:00 (30/55): libraw1394-2.1.0-2.el7.x86_64.rpm | 63 kB 00:00 (31/55): libopencore-amrwb0-0.1.3-1.el7.x86_64.rpm | 46 kB 00:00 (32/55): libraw1394-devel-2.1.0-2.el7.x86_64.rpm | 39 kB 00:00 (33/55): librtmp0-2.3-1.el7.x86_64.rpm | 42 kB 00:00 (34/55): libpostproc52-2.2.1-65.el7.x86_64.rpm | 44 kB 00:00 (35/55): libtheora-1.1.1-8.el7.x86_64.rpm | 136 kB 00:00 (36/55): libswresample0-2.2.1-65.el7.x86_64.rpm | 41 kB 00:00 (37/55): libvdpau-1.1-2.el7.x86_64.rpm | 32 kB 00:00 (38/55): libtheora-devel-1.1.1-8.el7.x86_64.rpm | 33 kB 00:00 (39/55): libusbx-1.0.15-4.el7.x86_64.rpm | 50 kB 00:00 (40/55): libvorbis-1.3.3-8.el7.x86_64.rpm | 204 kB 00:00 (41/55): libvorbis-devel-1.3.3-8.el7.x86_64.rpm | 21 kB 00:00 (42/55): libvpx-1.3.0-5.el7_0.x86_64.rpm | 498 kB 00:00 (43/55): libva1-1.3.1-11.el7.x86_64.rpm | 37 kB 00:00 (44/55): libswscale2-2.2.1-65.el7.x86_64.rpm | 114 kB 00:01 (45/55): libxcb-1.11-4.el7.x86_64.rpm | 189 kB 00:00 (46/55): libxcb-devel-1.11-4.el7.x86_64.rpm | 1.1 MB 00:00 (47/55): libxavs1-0.1.51-2.el7.x86_64.rpm | 131 kB 00:01 (48/55): openjpeg-libs-1.5.1-10.el7.x86_64.rpm | 85 kB 00:00 (49/55): speex-1.2-0.19.rc1.el7.x86_64.rpm | 98 kB 00:00 (50/55): libx264_142-0.142-20_20140406.2245.el7.x86_64.rpm | 372 kB 00:02 (51/55): xorg-x11-proto-devel-7.7-12.el7.noarch.rpm | 281 kB 00:00 (52/55): x264-devel-0.142-20_20140406.2245.el7.x86_64.rpm | 19 kB 00:00 (53/55): zlib-devel-1.2.7-15.el7.x86_64.rpm | 50 kB 00:00 (54/55): libxvidcore4-1.3.2-15.el7.x86_64.rpm | 178 kB 00:01 (55/55): xvidcore-devel-1.3.2-15.el7.x86_64.rpm | 203 kB 00:01 -------------------------------------------------------------------------------- 合計 569 kB/s | 19 MB 00:33 file:///etc/pki/rpm-gpg/RPM-GPG-KEY-atrpms から鍵を取得中です。 Importing GPG key 0x66534C2B: Userid : "ATrpms.net (rpm signing key) <Axel.Thimm@ATrpms.net>" Fingerprint: 7d6a 4524 1d82 5ec2 fde5 9651 508c e5e6 6653 4c2b Package : atrpms-repo-7-7.el7.x86_64 (installed) From : /etc/pki/rpm-gpg/RPM-GPG-KEY-atrpms file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7 から鍵を取得中です。 Importing GPG key 0x352C64E5: Userid : "Fedora EPEL (7) <epel@fedoraproject.org>" Fingerprint: 91e9 7d7c 4a5e 96f1 7f3e 888f 6a2f aea2 352c 64e5 Package : epel-release-7-5.noarch (installed) From : /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7 Running transaction check Running transaction test Transaction test succeeded Running transaction 警告: RPMDB は yum 以外で変更されました。 インストール中 : libavutil52-2.2.1-65.el7.x86_64 1/55 インストール中 : libswscale2-2.2.1-65.el7.x86_64 2/55 インストール中 : libswresample0-2.2.1-65.el7.x86_64 3/55 インストール中 : libpostproc52-2.2.1-65.el7.x86_64 4/55 インストール中 : 2:libogg-1.3.0-7.el7.x86_64 5/55 インストール中 : xorg-x11-proto-devel-7.7-12.el7.noarch 6/55 インストール中 : 2:libogg-devel-1.3.0-7.el7.x86_64 7/55 インストール中 : 1:libtheora-1.1.1-8.el7.x86_64 8/55 インストール中 : 1:libvorbis-1.3.3-8.el7.x86_64 9/55 インストール中 : libraw1394-2.1.0-2.el7.x86_64 10/55 インストール中 : libraw1394-devel-2.1.0-2.el7.x86_64 11/55 インストール中 : libmp3lame0-3.99.3-23.el7.x86_64 12/55 インストール中 : gsm-1.0.13-11.el7.x86_64 13/55 インストール中 : libxvidcore4-1.3.2-15.el7.x86_64 14/55 インストール中 : SDL-1.2.15-14.el7.x86_64 15/55 インストール中 : libx264_142-0.142-20_20140406.2245.el7.x86_ 16/55 インストール中 : libXau-1.0.8-2.1.el7.x86_64 17/55 インストール中 : libxcb-1.11-4.el7.x86_64 18/55 インストール中 : libXau-devel-1.0.8-2.1.el7.x86_64 19/55 インストール中 : libxcb-devel-1.11-4.el7.x86_64 20/55 インストール中 : x264-devel-0.142-20_20140406.2245.el7.x86_6 21/55 インストール中 : xvidcore-devel-1.3.2-15.el7.x86_64 22/55 インストール中 : gsm-devel-1.0.13-11.el7.x86_64 23/55 インストール中 : lame-devel-3.99.3-23.el7.x86_64 24/55 インストール中 : 1:libvorbis-devel-1.3.3-8.el7.x86_64 25/55 インストール中 : 1:libtheora-devel-1.1.1-8.el7.x86_64 26/55 インストール中 : liba52_0-0.7.4-7.0.1.el7.x86_64 27/55 インストール中 : a52dec-devel-0.7.4-7.0.1.el7.x86_64 28/55 インストール中 : libvpx-1.3.0-5.el7_0.x86_64 29/55 インストール中 : libxavs1-0.1.51-2.el7.x86_64 30/55 インストール中 : librtmp0-2.3-1.el7.x86_64 31/55 インストール中 : openjpeg-libs-1.5.1-10.el7.x86_64 32/55 インストール中 : libopencore-amrwb0-0.1.3-1.el7.x86_64 33/55 インストール中 : libX11-common-1.6.3-2.el7.noarch 34/55 インストール中 : libX11-1.6.3-2.el7.x86_64 35/55 インストール中 : libXext-1.3.3-3.el7.x86_64 36/55 インストール中 : libX11-devel-1.6.3-2.el7.x86_64 37/55 インストール中 : libXext-devel-1.3.3-3.el7.x86_64 38/55 インストール中 : libvdpau-1.1-2.el7.x86_64 39/55 インストール中 : libXfixes-5.0.1-2.1.el7.x86_64 40/55 インストール中 : libva1-1.3.1-11.el7.x86_64 41/55 インストール中 : libopencore-amrnb0-0.1.3-1.el7.x86_64 42/55 インストール中 : zlib-devel-1.2.7-15.el7.x86_64 43/55 インストール中 : speex-1.2-0.19.rc1.el7.x86_64 44/55 インストール中 : libavcodec55-2.2.1-65.el7.x86_64 45/55 インストール中 : libavformat55-2.2.1-65.el7.x86_64 46/55 インストール中 : libavfilter4-2.2.1-65.el7.x86_64 47/55 インストール中 : 1:libfaad2-2.7-18.el7.x86_64 48/55 インストール中 : 1:faad2-devel-2.7-18.el7.x86_64 49/55 インストール中 : libusbx-1.0.15-4.el7.x86_64 50/55 インストール中 : libdc1394-2.2.2-3.el7.x86_64 51/55 インストール中 : libavdevice55-2.2.1-65.el7.x86_64 52/55 インストール中 : libdc1394-devel-2.2.2-3.el7.x86_64 53/55 インストール中 : ffmpeg-devel-2.2.1-65.el7.x86_64 54/55 インストール中 : ffmpeg-2.2.1-65.el7.x86_64 55/55 検証中 : libXext-1.3.3-3.el7.x86_64 1/55 検証中 : libXfixes-5.0.1-2.1.el7.x86_64 2/55 検証中 : libxcb-devel-1.11-4.el7.x86_64 3/55 検証中 : lame-devel-3.99.3-23.el7.x86_64 4/55 検証中 : libXau-1.0.8-2.1.el7.x86_64 5/55 検証中 : libx264_142-0.142-20_20140406.2245.el7.x86_ 6/55 検証中 : ffmpeg-2.2.1-65.el7.x86_64 7/55 検証中 : libusbx-1.0.15-4.el7.x86_64 8/55 検証中 : 1:libtheora-devel-1.1.1-8.el7.x86_64 9/55 検証中 : xorg-x11-proto-devel-7.7-12.el7.noarch 10/55 検証中 : libdc1394-2.2.2-3.el7.x86_64 11/55 検証中 : 1:libfaad2-2.7-18.el7.x86_64 12/55 検証中 : 2:libogg-devel-1.3.0-7.el7.x86_64 13/55 検証中 : speex-1.2-0.19.rc1.el7.x86_64 14/55 検証中 : zlib-devel-1.2.7-15.el7.x86_64 15/55 検証中 : 1:faad2-devel-2.7-18.el7.x86_64 16/55 検証中 : 1:libvorbis-devel-1.3.3-8.el7.x86_64 17/55 検証中 : libX11-1.6.3-2.el7.x86_64 18/55 検証中 : libopencore-amrnb0-0.1.3-1.el7.x86_64 19/55 検証中 : libXau-devel-1.0.8-2.1.el7.x86_64 20/55 検証中 : SDL-1.2.15-14.el7.x86_64 21/55 検証中 : libva1-1.3.1-11.el7.x86_64 22/55 検証中 : libavutil52-2.2.1-65.el7.x86_64 23/55 検証中 : libxvidcore4-1.3.2-15.el7.x86_64 24/55 検証中 : 1:libtheora-1.1.1-8.el7.x86_64 25/55 検証中 : libX11-common-1.6.3-2.el7.noarch 26/55 検証中 : libavfilter4-2.2.1-65.el7.x86_64 27/55 検証中 : libavformat55-2.2.1-65.el7.x86_64 28/55 検証中 : gsm-devel-1.0.13-11.el7.x86_64 29/55 検証中 : libopencore-amrwb0-0.1.3-1.el7.x86_64 30/55 検証中 : gsm-1.0.13-11.el7.x86_64 31/55 検証中 : 2:libogg-1.3.0-7.el7.x86_64 32/55 検証中 : xvidcore-devel-1.3.2-15.el7.x86_64 33/55 検証中 : openjpeg-libs-1.5.1-10.el7.x86_64 34/55 検証中 : 1:libvorbis-1.3.3-8.el7.x86_64 35/55 検証中 : libswscale2-2.2.1-65.el7.x86_64 36/55 検証中 : librtmp0-2.3-1.el7.x86_64 37/55 検証中 : libswresample0-2.2.1-65.el7.x86_64 38/55 検証中 : libmp3lame0-3.99.3-23.el7.x86_64 39/55 検証中 : libpostproc52-2.2.1-65.el7.x86_64 40/55 検証中 : libvdpau-1.1-2.el7.x86_64 41/55 検証中 : a52dec-devel-0.7.4-7.0.1.el7.x86_64 42/55 検証中 : ffmpeg-devel-2.2.1-65.el7.x86_64 43/55 検証中 : x264-devel-0.142-20_20140406.2245.el7.x86_6 44/55 検証中 : libavcodec55-2.2.1-65.el7.x86_64 45/55 検証中 : libxcb-1.11-4.el7.x86_64 46/55 検証中 : libxavs1-0.1.51-2.el7.x86_64 47/55 検証中 : libXext-devel-1.3.3-3.el7.x86_64 48/55 検証中 : libavdevice55-2.2.1-65.el7.x86_64 49/55 検証中 : libraw1394-devel-2.1.0-2.el7.x86_64 50/55 検証中 : libraw1394-2.1.0-2.el7.x86_64 51/55 検証中 : libvpx-1.3.0-5.el7_0.x86_64 52/55 検証中 : libdc1394-devel-2.2.2-3.el7.x86_64 53/55 検証中 : liba52_0-0.7.4-7.0.1.el7.x86_64 54/55 検証中 : libX11-devel-1.6.3-2.el7.x86_64 55/55 インストール: ffmpeg.x86_64 0:2.2.1-65.el7 ffmpeg-devel.x86_64 0:2.2.1-65.el7 依存性関連をインストールしました: SDL.x86_64 0:1.2.15-14.el7 a52dec-devel.x86_64 0:0.7.4-7.0.1.el7 faad2-devel.x86_64 1:2.7-18.el7 gsm.x86_64 0:1.0.13-11.el7 gsm-devel.x86_64 0:1.0.13-11.el7 lame-devel.x86_64 0:3.99.3-23.el7 libX11.x86_64 0:1.6.3-2.el7 libX11-common.noarch 0:1.6.3-2.el7 libX11-devel.x86_64 0:1.6.3-2.el7 libXau.x86_64 0:1.0.8-2.1.el7 libXau-devel.x86_64 0:1.0.8-2.1.el7 libXext.x86_64 0:1.3.3-3.el7 libXext-devel.x86_64 0:1.3.3-3.el7 libXfixes.x86_64 0:5.0.1-2.1.el7 liba52_0.x86_64 0:0.7.4-7.0.1.el7 libavcodec55.x86_64 0:2.2.1-65.el7 libavdevice55.x86_64 0:2.2.1-65.el7 libavfilter4.x86_64 0:2.2.1-65.el7 libavformat55.x86_64 0:2.2.1-65.el7 libavutil52.x86_64 0:2.2.1-65.el7 libdc1394.x86_64 0:2.2.2-3.el7 libdc1394-devel.x86_64 0:2.2.2-3.el7 libfaad2.x86_64 1:2.7-18.el7 libmp3lame0.x86_64 0:3.99.3-23.el7 libogg.x86_64 2:1.3.0-7.el7 libogg-devel.x86_64 2:1.3.0-7.el7 libopencore-amrnb0.x86_64 0:0.1.3-1.el7 libopencore-amrwb0.x86_64 0:0.1.3-1.el7 libpostproc52.x86_64 0:2.2.1-65.el7 libraw1394.x86_64 0:2.1.0-2.el7 libraw1394-devel.x86_64 0:2.1.0-2.el7 librtmp0.x86_64 0:2.3-1.el7 libswresample0.x86_64 0:2.2.1-65.el7 libswscale2.x86_64 0:2.2.1-65.el7 libtheora.x86_64 1:1.1.1-8.el7 libtheora-devel.x86_64 1:1.1.1-8.el7 libusbx.x86_64 0:1.0.15-4.el7 libva1.x86_64 0:1.3.1-11.el7 libvdpau.x86_64 0:1.1-2.el7 libvorbis.x86_64 1:1.3.3-8.el7 libvorbis-devel.x86_64 1:1.3.3-8.el7 libvpx.x86_64 0:1.3.0-5.el7_0 libx264_142.x86_64 0:0.142-20_20140406.2245.el7 libxavs1.x86_64 0:0.1.51-2.el7 libxcb.x86_64 0:1.11-4.el7 libxcb-devel.x86_64 0:1.11-4.el7 libxvidcore4.x86_64 0:1.3.2-15.el7 openjpeg-libs.x86_64 0:1.5.1-10.el7 speex.x86_64 0:1.2-0.19.rc1.el7 x264-devel.x86_64 0:0.142-20_20140406.2245.el7 xorg-x11-proto-devel.noarch 0:7.7-12.el7 xvidcore-devel.x86_64 0:1.3.2-15.el7 zlib-devel.x86_64 0:1.2.7-15.el7 完了しました! |
取り敢えずインストールできましたが、そのうち無くなるだろうな。
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 |
[root@host01 ~]# ffmpeg -h ffmpeg version 2.2.1 Copyright (c) 2000-2014 the FFmpeg developers built on Jun 17 2014 01:25:46 with gcc 4.8.2 (GCC) 20140120 (Red Hat 4.8.2-16) configuration: --prefix=/usr --libdir=/usr/lib64 --shlibdir=/usr/lib64 --mandir=/usr/share/man --enable-shared --enable-runtime-cpudetect --enable-gpl --enable-version3 --enable-postproc --enable-avfilter --enable-pthreads --enable-x11grab --enable-vdpau --disable-avisynth --enable-frei0r --enable-libdc1394 --enable-libgsm --enable-libmp3lame --enable-libnut --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-librtmp --enable-libspeex --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libxavs --enable-libxvid --extra-cflags='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -fPIC' --disable-stripping libavutil 52. 66.100 / 52. 66.100 libavcodec 55. 52.102 / 55. 52.102 libavformat 55. 33.100 / 55. 33.100 libavdevice 55. 10.100 / 55. 10.100 libavfilter 4. 2.100 / 4. 2.100 libswscale 2. 5.102 / 2. 5.102 libswresample 0. 18.100 / 0. 18.100 libpostproc 52. 3.100 / 52. 3.100 Hyper fast Audio and Video encoder usage: ffmpeg [options] [[infile options] -i infile]... {[outfile options] outfile}... Getting help: -h -- print basic options -h long -- print more options -h full -- print all options (including all format and codec specific options, very long) See man ffmpeg for detailed description of the options. Print help / information / capabilities: -L show license -h topic show help -? topic show help -help topic show help --help topic show help -version show version -buildconf show build configuration -formats show available formats -codecs show available codecs -decoders show available decoders -encoders show available encoders -bsfs show available bit stream filters -protocols show available protocols -filters show available filters -pix_fmts show available pixel formats -layouts show standard channel layouts -sample_fmts show available audio sample formats -colors show available color names Global options (affect whole program instead of just one file: -loglevel loglevel set logging level -v loglevel set logging level -report generate a report -max_alloc bytes set maximum size of a single allocated block -y overwrite output files -n never overwrite output files -stats print progress report during encoding -max_error_rate ratio of errors (0.0: no errors, 1.0: 100% error maximum error rate -bits_per_raw_sample number set the number of bits per raw sample -vol volume change audio volume (256=normal) Per-file main options: -f fmt force format -c codec codec name -codec codec codec name -pre preset preset name -map_metadata outfile[,metadata]:infile[,metadata] set metadata information of outfile from infile -t duration record or transcode "duration" seconds of audio/video -to time_stop record or transcode stop time -fs limit_size set the limit file size in bytes -ss time_off set the start time offset -timestamp time set the recording timestamp ('now' to set the current time) -metadata string=string add metadata -target type specify target file type ("vcd", "svcd", "dvd", "dv", "dv50", "pal-vcd", "ntsc-svcd", ...) -apad audio pad -frames number set the number of frames to record -filter filter_graph set stream filtergraph -filter_script filename read stream filtergraph description from a file -reinit_filter reinit filtergraph on input parameter changes Video options: -vframes number set the number of video frames to record -r rate set frame rate (Hz value, fraction or abbreviation) -s size set frame size (WxH or abbreviation) -aspect aspect set aspect ratio (4:3, 16:9 or 1.3333, 1.7777) -bits_per_raw_sample number set the number of bits per raw sample -vn disable video -vcodec codec force video codec ('copy' to copy stream) -timecode hh:mm:ss[:;.]ff set initial TimeCode value. -pass n select the pass number (1 to 3) -vf filter_graph set video filters -b bitrate video bitrate (please use -b:v) -dn disable data Audio options: -aframes number set the number of audio frames to record -aq quality set audio quality (codec-specific) -ar rate set audio sampling rate (in Hz) -ac channels set number of audio channels -an disable audio -acodec codec force audio codec ('copy' to copy stream) -vol volume change audio volume (256=normal) -af filter_graph set audio filters Subtitle options: -s size set frame size (WxH or abbreviation) -sn disable subtitle -scodec codec force subtitle codec ('copy' to copy stream) -stag fourcc/tag force subtitle tag/fourcc -fix_sub_duration fix subtitles duration -canvas_size size set canvas size (WxH or abbreviation) -spre preset set the subtitle options to the indicated preset |