跳到主要內容

[FFmpeg] CentOS安裝FFmpeg

在使用之前FFmpeg之前,要先進行安裝。

yum install ffmpeg ffmpeg-devel

因為Server是用CentOS,所以預設套件並不存在,而有個快速的方法就是新增Dag套件庫,在 /etc/yum.repos.d/ 新增 dag.repo 檔案,此檔案內容如下

[dag]
name=Dag RPM Repository for Red Hat Enterprise Linux
baseurl=http://apt.sw.be/redhat/el$releasever/en/$basearch/dag
gpgcheck=1
enabled=1

設定完後,在執行一次安裝,卻發現沒有GPG公開金鑰,這時還要進行安裝RPMforage套件庫。

rpm -Uhv http://apt.sw.be/redhat/el5/en/i386/rpmforge/RPMS/rpmforge-release-0.3.6-1.el5.rf.i386.rpm

這時應該都能順利安裝了。(詳細資訊可參考:How to Install FFmpeg in Linux ~The Easy Way~

其他資訊:FFmpeg指令集



留言

這個網誌中的熱門文章

What is phpize

What is phpize According to the PHP official document : The phpize command is used to prepare the build environment for a PHP extension. If you need to build such an extension that from github or another code repositories, you can use  build tools to perform the build manually.