|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
本帖最后由 qin_hawk 于 2010-6-7 09:48 编辑
Mplayer是linux里面功能最强的播放器。但linux下安装什么都很麻烦,故此分享一下我的安装经历。
// This Install Note is written by Kein H. Woo
// June-06-2010
//
// In order to properly install mplayer the following files are needed:
// MPlayer-1.0rc3.tar.bz2 //for main file
// skins/* //these files under the folder skins are necessary for mplayer.
//
// Asumme that the inst_dir is /apps/mplayer
//
Step1. copy MPlayer-1.0rc3.tar.bz2 to the inst_dir and exact it using the following command
tar -jxvf MPlayer-1.0rc3.tar.bz2
the untarred folder is MPlayer-1.0rc3
Step2. cd MPlayer-1.0rc3, then configure the compilation environment by:
./configure --enable-gui // the option "-enable-gui" is set to compile the graphic installation
Step3. compile and install mplayer, or gmplayer:
gmake // compile gmplayer
gmake install // install gmplayer
if lucky enough the comipling process and installation will be successful
the gmplayer will be automatically installed to /usr/local/bin, and the skins folder will be set to /usr/local/share/mplayer/skins.
Step4. this step is to install the skins for gmplayer
copy the *.tar.bz2 files in the skins/ folder to /usr/local/share/mplayer/skins:
cp skins/*.bz2 /usr/local/share/mplayer/skins
then change to /usr/local/share/mplayer/skins, and untar those files. the skins for gmplayer are installed.
Step5. in a terminal, input the following command to invoke the player:
gmplayer -skin iTunes
then the gmplayer with the iTunes interface appears.
you can just drag a video file and drop to the play window, or associate the media files for gmplayer to play,
next time you just double click to play the media files.
Done! |
|