12
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

CentOSにchefでffmpegパッケージをインストール

Posted at

動画関連の処理をするにはffmpegパッケージが便利ですが、
CentOSサーバーにてchefでインストールする必要があったので、
その時記述したレシピをメモしておきます。

Ubuntu用のcookbookはあったのですが、
CentOS用はありませんでした。

また、yumのデフォルトリポジトリにはffmpegパッケージが入っていなかったので、
リポジトリを追加する必要がありました。
ATrpmsというリポジトリにffmpegパッケージがあるそうです。

レシピに追加した記述は下記です。

# add GPG key for Atrpms repository
yum_key 'atrpms' do
  url 'http://atrpms.net/RPM-GPG-KEY.atrpms'
  action :add
end

# add Atrpms repository
yum_repository "atrpms" do
  name "atrpms"
  url "http://dl.atrpms.net/el$releasever-$basearch/atrpms/stable"
  enabled true
  key 'atrpms'
  action :add
end

# install ffmpeg package
package 'ffmpeg'
12
12
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
12
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?