红联Linux门户
Linux帮助

在Linux操作系统中编程声音设备实例

发布时间:2006-11-21 09:38:06来源:红联作者:flycocoon
  Linux下的声音设备编程比大多数人想象的要简单得多。一般说来,我们常用的声音设备是内部扬声器和声卡,它们都对应/dev目录下的一个或多个设备文件,我们象打开普通文件一样打开它们,用ioctl()函数设置一些参数,然后对这些打开的特殊文件进写操作。

  由于这些文件不是普通的文件,所以我们不能用ANSI C(标准C)的fopen、fclose等来操作文件,而应该使用系统文件I/O处理函数(open、read、write、lseek和close)来处理这些设备文件。ioctl()或许是Linux下最庞杂的函数,它可以控制各种文件的属性,在Linux声音设备编程中,最重要的就是使用此函数正确设置必要的参数。

  下面我们举两个实际的例子来说明如何实现Linux下的声音编程。由于此类编程涉及到系统设备的读写,所以,很多时候需要你有root权限,如果你将下面的例子编译后不能正确执行,那么,首先请你检查是否是因为没有操纵某个设备的权限。

  对内部扬声器编程内部扬声器是控制台的一部分,所以它对应的设备文件为/dev/console。变量KIOCSOUND在头文件 /usr /include /linux /kd.h中声明,ioctl函数使用它可以来控制扬声器的发声,使用规则为:

锟斤拷锟斤拷:
  ioctl ( fd, KIOCSOUND, (int) tone);


  fd为文件设备号,tone 是音频值。当tone为0时,终止发声。必须一提的是它所理解的音频和我们平常以为的音频是不同的,由于计算机主板定时器的时钟频率为1.19MHZ,所以要进行正确的发声,必须进行如下的转换:扬声器音频值=1190000/我们期望的音频值。

  扬声器发声时间的长短我们通过函数usleep(unsigned long usec)来控制。它是在头文件/usr /include /unistd.h中定义的,让程序睡眠usec微秒。下面即是让扬声器按指定的长度和音频发声的程序的完整清单:

锟斤拷锟斤拷:
#include < fcntl.h >
#include < stdio.h >
#include < stdlib.h >
#include < string.h >
#include < unistd.h >
#include < sys/ioctl.h >
#include < sys/types.h >
#include < linux/kd.h >

/* 设定默认值 */
#define DEFAULT_FREQ 440 /* 设定一个合适的频率 */
#define DEFAULT_LENGTH 200 /* 200 微秒,发声的长度是以微秒为单位的*/
#define DEFAULT_REPS 1 /* 默认不重复发声 */
#define DEFAULT_DELAY 100 /* 同样以微秒为单位*/

/* 定义一个结构,存储所需的数据*/
typedef struct {
int freq; /* 我们期望输出的频率,单位为Hz */
int length; /* 发声长度,以微秒为单位*/
int reps; /* 重复的次数*/
int delay; /* 两次发声间隔,以微秒为单位*/
} beep_parms_t;


/* 打印帮助信息并退出*/
void usage_bail ( const char *executable_name ) {
printf ( "Usage: \n \t%s [-f frequency] [-l length] [-r reps] [-d delay] \n ",
executable_name );
exit(1);
}

/ * 分析运行参数,各项意义如下:
* "-f <以HZ为单位的频率值 >"
* "-l <以毫秒为单位的发声时长 >"
* "-r <重复次数 >"
* "-d <以毫秒为单位的间歇时长 >"
*/
void parse_command_line(char **argv, beep_parms_t *result) {
char *arg0 = *(argv++);
while ( *argv ) {
if ( !strcmp( *argv,"-f" )) { /*频率*/
int freq = atoi ( *( ++argv ) );
if ( ( freq <= 0 ) | | ( freq > 10000 ) ) {
fprintf ( stderr, "Bad parameter: frequency must be from 1..10000\n" );
exit (1) ;
} else {
result->freq = freq;
argv++;
}
} else if ( ! strcmp ( *argv, "-l" ) ) { /*时长*/
int length = atoi ( *(++argv ) );
if (length < 0) {
fprintf(stderr, "Bad parameter: length must be >= 0\n");
exit(1);
} else {
result->length = length;
argv++;
}
} else if (!strcmp(*argv, "-r")) { /*重复次数*/
int reps = atoi(*(++argv));
if (reps < 0) {
fprintf(stderr, "Bad parameter: reps must be >= 0\n");
exit(1);
} else {
result->reps = reps;
argv++;
}
} else if (!strcmp(*argv, "-d")) { /* 延时 */
int delay = atoi(*(++argv));
if (delay < 0) {
fprintf(stderr, "Bad parameter: delay must be >= 0\n");
exit(1);
} else {
result->delay = delay;
argv++;
}
} else {
fprintf(stderr, "Bad parameter: %s\n", *argv);
usage_bail(arg0);
}
}
}

int main(int argc, char **argv) {
int console_fd;
int i; /* 循环计数器 */
/* 设发声参数为默认值*/
beep_parms_t parms = {DEFAULT_FREQ, DEFAULT_LENGTH, DEFAULT_REPS,
DEFAULT_DELAY};
/* 分析参数,可能的话更新发声参数*/
parse_command_line(argv, &parms);

/* 打开控制台,失败则结束程序*/
if ( ( console_fd = open ( "/dev/console", O_WRONLY ) ) == -1 ) {
fprintf(stderr, "Failed to open console.\n");
perror("open");
exit(1);
}

/* 真正开始让扬声器发声*/
for (i = 0; i < parms.reps; i++) {
/* 数字1190000从何而来,不得而知*/
int magical_fairy_number = 1190000/parms.freq;

ioctl(console_fd, KIOCSOUND, magical_fairy_number); /* 开始发声 */
usleep(1000*parms.length); /*等待... */
ioctl(console_fd, KIOCSOUND, 0); /* 停止发声*/
usleep(1000*parms.delay); /* 等待... */
} /* 重复播放*/
return EXIT_SUCCESS;
}


  将上面的例子稍作扩展,用户即可以让扬声器唱歌。只要找到五线谱或简谱的音阶、音长、节拍和频率、发声时长、间隔的对应关系就可以了。我现在还记得以前在DOS下编写出《世上只有妈妈好》时的兴奋。最后,说一些提外话,这其实是一个很简单的程序,但是我们却用了很长的篇幅,希望读者从以上的代码里能体会到写好的程序的一些方法,或许最重要的是添加注释吧。一个程序的注释永远不会嫌多,即便你写的时候觉得它根本是多余,但相信我,相信曾这样告诉我们的许多优秀的程序员:养成写很多注释的习惯。
文章评论

