<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[向东博客 专注WEB应用 构架之美 --- 构架之美，在于尽态极妍 | 应用之美，在于药到病除]]></title> 
<link>http://jackxiang.com/index.php</link> 
<description><![CDATA[赢在IT，Playin' with IT,Focus on Killer Application,Marketing Meets Technology.]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[向东博客 专注WEB应用 构架之美 --- 构架之美，在于尽态极妍 | 应用之美，在于药到病除]]></copyright>
<item>
<link>http://jackxiang.com/post//</link>
<title><![CDATA[[MPlayer]安装成功了,同大家分享分享]]></title> 
<author>jack &lt;xdy108@126.com&gt;</author>
<category><![CDATA[WEB2.0]]></category>
<pubDate>Fri, 06 Apr 2007 01:30:10 +0000</pubDate> 
<guid>http://jackxiang.com/post//</guid> 
<description>
<![CDATA[ 
	Mplayer是Linux下功能超强的电影播放器，当然它也可以播放mp3,wma等声音格式文件. <br/>以下流程在RedHat9下通过，适合对Linux有初步了解的朋友： <br/><br/>1、下载安装所需文件： <br/>(1)主程序： http://www1.mplayerhq.hu/MPlayer/releases/MPlayer-1.0pre5.tar.bz2 <br/>(2)字体文件： http://www1.mplayerhq.hu/MPlayer/releases/fonts/font-arial-iso-8859-1.tar.bz2 <br/>(3)Skin文件（支持GUI）： http://www1.mplayerhq.hu/MPlayer/Skin/plastic-1.2.tar.bz2 <br/><br/>当然也可以下载其他皮肤文件 <br/>(4)支持avi等w32多媒体格式插件： <br/><br/>http://www1.mplayerhq.hu/MPlayer/releases/codecs/win32codecs-20040703.tar.bz2 <br/><br/>(5) 支持realplay(rm，ram等)等多媒体格式插件 <br/><br/>http://www1.mplayerhq.hu/MPlayer/releases/codecs/essential-20040704.tar.bz2 <br/><br/><br/><br/>如果只是在控制台（文本）下运行，只用下载（1）（4）(5)，如果想要图形界面并支持中文，以上5个都要下载。 <br/><br/><br/>2、把以上5个文件拷入/root下（可以自己选择目录），解压： <br/>[root@localhost root]# tar jxvf MPlayer-1.0pre5.tar.bz2 <br/>[root@localhost root]# tar jxvf font-arial-iso-8859-1.tar.bz2 <br/>[root@localhost root]# tar jxvf plastic-1.2.tar.bz2 <br/><br/>[root@localhost root]# tar jxvf win32codecs-20040703.tar.bz2 <br/>[root@localhost root]# tar jxvf essential-20040704.tar.bz2 <br/><br/><br/><br/>解压后的文件名比较长，可以考虑通过mv或ln等命令进行文件夹改名或连接，方便下面过程的进行。本文档没有做文件名处理。 <br/><br/><br/>3、拷贝w32codec支持库（win32codecs-20040703）及realplay支持库(essential-20040704) <br/><br/>一定要先执行这一步，而且拷入的目录一定要注意，如果你已安装了realplay8或realplay9也可不需拷入realplay的支持库，只是下面运行configure时要注意它所在的目录。 <br/>[root@localhost root]# mkdir /usr/lib/win32 <br/>[root@localhost root]# cp /root/win32codecs-20040703/* /usr/lib/win32 <br/>[root@localhost root]# cp -r /root/essential-20040704 /usr/lib <br/><br/><br/>4、进入Mplayer安装目录并执行，注意参数： <br/>[root@localhost root]# cd MPlayer-1.0pre5 <br/>[root@localhost MPlayer-1.0pre5]# ./configure --enable-gui --disable-gcc-checking --with-reallibdir=/usr/lib/essential-20040704 --language=zh_CN <br/>（不建议加上 --disable-gcc-checking 参数----jiangtao9999） <br/><br/>#说明：--enable-gui是用来支持图形界面的播入器，--disable-gcc-checking是用来跳过对gcc版本的检查(但不保证在所有的linux下都能通过下面的操作。如有这种情况，请说明)，--with-reallibdir=/usr/lib/essential- 20040704是用来指定realplay支持库所在的目录。如果你已安装了realplay 8那这个选项应该为：--with-reallibdir=/usr/lib/RealPlay8/codecs 如果你已安装了realplay 9(你可根据实际修改)：--with-reallibdir=/root/Real/codecs, –-language=zh_CN是用来指定Mplayer的字体为中文。1.0版本已经支持rtsp流，所以不用 –-enable-live。 <br/><br/><br/>5、依次执行： <br/>[root@localhost MPlayer-1.0pre5]# make <br/>[root@localhost MPlayer-1.0pre5]# make install <br/><br/><br/>6、拷入字体： <br/>[root@localhost MPlayer-1.0pre5]# cp /root/ font-arial-iso-8859-1/font-arial-14-iso-8859-1/* /usr/local/share/mplayer/font/ <br/><br/><br/>7、拷入Skin: <br/>[root@localhost MPlayer-1.0pre5]# cp -r /root/plastic /usr/local/share/mplayer/Skin/default <br/><br/><br/><br/>注意Skin的首字母要大写 <br/><br/><br/>8、拷入input.conf文件： <br/>[root@localhost MPlayer-1.0pre5]# cp /root/ MPlayer-1.0pre5/etc/input.conf /usr/local/share/mplayer/ <br/><br/><br/>9、在X下运行gmplayer 可启动图形界面播入模式，控制台下运行mplayer可以启动字符播放模式。 <br/><br/><br/><br/>关于Mplayer播放器的使用很简单，自己摸索一下就知道了。 <br/><br/>反正你按照我的的方面一步一步做下去一定能装成功.
]]>
</description>
</item><item>
<link>http://jackxiang.com/post//#blogcomment</link>
<title><![CDATA[[评论] [MPlayer]安装成功了,同大家分享分享]]></title> 
<author> &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate> 
<guid>http://jackxiang.com/post//#blogcomment</guid> 
<description>
<![CDATA[ 
	
]]>
</description>
</item>
</channel>
</rss>