Skip to content

Instantly share code, notes, and snippets.

@Ajido
Created June 25, 2014 14:49
Show Gist options
  • Save Ajido/1a9f92ec77e6611ed959 to your computer and use it in GitHub Desktop.
Save Ajido/1a9f92ec77e6611ed959 to your computer and use it in GitHub Desktop.
Install FFmpeg on Amazon Linux
yum_repository "atrpms" do
baseurl "http://dl.atrpms.net/el6.5-$basearch/atrpms/stable"
gpgkey "http://atrpms.net/RPM-GPG-KEY.atrpms"
enabled false
end
yum_repository "centos-base" do
baseurl "http://mirror.centos.org/centos/6.5/os/$basearch/"
gpgkey "http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-6"
enabled false
end
package "ffmpeg" do
action :install
options "--enablerepo=atrpms --enablerepo=centos-base"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment