list mplayer currently installed en/decoder modules
crifan 18年前 (2008-02-25) 1286浏览 0评论
use the command : mplayer -ac help to list audio codec driver that the system cunrrent detected . following is the output : [...
工作相关的技术文章
crifan 18年前 (2008-02-25) 1286浏览 0评论
use the command : mplayer -ac help to list audio codec driver that the system cunrrent detected . following is the output : [...
crifan 18年前 (2008-02-25) 1962浏览 0评论
Linux文件内容查询命令 grep、fgrep和egrep命令 这组命令以指定模式搜索文件,并通知用户在什么文件中搜索到与指定的模式匹配的字符串,并打印出所有包含该字符串的文本行,在该文本行的最前面是该行所在的文件名。grep命令一次只...
crifan 18年前 (2008-02-25) 1466浏览 0评论
use command : vncserver to start the service of VNC . New ‘localhost.localdomain:1 (yourname)’ desktop is localho...
crifan 18年前 (2008-02-25) 1526浏览 0评论
什么是ALSA? ALSA(Advanced Linux Sound Architecture,高级Linux声音构架) 是一个致力于开发高质量Linux声音子系统的软件项目。在2.6系列内核中,...
crifan 18年前 (2008-02-25) 1691浏览 0评论
alsamixer (1) NAME alsamixer - soundcard mixer for ALSA soundcard driver, with ncurses interface SYNOPSIS <s...
crifan 18年前 (2008-02-25) 1338浏览 0评论
1.use command :alsamixer to adjust the sound volume 2.and to use command :alsactl store to store the setting of the sound 3.u...
crifan 18年前 (2008-02-22) 1446浏览 0评论
formatly output when printf() in 16 Hexadecimal with two bits weight ,use like this : for(…….) ...
crifan 18年前 (2008-02-21) 1346浏览 0评论
Linux 入门常用命令 mv命令 用户可以使用mv命令来为文件或目录改名或将文件由一个目录移入另一个目录中。该命令如同MSDOS下的ren和move的组合。 语法:mv [选项] 源文件或目录 目标文件或目录 说明:视mv命令中第二个参数类型的...
crifan 18年前 (2008-02-21) 1599浏览 0评论
1 .AAC解码算法原理详解 http://www.mp4tech.net/document/audiocomp/0000207.asp 2. AAC編碼及解碼 http://vaplab.ee.ncu.edu.tw/chinese/pcchang/...
crifan 18年前 (2008-02-21) 1405浏览 0评论
mod operation is always do like this: b = a mod 32; and, a simple but efficient one is like this : nBits &= 0x1f; use &am...