|
楼主 |
发表于 2008-12-29 09:38:24
|
显示全部楼层
Post by ctjiang;1931232
MPlayer的编译:
1.下载相关codes ( http://www.mplayerhq.hu/MPlayer/ )
主程序:
MPlayer-1.0rc2.tar.bz2
皮肤:
Abyss-1.7.tar.bz2
codecs:
all-20071007.tar.bz2
上面的安装包自己下载。
2. 开始安装
安装时先安装编码包,mplayer的编码包须安装在/usr/lib/codecs/,也可以是其他目录,但要在编译MPlayer主程序时设置,具体设置见下面。
首先要以root身份登录系统,然后打开终端
(1)安装解码包:
将编码包解压到/usr/lib/codecs下即可。
(2)安装mplayer主程序
[root@localhost mplayer]# tar -jxvf MPlayer-1.0rc2.tar.bz2
[root@localhost mplayer]# cd MPlayer-1.0rc2/
[root@localhost MPlayer-1.0rc2]# ./configure --prefix=/usr/local/mplayer --enable-gui --enable-freetype --with-codecsdir=/usr/lib/codecs/ --with-win32libdir=/usr/lib/wincodecs/ --language=zh_CN,en
*注意:
--prefix=/usr/local/mplayer 是安装路径
--enable-gui 安装图形化用户界面
--enable-freetype 调节字体
--with-codecsdir=/usr/lib/codecs/ 解码位置,即是第一步解压的包所在位置
--with-win32libdir=/usr/lib/wincodecs 指定解码位置,可以不要这个选项
--language=zh_CN,en 中文,英文
在configure过程中可能会缺文件,自己根据提示安装。
接着
[root@localhost MPlayer-1.0rc2]# make
[root@localhost MPlayer-1.0rc2]# make install
至此mplayer已安装到你的linux上面了。
3.安装皮肤
tar -jxvf Abyss-1.7.tar.bz2 -C /usr/local/mplayer/share/mplayer/Skins/
mv /usr/local/mplayer/share/mplayer/Skins/Abyss/ /usr/local/mplayer/share/mplayer/Skins/default/
希望有帮助。
我不是第一次编译MPlayer,不过还是非常感谢 |
|