以前、CentOS 7にatrpms repositoryを利用してffmpegをインストールしましたが、今回はCentOS 6.7(64bit)にインストールしてみました。
本家はすでに保守を止めたようなので残っていたミラーサイトを利用します。
ATrpms
http://atrpms.net/
UK Mirror Service
https://www.mirrorservice.org/sites/dl.atrpms.net/el6.7-x86_64/atrpms/stable/
- epel repository
- atrpms repository
- atrpms.repoの修正
- install ffmpeg ffmpeg-devel
- ffmpeg -h
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 |
[root@host01 ~]# yum -y install epel-release 読み込んだプラグイン:fastestmirror インストール処理の設定をしています Loading mirror speeds from cached hostfile * base: ftp.nara.wide.ad.jp * extras: ftp.nara.wide.ad.jp * updates: ftp.nara.wide.ad.jp base | 3.7 kB 00:00 extras | 3.4 kB 00:00 updates | 3.4 kB 00:00 updates/primary_db | 3.3 MB 00:00 依存性の解決をしています --> トランザクションの確認を実行しています。 ---> Package epel-release.noarch 0:6-8 will be インストール --> 依存性解決を終了しました。 依存性を解決しました ================================================================================ パッケージ アーキテクチャ バージョン リポジトリー 容量 ================================================================================ インストールしています: epel-release noarch 6-8 extras 14 k トランザクションの要約 ================================================================================ インストール 1 パッケージ 総ダウンロード容量: 14 k インストール済み容量: 22 k パッケージをダウンロードしています: epel-release-6-8.noarch.rpm | 14 kB 00:00 rpm_check_debug を実行しています トランザクションのテストを実行しています トランザクションのテストを成功しました トランザクションを実行しています インストールしています : epel-release-6-8.noarch 1/1 Verifying : epel-release-6-8.noarch 1/1 インストール: epel-release.noarch 0:6-8 完了しました! |
1 2 3 4 5 |
[root@host01 ~]# rpm -ivh https://www.mirrorservice.org/sites/dl.atrpms.net/el6.7-x86_64/atrpms/stable/atrpms-repo-6-7.el6.x86_64.rpm https://www.mirrorservice.org/sites/dl.atrpms.net/el6.7-x86_64/atrpms/stable/atrpms-repo-6-7.el6.x86_64.rpm を取得中 警告: /var/tmp/rpm-tmp.6VgQmJ: ヘッダ V4 DSA/SHA1 Signature, key ID 66534c2b: NOKEY 準備中... ########################################### [100%] 1:atrpms-repo ########################################### [100%] |
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 |
[root@host01 ~]# vi /etc/yum.repos.d/atrpms.repo [root@host01 ~]# cat /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 [atrpms-debuginfo] name=Red Hat Enterprise Linux $releasever - $basearch - ATrpms - Debug failovermethod=priority baseurl=http://dl.atrpms.net/debug/el$releasever-$basearch/atrpms/stable enabled=0 gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-atrpms [atrpms-source] name=Red Hat Enterprise Linux $releasever - $basearch - ATrpms - Source failovermethod=priority baseurl=http://dl.atrpms.net/src/el$releasever-$basearch/atrpms/stable enabled=0 gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-atrpms |
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 |
[root@host01 ~]# yum install ffmpeg ffmpeg-devel 読み込んだプラグイン:fastestmirror インストール処理の設定をしています Loading mirror speeds from cached hostfile epel/metalink | 5.4 kB 00:00 * base: ftp.nara.wide.ad.jp * epel: ftp.kddilabs.jp * extras: ftp.nara.wide.ad.jp * updates: ftp.nara.wide.ad.jp atrpms | 3.0 kB 00:00 atrpms/primary_db | 1.7 MB 00:22 epel | 4.3 kB 00:00 epel/primary_db | 5.8 MB 00:00 依存性の解決をしています --> トランザクションの確認を実行しています。 ---> Package ffmpeg.x86_64 0:2.2.1-65.el6 will be インストール --> 依存性の処理をしています: libavformat55 = 2.2.1-65.el6 のパッケージ: ffmpeg-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libavcodec55 = 2.2.1-65.el6 のパッケージ: ffmpeg-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libavutil52 = 2.2.1-65.el6 のパッケージ: ffmpeg-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libavdevice55 = 2.2.1-65.el6 のパッケージ: ffmpeg-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libswscale2 = 2.2.1-65.el6 のパッケージ: ffmpeg-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libpostproc52 = 2.2.1-65.el6 のパッケージ: ffmpeg-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libavfilter4 = 2.2.1-65.el6 のパッケージ: ffmpeg-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libswresample0 = 2.2.1-65.el6 のパッケージ: ffmpeg-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libavformat.so.55(LIBAVFORMAT_55)(64bit) のパッケ ージ: ffmpeg-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libavdevice.so.55(LIBAVDEVICE_55)(64bit) のパッケ ージ: ffmpeg-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libavfilter.so.4(LIBAVFILTER_4)(64bit) のパッケー ジ: ffmpeg-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libpostproc.so.52(LIBPOSTPROC_52)(64bit) のパッケ ージ: ffmpeg-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libswscale.so.2(LIBSWSCALE_2)(64bit) のパッケージ: ffmpeg-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libavutil.so.52(LIBAVUTIL_52)(64bit) のパッケージ: ffmpeg-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libswresample.so.0(LIBSWRESAMPLE_0)(64bit) のパッ ケージ: ffmpeg-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libavcodec.so.55(LIBAVCODEC_55)(64bit) のパッケー ジ: ffmpeg-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libavformat.so.55()(64bit) のパッケージ: ffmpeg-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libvdpau.so.1()(64bit) のパッケージ: ffmpeg-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libswresample.so.0()(64bit) のパッケージ: ffmpeg-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libavutil.so.52()(64bit) のパッケージ: ffmpeg-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libpostproc.so.52()(64bit) のパッケージ: ffmpeg-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libavdevice.so.55()(64bit) のパッケージ: ffmpeg-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libavfilter.so.4()(64bit) のパッケージ: ffmpeg-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libSDL-1.2.so.0()(64bit) のパッケージ: ffmpeg-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libavcodec.so.55()(64bit) のパッケージ: ffmpeg-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libswscale.so.2()(64bit) のパッケージ: ffmpeg-2.2.1-65.el6.x86_64 ---> Package ffmpeg-devel.x86_64 0:2.2.1-65.el6 will be インストール --> 依存性の処理をしています: libdc1394-devel のパッケージ: ffmpeg-devel-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: lame-devel のパッケージ: ffmpeg-devel-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: faad2-devel のパッケージ: ffmpeg-devel-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: x264-devel のパッケージ: ffmpeg-devel-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libvorbis-devel のパッケージ: ffmpeg-devel-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: xvidcore-devel のパッケージ: ffmpeg-devel-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libraw1394-devel のパッケージ: ffmpeg-devel-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libtheora-devel のパッケージ: ffmpeg-devel-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: a52dec-devel のパッケージ: ffmpeg-devel-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: gsm-devel のパッケージ: ffmpeg-devel-2.2.1-65.el6.x86_64 --> トランザクションの確認を実行しています。 ---> Package SDL.x86_64 0:1.2.14-7.el6_7.1 will be インストール ---> Package a52dec-devel.x86_64 0:0.7.4-7.0.1.el6 will be インストール --> 依存性の処理をしています: liba52_0 = 0.7.4 のパッケージ: a52dec-devel-0.7.4-7.0.1.el6.x86_64 --> 依存性の処理をしています: liba52.so.0()(64bit) のパッケージ: a52dec-devel-0.7.4-7.0.1.el6.x86_64 ---> Package faad2-devel.x86_64 1:2.7-18.el6 will be インストール --> 依存性の処理をしています: libfaad2 = 1:2.7-18.el6 のパッケージ: 1:faad2-devel-2.7-18.el6.x86_64 --> 依存性の処理をしています: libfaad.so.2()(64bit) のパッケージ: 1:faad2-devel-2.7-18.el6.x86_64 ---> Package gsm-devel.x86_64 0:1.0.13-4.el6 will be インストール --> 依存性の処理をしています: gsm = 1.0.13-4.el6 のパッケージ: gsm-devel-1.0.13-4.el6.x86_64 --> 依存性の処理をしています: libgsm.so.1()(64bit) のパッケージ: gsm-devel-1.0.13-4.el6.x86_64 ---> Package lame-devel.x86_64 0:3.99.3-23.el6 will be インストール --> 依存性の処理をしています: libmp3lame0 = 3.99.3-23.el6 のパッケージ: lame-devel-3.99.3-23.el6.x86_64 --> 依存性の処理をしています: libmp3lame.so.0()(64bit) のパッケージ: lame-devel-3.99.3-23.el6.x86_64 ---> Package libavcodec55.x86_64 0:2.2.1-65.el6 will be インストール --> 依存性の処理をしています: libspeex.so.1()(64bit) のパッケージ: libavcodec55-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libopencore-amrwb.so.0()(64bit) のパッケージ: libavcodec55-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libopencore-amrnb.so.0()(64bit) のパッケージ: libavcodec55-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libvpx.so.1()(64bit) のパッケージ: libavcodec55-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libx264.so.142()(64bit) のパッケージ: libavcodec55-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libva.so.1()(64bit) のパッケージ: libavcodec55-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libxvidcore.so.4()(64bit) のパッケージ: libavcodec55-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libopenjpeg.so.2()(64bit) のパッケージ: libavcodec55-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libxavs.so.1()(64bit) のパッケージ: libavcodec55-2.2.1-65.el6.x86_64 ---> Package libavdevice55.x86_64 0:2.2.1-65.el6 will be インストール --> 依存性の処理をしています: libdc1394.so.22()(64bit) のパッケージ: libavdevice55-2.2.1-65.el6.x86_64 ---> Package libavfilter4.x86_64 0:2.2.1-65.el6 will be インストール --> 依存性の処理をしています: libcv.so.2.0()(64bit) のパッケージ: libavfilter4-2.2.1-65.el6.x86_64 --> 依存性の処理をしています: libcxcore.so.2.0()(64bit) のパッケージ: libavfilter4-2.2.1-65.el6.x86_64 ---> Package libavformat55.x86_64 0:2.2.1-65.el6 will be インストール --> 依存性の処理をしています: librtmp.so.0()(64bit) のパッケージ: libavformat55-2.2.1-65.el6.x86_64 ---> Package libavutil52.x86_64 0:2.2.1-65.el6 will be インストール ---> Package libdc1394-devel.x86_64 0:2.1.2-3.4.el6 will be インストール ---> Package libpostproc52.x86_64 0:2.2.1-65.el6 will be インストール ---> Package libraw1394-devel.x86_64 0:2.0.4-1.el6 will be インストール --> 依存性の処理をしています: libraw1394 = 2.0.4-1.el6 のパッケージ: libraw1394-devel-2.0.4-1.el6.x86_64 --> 依存性の処理をしています: libraw1394.so.11()(64bit) のパッケージ: libraw1394-devel-2.0.4-1.el6.x86_64 ---> Package libswresample0.x86_64 0:2.2.1-65.el6 will be インストール ---> Package libswscale2.x86_64 0:2.2.1-65.el6 will be インストール ---> Package libtheora-devel.x86_64 1:1.1.0-2.el6 will be インストール --> 依存性の処理をしています: pkgconfig(ogg) >= 1.1 のパッケージ: 1:libtheora-devel-1.1.0-2.el6.x86_64 --> 依存性の処理をしています: libogg-devel >= 2:1.1 のパッケージ: 1:libtheora-devel-1.1.0-2.el6.x86_64 ---> Package libvdpau.x86_64 0:0.9-1.el6 will be インストール ---> Package libvorbis-devel.x86_64 1:1.2.3-4.el6_2.1 will be インストール ---> Package x264-devel.x86_64 0:0.142-20_20140406.2245.el6 will be インストール ---> Package xvidcore-devel.x86_64 0:1.3.2-15.el6 will be インストール --> トランザクションの確認を実行しています。 ---> Package gsm.x86_64 0:1.0.13-4.el6 will be インストール ---> Package liba52_0.x86_64 0:0.7.4-7.0.1.el6 will be インストール ---> Package libdc1394.x86_64 0:2.1.2-3.4.el6 will be インストール --> 依存性の処理をしています: libusb-1.0.so.0()(64bit) のパッケージ: libdc1394-2.1.2-3.4.el6.x86_64 ---> Package libfaad2.x86_64 1:2.7-18.el6 will be インストール ---> Package libmp3lame0.x86_64 0:3.99.3-23.el6 will be インストール ---> Package libogg-devel.x86_64 2:1.1.4-2.1.el6 will be インストール ---> Package libopencore-amrnb0.x86_64 0:0.1.3-1.el6 will be インストール ---> Package libopencore-amrwb0.x86_64 0:0.1.3-1.el6 will be インストール ---> Package libraw1394.x86_64 0:2.0.4-1.el6 will be インストール ---> Package librtmp0.x86_64 0:2.3-1.el6 will be インストール ---> Package libva1.x86_64 0:1.3.1-11.el6 will be インストール ---> Package libvpx.x86_64 0:1.3.0-5.el6_5 will be インストール ---> Package libx264_142.x86_64 0:0.142-20_20140406.2245.el6 will be インストー ル ---> Package libxavs1.x86_64 0:0.1.51-2.el6 will be インストール ---> Package libxvidcore4.x86_64 0:1.3.2-15.el6 will be インストール ---> Package opencv.x86_64 0:2.0.0-12.el6 will be インストール --> 依存性の処理をしています: libunicap.so.2()(64bit) のパッケージ: opencv-2.0.0-12.el6.x86_64 --> 依存性の処理をしています: libucil.so.2()(64bit) のパッケージ: opencv-2.0.0-12.el6.x86_64 ---> Package openjpeg-libs.x86_64 0:1.3-11.el6 will be インストール ---> Package speex.x86_64 0:1.2-0.12.rc1.1.el6 will be インストール --> トランザクションの確認を実行しています。 ---> Package libusb1.x86_64 0:1.0.9-0.6.rc1.el6 will be インストール ---> Package unicap.x86_64 0:0.9.5-7.el6 will be インストール --> 依存性の処理をしています: libv4l2.so.0()(64bit) のパッケージ: unicap-0.9.5-7.el6.x86_64 --> トランザクションの確認を実行しています。 ---> Package libv4l.x86_64 0:0.6.3-2.el6 will be インストール --> 依存性解決を終了しました。 依存性を解決しました ================================================================================ パッケージ アーキテクチャ バージョン リポジトリー 容量 ================================================================================ インストールしています: ffmpeg x86_64 2.2.1-65.el6 atrpms 2.6 M ffmpeg-devel x86_64 2.2.1-65.el6 atrpms 5.7 M 依存性関連でのインストールをします。: SDL x86_64 1.2.14-7.el6_7.1 updates 193 k a52dec-devel x86_64 0.7.4-7.0.1.el6 atrpms 27 k faad2-devel x86_64 1:2.7-18.el6 atrpms 213 k gsm x86_64 1.0.13-4.el6 base 27 k gsm-devel x86_64 1.0.13-4.el6 base 14 k lame-devel x86_64 3.99.3-23.el6 atrpms 24 k liba52_0 x86_64 0.7.4-7.0.1.el6 atrpms 23 k libavcodec55 x86_64 2.2.1-65.el6 atrpms 3.5 M libavdevice55 x86_64 2.2.1-65.el6 atrpms 38 k libavfilter4 x86_64 2.2.1-65.el6 atrpms 365 k libavformat55 x86_64 2.2.1-65.el6 atrpms 674 k libavutil52 x86_64 2.2.1-65.el6 atrpms 115 k libdc1394 x86_64 2.1.2-3.4.el6 base 117 k libdc1394-devel x86_64 2.1.2-3.4.el6 base 50 k libfaad2 x86_64 1:2.7-18.el6 atrpms 141 k libmp3lame0 x86_64 3.99.3-23.el6 atrpms 129 k libogg-devel x86_64 2:1.1.4-2.1.el6 base 12 k libopencore-amrnb0 x86_64 0.1.3-1.el6 atrpms 91 k libopencore-amrwb0 x86_64 0.1.3-1.el6 atrpms 46 k libpostproc52 x86_64 2.2.1-65.el6 atrpms 74 k libraw1394 x86_64 2.0.4-1.el6 base 53 k libraw1394-devel x86_64 2.0.4-1.el6 base 37 k librtmp0 x86_64 2.3-1.el6 atrpms 43 k libswresample0 x86_64 2.2.1-65.el6 atrpms 42 k libswscale2 x86_64 2.2.1-65.el6 atrpms 120 k libtheora-devel x86_64 1:1.1.0-2.el6 base 33 k libusb1 x86_64 1.0.9-0.6.rc1.el6 base 80 k libv4l x86_64 0.6.3-2.el6 base 103 k libva1 x86_64 1.3.1-11.el6 atrpms 37 k libvdpau x86_64 0.9-1.el6 epel 29 k libvorbis-devel x86_64 1:1.2.3-4.el6_2.1 base 17 k libvpx x86_64 1.3.0-5.el6_5 base 486 k libx264_142 x86_64 0.142-20_20140406.2245.el6 atrpms 376 k libxavs1 x86_64 0.1.51-2.el6 atrpms 133 k libxvidcore4 x86_64 1.3.2-15.el6 atrpms 182 k opencv x86_64 2.0.0-12.el6 base 4.6 M openjpeg-libs x86_64 1.3-11.el6 base 60 k speex x86_64 1.2-0.12.rc1.1.el6 base 96 k unicap x86_64 0.9.5-7.el6 base 153 k x264-devel x86_64 0.142-20_20140406.2245.el6 atrpms 19 k xvidcore-devel x86_64 1.3.2-15.el6 atrpms 206 k トランザクションの要約 ================================================================================ インストール 43 パッケージ 総ダウンロード容量: 21 M インストール済み容量: 78 M これでいいですか? [y/N]y パッケージをダウンロードしています: (1/43): SDL-1.2.14-7.el6_7.1.x86_64.rpm | 193 kB 00:00 (2/43): a52dec-devel-0.7.4-7.0.1.el6.x86_64.rpm | 27 kB 00:00 (3/43): faad2-devel-2.7-18.el6.x86_64.rpm | 213 kB 00:02 (4/43): ffmpeg-2.2.1-65.el6.x86_64.rpm | 2.6 MB 00:19 (5/43): ffmpeg-devel-2.2.1-65.el6.x86_64.rpm | 5.7 MB 00:39 (6/43): gsm-1.0.13-4.el6.x86_64.rpm | 27 kB 00:00 (7/43): gsm-devel-1.0.13-4.el6.x86_64.rpm | 14 kB 00:00 (8/43): lame-devel-3.99.3-23.el6.x86_64.rpm | 24 kB 00:00 (9/43): liba52_0-0.7.4-7.0.1.el6.x86_64.rpm | 23 kB 00:00 (10/43): libavcodec55-2.2.1-65.el6.x86_64.rpm | 3.5 MB 00:22 (11/43): libavdevice55-2.2.1-65.el6.x86_64.rpm | 38 kB 00:00 (12/43): libavfilter4-2.2.1-65.el6.x86_64.rpm | 365 kB 00:03 (13/43): libavformat55-2.2.1-65.el6.x86_64.rpm | 674 kB 00:06 (14/43): libavutil52-2.2.1-65.el6.x86_64.rpm | 115 kB 00:01 (15/43): libdc1394-2.1.2-3.4.el6.x86_64.rpm | 117 kB 00:00 (16/43): libdc1394-devel-2.1.2-3.4.el6.x86_64.rpm | 50 kB 00:00 (17/43): libfaad2-2.7-18.el6.x86_64.rpm | 141 kB 00:01 (18/43): libmp3lame0-3.99.3-23.el6.x86_64.rpm | 129 kB 00:01 (19/43): libogg-devel-1.1.4-2.1.el6.x86_64.rpm | 12 kB 00:00 (20/43): libopencore-amrnb0-0.1.3-1.el6.x86_64.rpm | 91 kB 00:00 (21/43): libopencore-amrwb0-0.1.3-1.el6.x86_64.rpm | 46 kB 00:02 (22/43): libpostproc52-2.2.1-65.el6.x86_64.rpm | 74 kB 00:00 (23/43): libraw1394-2.0.4-1.el6.x86_64.rpm | 53 kB 00:00 (24/43): libraw1394-devel-2.0.4-1.el6.x86_64.rpm | 37 kB 00:00 (25/43): librtmp0-2.3-1.el6.x86_64.rpm | 43 kB 00:01 (26/43): libswresample0-2.2.1-65.el6.x86_64.rpm | 42 kB 00:00 (27/43): libswscale2-2.2.1-65.el6.x86_64.rpm | 120 kB 00:01 (28/43): libtheora-devel-1.1.0-2.el6.x86_64.rpm | 33 kB 00:00 (29/43): libusb1-1.0.9-0.6.rc1.el6.x86_64.rpm | 80 kB 00:00 (30/43): libv4l-0.6.3-2.el6.x86_64.rpm | 103 kB 00:00 (31/43): libva1-1.3.1-11.el6.x86_64.rpm | 37 kB 00:00 (32/43): libvdpau-0.9-1.el6.x86_64.rpm | 29 kB 00:00 (33/43): libvorbis-devel-1.2.3-4.el6_2.1.x86_64.rpm | 17 kB 00:00 (34/43): libvpx-1.3.0-5.el6_5.x86_64.rpm | 486 kB 00:00 (35/43): libx264_142-0.142-20_20140406.2245.el6.x86_64.r | 376 kB 00:04 (36/43): libxavs1-0.1.51-2.el6.x86_64.rpm | 133 kB 00:01 (37/43): libxvidcore4-1.3.2-15.el6.x86_64.rpm | 182 kB 00:02 (38/43): opencv-2.0.0-12.el6.x86_64.rpm | 4.6 MB 00:00 (39/43): openjpeg-libs-1.3-11.el6.x86_64.rpm | 60 kB 00:00 (40/43): speex-1.2-0.12.rc1.1.el6.x86_64.rpm | 96 kB 00:00 (41/43): unicap-0.9.5-7.el6.x86_64.rpm | 153 kB 00:00 (42/43): x264-devel-0.142-20_20140406.2245.el6.x86_64.rp | 19 kB 00:00 (43/43): xvidcore-devel-1.3.2-15.el6.x86_64.rpm | 206 kB 00:02 -------------------------------------------------------------------------------- 合計 165 kB/s | 21 MB 02:10 警告: rpmts_HdrFromFdno: ヘッダ V4 DSA/SHA1 Signature, key ID 66534c2b: NOKEY Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-atrpms Importing GPG key 0x66534C2B: Userid : ATrpms.net (rpm signing key) <Axel.Thimm@ATrpms.net> Package: atrpms-repo-6-7.el6.x86_64 (installed) From : /etc/pki/rpm-gpg/RPM-GPG-KEY-atrpms これでいいですか? [y/N]y warning: rpmts_HdrFromFdno: Header V3 RSA/SHA256 Signature, key ID 0608b895: NOKEY Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6 Importing GPG key 0x0608B895: Userid : EPEL (6) <epel@fedoraproject.org> Package: epel-release-6-8.noarch (@extras) From : /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6 これでいいですか? [y/N]y rpm_check_debug を実行しています トランザクションのテストを実行しています トランザクションのテストを成功しました トランザクションを実行しています 警告: RPMDB は yum 以外で変更されました。 インストールしています : libavutil52-2.2.1-65.el6.x86_64 1/43 インストールしています : libswscale2-2.2.1-65.el6.x86_64 2/43 インストールしています : libswresample0-2.2.1-65.el6.x86_64 3/43 インストールしています : libpostproc52-2.2.1-65.el6.x86_64 4/43 インストールしています : libraw1394-2.0.4-1.el6.x86_64 5/43 インストールしています : libraw1394-devel-2.0.4-1.el6.x86_64 6/43 インストールしています : SDL-1.2.14-7.el6_7.1.x86_64 7/43 インストールしています : gsm-1.0.13-4.el6.x86_64 8/43 インストールしています : libxvidcore4-1.3.2-15.el6.x86_64 9/43 インストールしています : libx264_142-0.142-20_20140406.2245.el6.x86_ 10/43 インストールしています : libmp3lame0-3.99.3-23.el6.x86_64 11/43 インストールしています : 2:libogg-devel-1.1.4-2.1.el6.x86_64 12/43 インストールしています : 1:libtheora-devel-1.1.0-2.el6.x86_64 13/43 インストールしています : 1:libvorbis-devel-1.2.3-4.el6_2.1.x86_64 14/43 インストールしています : lame-devel-3.99.3-23.el6.x86_64 15/43 インストールしています : x264-devel-0.142-20_20140406.2245.el6.x86_6 16/43 インストールしています : xvidcore-devel-1.3.2-15.el6.x86_64 17/43 インストールしています : gsm-devel-1.0.13-4.el6.x86_64 18/43 インストールしています : libva1-1.3.1-11.el6.x86_64 19/43 インストールしています : libopencore-amrnb0-0.1.3-1.el6.x86_64 20/43 インストールしています : libv4l-0.6.3-2.el6.x86_64 21/43 インストールしています : unicap-0.9.5-7.el6.x86_64 22/43 インストールしています : libopencore-amrwb0-0.1.3-1.el6.x86_64 23/43 インストールしています : 1:libfaad2-2.7-18.el6.x86_64 24/43 インストールしています : 1:faad2-devel-2.7-18.el6.x86_64 25/43 インストールしています : libxavs1-0.1.51-2.el6.x86_64 26/43 インストールしています : libvpx-1.3.0-5.el6_5.x86_64 27/43 インストールしています : liba52_0-0.7.4-7.0.1.el6.x86_64 28/43 インストールしています : a52dec-devel-0.7.4-7.0.1.el6.x86_64 29/43 インストールしています : openjpeg-libs-1.3-11.el6.x86_64 30/43 インストールしています : librtmp0-2.3-1.el6.x86_64 31/43 インストールしています : libvdpau-0.9-1.el6.x86_64 32/43 インストールしています : speex-1.2-0.12.rc1.1.el6.x86_64 33/43 インストールしています : libavcodec55-2.2.1-65.el6.x86_64 34/43 インストールしています : libavformat55-2.2.1-65.el6.x86_64 35/43 インストールしています : libusb1-1.0.9-0.6.rc1.el6.x86_64 36/43 インストールしています : libdc1394-2.1.2-3.4.el6.x86_64 37/43 インストールしています : opencv-2.0.0-12.el6.x86_64 38/43 インストールしています : libavfilter4-2.2.1-65.el6.x86_64 39/43 インストールしています : libavdevice55-2.2.1-65.el6.x86_64 40/43 インストールしています : ffmpeg-2.2.1-65.el6.x86_64 41/43 インストールしています : libdc1394-devel-2.1.2-3.4.el6.x86_64 42/43 インストールしています : ffmpeg-devel-2.2.1-65.el6.x86_64 43/43 Verifying : xvidcore-devel-1.3.2-15.el6.x86_64 1/43 Verifying : libusb1-1.0.9-0.6.rc1.el6.x86_64 2/43 Verifying : libavformat55-2.2.1-65.el6.x86_64 3/43 Verifying : speex-1.2-0.12.rc1.1.el6.x86_64 4/43 Verifying : libraw1394-devel-2.0.4-1.el6.x86_64 5/43 Verifying : 2:libogg-devel-1.1.4-2.1.el6.x86_64 6/43 Verifying : libvdpau-0.9-1.el6.x86_64 7/43 Verifying : libraw1394-2.0.4-1.el6.x86_64 8/43 Verifying : libmp3lame0-3.99.3-23.el6.x86_64 9/43 Verifying : x264-devel-0.142-20_20140406.2245.el6.x86_6 10/43 Verifying : a52dec-devel-0.7.4-7.0.1.el6.x86_64 11/43 Verifying : libswscale2-2.2.1-65.el6.x86_64 12/43 Verifying : 1:libtheora-devel-1.1.0-2.el6.x86_64 13/43 Verifying : libavdevice55-2.2.1-65.el6.x86_64 14/43 Verifying : libswresample0-2.2.1-65.el6.x86_64 15/43 Verifying : librtmp0-2.3-1.el6.x86_64 16/43 Verifying : ffmpeg-devel-2.2.1-65.el6.x86_64 17/43 Verifying : libavcodec55-2.2.1-65.el6.x86_64 18/43 Verifying : openjpeg-libs-1.3-11.el6.x86_64 19/43 Verifying : libdc1394-2.1.2-3.4.el6.x86_64 20/43 Verifying : liba52_0-0.7.4-7.0.1.el6.x86_64 21/43 Verifying : opencv-2.0.0-12.el6.x86_64 22/43 Verifying : ffmpeg-2.2.1-65.el6.x86_64 23/43 Verifying : libdc1394-devel-2.1.2-3.4.el6.x86_64 24/43 Verifying : libvpx-1.3.0-5.el6_5.x86_64 25/43 Verifying : lame-devel-3.99.3-23.el6.x86_64 26/43 Verifying : libpostproc52-2.2.1-65.el6.x86_64 27/43 Verifying : libx264_142-0.142-20_20140406.2245.el6.x86_ 28/43 Verifying : libxvidcore4-1.3.2-15.el6.x86_64 29/43 Verifying : 1:libvorbis-devel-1.2.3-4.el6_2.1.x86_64 30/43 Verifying : 1:faad2-devel-2.7-18.el6.x86_64 31/43 Verifying : libxavs1-0.1.51-2.el6.x86_64 32/43 Verifying : unicap-0.9.5-7.el6.x86_64 33/43 Verifying : gsm-devel-1.0.13-4.el6.x86_64 34/43 Verifying : 1:libfaad2-2.7-18.el6.x86_64 35/43 Verifying : libopencore-amrwb0-0.1.3-1.el6.x86_64 36/43 Verifying : gsm-1.0.13-4.el6.x86_64 37/43 Verifying : SDL-1.2.14-7.el6_7.1.x86_64 38/43 Verifying : libv4l-0.6.3-2.el6.x86_64 39/43 Verifying : libavutil52-2.2.1-65.el6.x86_64 40/43 Verifying : libopencore-amrnb0-0.1.3-1.el6.x86_64 41/43 Verifying : libva1-1.3.1-11.el6.x86_64 42/43 Verifying : libavfilter4-2.2.1-65.el6.x86_64 43/43 インストール: ffmpeg.x86_64 0:2.2.1-65.el6 ffmpeg-devel.x86_64 0:2.2.1-65.el6 依存性関連をインストールしました: SDL.x86_64 0:1.2.14-7.el6_7.1 a52dec-devel.x86_64 0:0.7.4-7.0.1.el6 faad2-devel.x86_64 1:2.7-18.el6 gsm.x86_64 0:1.0.13-4.el6 gsm-devel.x86_64 0:1.0.13-4.el6 lame-devel.x86_64 0:3.99.3-23.el6 liba52_0.x86_64 0:0.7.4-7.0.1.el6 libavcodec55.x86_64 0:2.2.1-65.el6 libavdevice55.x86_64 0:2.2.1-65.el6 libavfilter4.x86_64 0:2.2.1-65.el6 libavformat55.x86_64 0:2.2.1-65.el6 libavutil52.x86_64 0:2.2.1-65.el6 libdc1394.x86_64 0:2.1.2-3.4.el6 libdc1394-devel.x86_64 0:2.1.2-3.4.el6 libfaad2.x86_64 1:2.7-18.el6 libmp3lame0.x86_64 0:3.99.3-23.el6 libogg-devel.x86_64 2:1.1.4-2.1.el6 libopencore-amrnb0.x86_64 0:0.1.3-1.el6 libopencore-amrwb0.x86_64 0:0.1.3-1.el6 libpostproc52.x86_64 0:2.2.1-65.el6 libraw1394.x86_64 0:2.0.4-1.el6 libraw1394-devel.x86_64 0:2.0.4-1.el6 librtmp0.x86_64 0:2.3-1.el6 libswresample0.x86_64 0:2.2.1-65.el6 libswscale2.x86_64 0:2.2.1-65.el6 libtheora-devel.x86_64 1:1.1.0-2.el6 libusb1.x86_64 0:1.0.9-0.6.rc1.el6 libv4l.x86_64 0:0.6.3-2.el6 libva1.x86_64 0:1.3.1-11.el6 libvdpau.x86_64 0:0.9-1.el6 libvorbis-devel.x86_64 1:1.2.3-4.el6_2.1 libvpx.x86_64 0:1.3.0-5.el6_5 libx264_142.x86_64 0:0.142-20_20140406.2245.el6 libxavs1.x86_64 0:0.1.51-2.el6 libxvidcore4.x86_64 0:1.3.2-15.el6 opencv.x86_64 0:2.0.0-12.el6 openjpeg-libs.x86_64 0:1.3-11.el6 speex.x86_64 0:1.2-0.12.rc1.1.el6 unicap.x86_64 0:0.9.5-7.el6 x264-devel.x86_64 0:0.142-20_20140406.2245.el6 xvidcore-devel.x86_64 0:1.3.2-15.el6 完了しました! |
ffmpeg version 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 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 Apr 13 2014 13:00:18 with gcc 4.4.6 (GCC) 20120305 (Red Hat 4.4.6-4) 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-libopencv --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 --param=ssp-buffer-size=4 -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 |