728x90
FFmpeg install on CentOS
동영상 파일 변환용으로 많이 사용하는 오픈소스 프로그램인 FFmpeg 를 CentOS 에서 설치하기 위해 yum 으로 검색하면 기본 repository 에서는 안나온다. ffmpeg 사이트에서 직접 소스를 다운받아서 컴파일할 수도 있겠지만 바이너리만 설치하고 싶다.
그래서 찾아보니 다음과 같이 하면 yum 으로 설치할 수 있다.
CentOS 7.X
# rpm --import http://li.nux.ro/download/nux/RPM-GPG-KEY-nux.ro
# rpm -Uvh http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-5.el7.nux.noarch.rpm
# yum install ffmpeg
CentOS 6.X
# rpm --import http://li.nux.ro/download/nux/RPM-GPG-KEY-nux.ro
# rpm -Uvh http://li.nux.ro/download/nux/dextop/el6/x86_64/nux-dextop-release-0-2.el6.nux.noarch.rpm
# yum install ffmpeg
도움 받은 사이트
'Engineering > Linux' 카테고리의 다른 글
7zip(p7zip) on CentOS 7 (0) | 2018.08.23 |
---|---|
CentOS 6 text 모드에서 GUI 모드로 (0) | 2018.07.19 |
NodeJS 설치 on CentOS 7 (0) | 2017.09.12 |
linux cmd 쉘에서 json 파일 이쁘게 보기 (0) | 2017.08.31 |
virbr0 인터페이스 비활성화 on CentOS (0) | 2017.03.22 |