共有 2236 条评论

  1. 203.121.78.* 于 2007-07-20 13:41:30发表:

    Thanks! Best free mp3 music downloads site: :
    free download music = limewire = classical music downloads = free download music = free ipod music downloads = free music download sites = free music downloads = download music video = free music for ipod =
    http://bbs.geog.ucsb.edu/ubb/Forum11/HTML/000017.html free music downloading :: http://mywebpage.netscape.com/free5mp3/free-mp3.html legal music downloads :: http://nmstandards.org/portal_memberdata/portraits/vsemoe limewire music downloads :: http://bbs.geog.ucsb.edu/ubb/Forum11/HTML/000017.html free ipod music downloads :: http://nmstandards.org/portal_memberdata/portraits/vsemoe free music downloads :: http://musicdownloadsmp3.tripod.com/music_downloads.html Free Music Downloads :: http://www.sopadre.com/gallery/louies/music.html free music to download :: http://musicdownloads4free.angelfire.com/free-music.html free music :: http://musicdownloads4free.angelfire.com/free-music.html free music downloads :: http://musicdownloadsmp3.tripod.com download music for free :: http://idisk.mac.com/fmp3musicdownloads/Public/free-music.html download music for free ::
    free download music .. free music downloading .. Free Music Downloads .. free music for ipod .. free mp3 music downloads .. Free Music Downloads .. free music ipods ..

  2. 203.121.78.* 于 2007-07-20 13:33:42发表:

    Yhanks! Best free mp3 music downloads site: :
    free mp3 = download music free = free download music = free music downloading = free mp3 = mp3 downloads = free mp3 music downloads = music downloads pc = free music download sites =
    http://bbs.geog.ucsb.edu/ubb/Forum11/HTML/000017.html music downloads pc :: http://mywebpage.netscape.com/free5mp3/free-mp3.html free music download :: http://nmstandards.org/portal_memberdata/portraits/vsemoe download music for free :: http://bbs.geog.ucsb.edu/ubb/Forum11/HTML/000017.html music download free :: http://nmstandards.org/portal_memberdata/portraits/vsemoe download free music :: http://musicdownloadsmp3.tripod.com/music_downloads.html free mp3 music downloads :: http://www.sopadre.com/gallery/louies/music.html music download free :: http://musicdownloads4free.angelfire.com/free-music.html how to download music :: http://musicdownloads4free.angelfire.com/free-music.html free music :: http://musicdownloadsmp3.tripod.com free music ipods :: http://idisk.mac.com/fmp3musicdownloads/Public/free-music.html limewire music downloads ::
    free music ipods .. free ipod music downloads sites .. free music downloads .. classical music downloads .. free music downloads .. free country music downloads .. free music download ..

  3. 203.121.73.* 于 2007-07-20 13:17:41发表:

    Hi! Best free mp3 music downloads site: :
    download music free = free music video = free ipod music downloads = free music downloads = free music download = download music free = free music downloads = free download music = free music download =
    http://bbs.geog.ucsb.edu/ubb/Forum11/HTML/000017.html free download music :: http://mywebpage.netscape.com/free5mp3/free-mp3.html free music download :: http://nmstandards.org/portal_memberdata/portraits/vsemoe free mp3 downloads :: http://bbs.geog.ucsb.edu/ubb/Forum11/HTML/000017.html free music :: http://nmstandards.org/portal_memberdata/portraits/vsemoe mp3 downloads :: http://musicdownloadsmp3.tripod.com/music_downloads.html free download music :: http://www.sopadre.com/gallery/louies/music.html free legal music downloads :: http://musicdownloads4free.angelfire.com/free-music.html free country music downloads :: http://musicdownloads4free.angelfire.com/free-music.html download music free :: http://musicdownloadsmp3.tripod.com free music downloads :: http://idisk.mac.com/fmp3musicdownloads/Public/free-music.html music download ::
    free download music .. free mp3 .. free mp3 music downloads .. music downloads pc .. mp3 downloads .. how to download music .. music download free ..

  4. 203.121.79.* 于 2007-07-17 18:50:45发表:

    Hi boys! :
    limewire = free mp3 = free music downloads = music = limewire = free music downloads = free music downloads = download music video = download music free =
    http://bbs.geog.ucsb.edu/ubb/Forum11/HTML/000017.html classical music downloads :: http://mywebpage.netscape.com/free5mp3/free-mp3.html legal music downloads :: http://nmstandards.org/portal_memberdata/portraits/vsemoe free mp3 music downloads :: http://bbs.geog.ucsb.edu/ubb/Forum11/HTML/000017.html music downloads :: http://nmstandards.org/portal_memberdata/portraits/vsemoe free music downloads :: http://musicdownloadsmp3.tripod.com/music_downloads.html free ipod music downloads :: http://www.sopadre.com/gallery/louies/music.html how to download music :: http://musicdownloads4free.angelfire.com/free-music.html free music download :: http://musicdownloads4free.angelfire.com/free-music.html legal music downloads :: http://musicdownloadsmp3.tripod.com free music for ipod :: http://idisk.mac.com/fmp3musicdownloads/Public/free-music.html free country music downloads ::
    free music downloads .. free mp3 .. music downloads .. free music download .. free country music downloads .. classical music downloads .. free music to download ..

  5. 203.121.79.* 于 2007-07-17 18:43:45发表:

    Great! Best free mp3 music downloads site: :
    mp3 downloads = free music video = FREE MUSIC DOWNLOADS = free mp3 = free music video = download music video = how to download music = limewire music downloads = free music downloads =
    http://bbs.geog.ucsb.edu/ubb/Forum11/HTML/000017.html classical music downloads :: http://mywebpage.netscape.com/free5mp3/free-mp3.html free ipod music downloads sites :: http://nmstandards.org/portal_memberdata/portraits/vsemoe classical music downloads :: http://bbs.geog.ucsb.edu/ubb/Forum11/HTML/000017.html free music ipods :: http://nmstandards.org/portal_memberdata/portraits/vsemoe music downloads pc :: http://musicdownloadsmp3.tripod.com/music_downloads.html download music free :: http://www.sopadre.com/gallery/louies/music.html free mp3 :: http://musicdownloads4free.angelfire.com/free-music.html how to download music :: http://musicdownloads4free.angelfire.com/free-music.html classical music downloads :: http://musicdownloadsmp3.tripod.com music :: http://idisk.mac.com/fmp3musicdownloads/Public/free-music.html FREE MUSIC DOWNLOADS ::
    free country music downloads .. free music ipods .. limewire music downloads .. free music downloads .. free mp3 music downloads .. download free music .. free music download ..

  6. 203.121.73.* 于 2007-07-17 18:27:20发表:

    Hi boys! Best free mp3 music downloads site: :
    free music ipods = free limewire = music downloads = free music video = free music video = music downloads pc = download music video = free music for ipod = free download music =
    http://bbs.geog.ucsb.edu/ubb/Forum11/HTML/000017.html download music video :: http://mywebpage.netscape.com/free5mp3/free-mp3.html mp3 downloads :: http://nmstandards.org/portal_memberdata/portraits/vsemoe how to download music :: http://bbs.geog.ucsb.edu/ubb/Forum11/HTML/000017.html free music downloads :: http://nmstandards.org/portal_memberdata/portraits/vsemoe download music free :: http://musicdownloadsmp3.tripod.com/music_downloads.html free mp3 :: http://www.sopadre.com/gallery/louies/music.html free legal music downloads :: http://musicdownloads4free.angelfire.com/free-music.html free music for ipod :: http://musicdownloads4free.angelfire.com/free-music.html music downloads :: http://musicdownloadsmp3.tripod.com free limewire :: http://idisk.mac.com/fmp3musicdownloads/Public/free-music.html free legal music downloads ::
    free music download .. music download free .. classical music downloads .. limewire .. free legal music downloads .. free mp3 downloads .. music ..

  7. 0.0.0.* 于 2007-07-16 17:40:23发表:

    jugar bacara linea http://www.getaportal.com/portals/poker-982/baccarat_1.html casino baccarat http://www.freewebs.com/casino-837/slots-3.html online slot casino slot casinos espana portal web http://www.getaportal.com/portals/casino-222/casinos_espana_1.html casinos espana portal casinos games giochi casino http://www.freewebs.com/casino-182/casino-game-5.html casino paginas internet casino virtual pagina web http://www.getaportal.com/portals/casino-241/casino_pagina_1.html

  8. 0.0.0.* 于 2007-07-16 16:49:39发表:

    free sprint ringtone free sprint ringtone http://www.quizilla.com/users/ringtone-582/journal/570980/ ganar ruleta http://www.getaportal.com/portals/casino-816/roulette_1.html ruleta cromatica http://www.getaportal.com/portals/casino-691/roulette_1.html ruleta linea ruleta linea free craps game how to play craps http://www.getaportal.com/portals/casino-2877/craps_11.html http://www.freewebs.com/casino-987/craps-92.html craps table play craps online free

  9. 67.80.216.* 于 2007-07-16 16:45:42发表:

    http://www.getaportal.com/portals/casino-827/poquer_1.html poquer web jugar poquer web keno portal internet keno paginas internet http://www.getaportal.com/portals/poker-800/keno_1.html http://www.getaportal.com/portals/poker-241/juego_gratis_1.html juego gratis portal internet juego gratis paginas web casino gaming casino gioca http://www.freewebs.com/casino-511/casino-game-4.html selena ringtones http://www.quizilla.com/users/ringtone-488/journal/570868/ black eyed pea ringtones

  10. 0.0.0.* 于 2007-07-16 16:25:00发表:

    http://www.freewebs.com/poker-110/poker-9.html play poker gambling poker ruleta pagina internet juego gratis ruleta download http://www.getaportal.com/portals/poker-696/roulette_1.html play blackjack black jack http://www.freewebs.com/casino-228/blackjack-7.html spielregeln roulette online roulette spielen http://www.getaportal.com/portals/poker-918/roulette_11.html regole baccarat regole baccarat http://www.freewebs.com/poker-656/baccarat-5.html

  11. 0.0.0.* 于 2007-07-16 16:18:24发表:

    http://www.getaportal.com/portals/casino-585/juego_seguro_1.html juego seguro portal internet juego seguro portales giochi carte online tavoli da gioco poker http://www.freewebs.com/poker-207/giochi-5.html poker online poker on line http://www.freewebs.com/poker-989/online-poker-6.html casino slots internet slot http://www.freewebs.com/casino-228/slots-1.html roulette online roulette linea http://www.getaportal.com/portals/poker-338/roulette_1.html

  12. 12.105.86.* 于 2007-07-16 15:51:42发表:

    http://www.freewebs.com/poker-558/giochi-5.html giochi internet gioco buy viagra online buy viagra online http://www.pelicanpointe.net/_disc1/00001d9a.htm giochi casino giochi casino http://www.freewebs.com/casino-182/casino-game-1.html mosquito ringtone http://www.quizilla.com/users/ringtone-807/journal/572443/ mosquito ringtone partypoker giocare poker http://www.freewebs.com/poker-603/poker-1.html

  13. 0.0.0.* 于 2007-07-16 15:26:47发表:

    http://www.freewebs.com/casino-418/craps-4.html craps online regole crap http://www.freewebs.com/casino-162/roulette-5.html internet roulette online roulette poker casino on net casino gratuito http://www.freewebs.com/casino-387/casino-7.html stanza poker http://www.freewebs.com/poker-428/poker-7.html online casino poker cheap tramadol cheap tramadol http://www.troyh.com/Troysblog/0000006c.htm

  14. 213.223.16.* 于 2007-07-16 15:15:20发表:

    http://www.quizilla.com/users/ringtone-24/journal/570811/ selena ringtones nextel ringtones online blackjack internet blackjack http://www.freewebs.com/casino-398/blackjack-2.html http://www.freewebs.com/casino-387/casino-4.html casinos gratuiro virtual casino http://www.freewebs.com/poker-110/video-poker-1.html online video poker online videopoker free nextel ringtone free ringtone http://www.quizilla.com/users/ringtone-488/journal/570831/