该文章过时了,参见
对于Debian用户只需安照上面网页,在source.list内添加一个源就行了
注意:要首先手动安装的deb包,否则deb包管理程序
会抱怨没有安全key的。
必需的deb包有:mplayer,w32codecs,mozilla-mplayer
对于linux funs来说,拥有MPlayer是必然的要求。且不谈它全能的素质,单单几年蝉联linux下最受欢迎的视频播放器就让人按耐不住内心的渴望。然而,好东西总是不太容易到手,mplayer的安装也较为复杂,于是小孙把自己的安装过程记录下来。
1.先看看编译的系统软件要求!!!
glibc development package //一般安装都会有这个,就是GNU C
x-window-system-dev //如果你想在X中使用:-)
libpng3-dev libgtk2.0-dev //如果你想有个GUI
2.获取安装文件地址
souce现在最新的是MPlayer v1.0pre8 source
codecs //解码器包
font //要不要无所谓,很容易制作自己的。
skin //如果要使用GUI必须下载
3.安装codecs
下载essential codecs package 解压后放到/usr/local/lib/codeces
tar jxvf essential-20060611.tar.bz2
mkdir /usr/local/lib/codecs
mv essential-20060611/* /usr/local/lib/codecs/
4.安装source
tar jxvf MPlayer-1.0pre8.tar.bz2
cd Mplayer-1.0pre8
./configure –enable-gui
make
make install
debian中的简便方法,强烈吐血推荐
cd Mplayer-1.0pre8
DEB_BUILD_OPTIONS="--enable-gui" fakeroot ./debian/rules binary
最后有这么一行dpkg-deb: building package `mplayer' in `../mplayer_1.0cvs_i386.deb'.
sudo dpkg -i ../mplayer_1.0cvs_i386.deb
可能会缺部分文件,没关系,sudo apt-get -f install
5.安装skin
选择一个skin作为默认的,放到/usr/local/share/mplayer/Skin/default
//default不需要带skin名字的文件夹作子目录
其他的skin放到/usr/local/share/mplayer/skins
6.字体
下载的字体解压到/usr/local/share/mplayer/font/
制作自己的字体,进入解压出的MPlayer-1.0pre8/TOOLS/subfont-c/修改rumme
小孙的MPlayer-1.0pre8/TOOLS/subfont-c/rumme内容{
#!/bin/bash
unicode="--unicode"
font=/usr/share/fonts/truetype/chinese/simsun.ttf
encoding=GB2312
fontsize=$2
symbolssize=$3
blur=2
outline=1.5
make || exit
./subfont $unicode --blur $blur --outline $outline "$encoding" "$fontsize" "$font" || exit
#./subfont --append --blur $blur --outline $outline encodings/osd-mplayer "$symbolssize" /osd/osd.pfb || exit
mv font.desc *.raw ~/.mplayer/font/ //或者是/usr/local/share/mplayer/font/
exit
# display *.raw files
SIZE=`awk '/bitmap size:/ {print $NF; exit}' font.desc`+800
display -size $SIZE gray:$encoding-a.raw &
display -size $SIZE gray:$encoding-b.raw &
#convert -size $SIZE gray:$encoding-a.raw $encoding-a.png
#convert -size $SIZE gray:$encoding-b.raw $encoding-b.png
}
运行./rumme
7.设置RTC real time clock // 这个还是很重要的,否则你的声音和视频可能对不上号 :-@
参考文献
sudo chomd o+r /dev/rtc //使用户可以访问
su
echo 1024 > /proc/sys/dev/rtc/max-user-freq //设置用户的时钟最大频率,建议将其添加到系统启动脚本。
小孙加在这里了/etc/rcS.d/S50hwclock.sh
.......
# WARNING: Please read /usr/share/doc/util-linux/README.Debian.hwclock
#
before changing this file. You risk serious clock
# misbehaviour otherwise.
. /etc/default/rcS
echo 1024 > /proc/sys/dev/rtc/max-user-freq //呵呵
[ "$GMT" = "-u" ] && UTC="yes"
case "$UTC" in
.........
8.运行
gmplayer //GUI界面
mplayer //命令行
9. firefox openoffice支持
sudo apt-get install mozilla-mplayer
在firefox地址输入about:plugins查看是否安装成功
在百度在线播放MP3效果图
Enjoy yourself!:-)
阅读(10577) | 评论(0) | 转发(0) |