九天雁翎的博客
如果你想在软件业获得成功,就使用你知道的最强大的语言,用它解决你知道的最难的问题,并且等待竞争对手的经理做出自甘平庸的选择。 -- Paul Graham

ubuntu 安装视频解码控件及文档

最近老在折腾ubuntu。。。。。呵呵,学习辛苦了,偶尔放松一下,对工作的环境(其实我主要工作还是在windows的VS中,Linux属于假想工作环境-_0!)

 

ubuntu由于有apt,deb包管理相当轻松,大部分任务就是sudo apt-get install XXXX,呵呵,实在是奇迹。。。。。

 

 

realplayer装了没有用。。。。原因不明。

 

国外的这个文章很牛:(http://www.ubuntugeek.com/install-mplayer-and-multimedia-codecs-libdvdcss2w32codecsw64codecs-in-ubuntu-904-jaunty.html

Install libdvdcss2 and w32 video codecs in Ubuntu 9.04 (Jaunty)

Support for WMV, RealMedia and other formats has been bundled into the w32codecs package. This package is not available from the Ubuntu repositories due to licensing and legal restrictions.To play encrypted DVDs, the libdvdcss2 package is essential.

For Ubuntu 9.04 (Jaunty) Users use the following procedures

sudo wget http://www.medibuntu.org/sources.list.d/jaunty.list --output-document=/etc/apt/sources.list.d/medibuntu.list

Then, add the GPG Key using the following commands

sudo apt-get update

For i386 Users install Codecs using the following command

sudo apt-get install medibuntu-keyring

sudo apt-get update

sudo apt-get install w32codecs libdvdcss2

For amd64 Users install Codecs using the following command

sudo apt-get install w64codecs libdvdcss2

Using above download locations you can install most of the mutimedia codecs for ubuntu.

Mplayer Plugin for Firefox

If you want to install Mplayer with plug-in for Mozilla Firefox run the following command

sudo apt-get install mozilla-mplayer

 

 

解决了很多问题

 

 

有个问题很有意思,现在我在windows下用kmplayer,感觉很好,很习惯,比windows下的mplayer还好用,还美观,现在改用了KDE(主要是因为学了QT的原因,其实我以前都是用Gnome),想都没有想,直接上在ubuntu上装kmplayer用,结果完全不好用,再查了查,还有个kplayer,还是不好用,都删掉,换成mplayer..............一切如以前般强大,接近无语。。。。。。

 

 

 

接着,开发库文档的问题:【转】

 

添加库函数手册
ubuntu默认是没有安装c语言的库函数man手册的,所以你在man perror 和sendto之类的函数时会显示没有相关文档的问题,这个问题让我郁闷了我好久。解决方法:
sudo apt-get install manpages-dev

 

事实上,也有中文版的文档了,只是看起来比较别扭(可能因为ubuntu的控制台下中文字不够美观)

 

选择man页面的方式是man 页面号 文档,比如我要查sleep的库函数调用,那就是man 3 sleep

分类:  未分类 
标签:  Ubuntu 

Posted By 九天雁翎 at 九天雁翎的博客 on 2009年08月22日

前一篇: Ubuntu 9.04禁用触摸板的办法 后一篇: 简单图形编程的学习(1)---文字 (Windows GDI实现)