Linux下C语言调用paly播放音频文件

一.安装sox播放器

sox播放器支持流行的多种类型的音频文件

sudo apt-get install sox
sudo apt-get install sox libsox-fmt-all

二.在终端执行play命令

play test.mp3

该命令可以在linux终端上直接执行播放,注意指定音频文件的路径。

三.用C语言执行该命令

用stdlib.h头文件下的system函数:

int system(const char *command);

如播放当前文件下的Tiantan.flac和PinFan.flac

#include
#include
#include
#include
void main()
{
	char cmd[128];
	while(1)
	{
		printf("please input:");
		scanf("%s",cmd);
		if(!strcmp(cmd,"TianTan"))
		{
			system("play ./TianTan");
		}
		if(!strcmp(cmd,"PinFan"))
		{
			system("play ./PinFan");
		}
		else
		{
			printf("Please input again!\n");
		}
	}
}

注意!注意!注意!音频文件名不要带有非法字符,比如()括号,否则无法正常播放

你可能感兴趣的:(Linux嵌入式应用开发,树莓派,linux,c语言)