Skip to content

Instantly share code, notes, and snippets.

@ilyaevseev
Created March 10, 2016 07:40
Show Gist options
  • Save ilyaevseev/51313eb61f469741f337 to your computer and use it in GitHub Desktop.
Save ilyaevseev/51313eb61f469741f337 to your computer and use it in GitHub Desktop.
Install fresh FFMpeg to CentOS 6 from the dead ATrpms repo.
#!/bin/bash
rpm --import https://raw.githubusercontent.com/example42/puppet-yum/master/files/CentOS.6/rpm-gpg/RPM-GPG-KEY.atrpms
rpm -Uvh https://www.mirrorservice.org/sites/dl.atrpms.net/el6.7-x86_64/atrpms/stable/atrpms-repo-6-7.el6.x86_64.rpm
sed -i 's,http://dl,https://www.mirrorservice.org/sites/dl,' /etc/yum.repos.d/atrpms*.repo
yum install ffmpeg
## END ##
@bhavyaw
Copy link

bhavyaw commented Jul 12, 2016

Thanks a lot !! Works perfectly.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment