A40i使用笔记:使用QT调用aplay播放wav音频/混音

Posted 大桶矿泉水

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A40i使用笔记:使用QT调用aplay播放wav音频/混音相关的知识,希望对你有一定的参考价值。

一、前言

在linux当中播放音乐的方式有很多种,我使用的A40i核心板,是 aplay 指令,是 alsa 的一个指令,也就是说需要先安装有 alsa,使用其他arm开发板的小伙伴可以先自行安装alsa之后在进入正文,这里我没实际自己安装,也就不说明了。

二、环境

linux3.10

alsa、aplay源码

qt5.9

参考连接:linux 播放音频

Linux---ALSA音频工具arecord、aplay、amixer使用

Qt调用aplay播放PCM

QT界面完成录音与播放功能以及环境配置

三、正文

在使用音频之前,我也是小白,对于专用的音频播放器一窍不通,只是使用过串口控制芯片转音频输出的模块,JQ8900芯片是一个比较简单的播放音频芯片,有专用的模块某宝自行查询即可。

在使用linux后需要音频应用了,发现有些东西尽量还是用官方的,标准的,原生的好一些,而不是简单草率的随便挂个转换芯片,那种情况一般是51、32那种没有专用接口才扩展,在有接口的情况下还是用专用接口,节省电路板空间资源,并且使用起来会很方便。

某凌的核心板软件放音测试如下,我是用的是speaker放音

这种方式是调用alsa下的aplay应用播放和录音,算是一个一级应用程序,可以使用他去二次开发,也可以看他的源码,从中获取有用的部分自行嵌入到QT应用程序中。(推荐后者方式)

下面就照以上两种方式进行音频播放说明/混音播放说明:

方式一:QT调用aplay程序播放音频/混音播放

    初始化,开启左右声道,开启喇叭播放,设置音量

    system("amixer cset numid=15,iface=MIXER,name='Phone Out Mixer LOMIX Switch' on");
    system("amixer cset numid=16,iface=MIXER,name='Phone Out Mixer ROMIX Switch' on");
    system("amixer cset numid=48,iface=MIXER,name='Phoneout Speaker Switch' on");
    system("amixer cset numid=2,iface=MIXER,name='digital volume' 50");

    单独放音调用

    p_music = new QProcess(this);
    p_music->start("aplay -Dhw:0,0 /root/game-fengzhigu.wav");
    p_music1 = new QProcess(this);
    p_music1->start("aplay -Dhw:0,0 /root/game-tongguan.wav");

    if(p_music->state()==QProcess::Running)
            //关闭
//            p_music->kill();
//            p_music->waitForFinished();
        delete p_music;
    
    if(p_music1->state()==QProcess::Running)
            //关闭
//            p_music1->kill();
//            p_music1->waitForFinished();
        delete p_music1;
    
    p_music1 = new QProcess(this);
    p_music1->start("aplay -Dhw:0,0 /root/game-tongguan.wav");

    混音调用

    p_music = new QProcess(this);
//    p_music->start("aplay -Dhw:0,0 /root/game-fengzhigu.wav");//仅限单个文件播放
    p_music->start("aplay -D plug:dmix /root/game-fengzhigu.wav &");//可以混音多个文件播放
    connect(ui->btn_testvolume,&QPushButton::clicked,[=]()//测试音量
        if(p_music->state()==QProcess::Running)
//            p_music->kill();
//            p_music->waitForFinished();
//            delete p_music;
        
        p_music = new QProcess(this);
        p_music->start("aplay -D plug:dmix /root/game-tongguan.wav");
    );

方式二:QT重写aplay源码专用部分功能函数播放音频/混音播放

暂时没有需求,没有时间(借口),待实际使用更新此部分

四、结语

逆水行舟

exp-linux用aplay直接播放音频文件(mp3,wav)

aplay -l //查看有哪些播放设备

aplay xxx.wav //用系统配置的设备播放

aplay -D plughw:1,0 xxx.wav // 用指定的设备播放

Q1: aplay直接播放MP3文件是杂音

可以用audacity 将mp3转换(导出)成wav格式文件,再用aplay播放。

Q2:播放失败,提示:aplay: main:852: 音乐打开错误: 设备或资源忙
是因为系统配置的音频输出是这个,在设置里面将其配置为其他的,之后再用aplay播放。

Q3:播放如果有杂音

可能是某个程序导致的,可以关闭这个程序,比如firefox~

参考:

aplay(1) - Linux man page

alsa-utils/aplay at master · alsa-project/alsa-utils · GitHub

使用aplay实现音频播放 - kay880 - 博客园
aplay_零一之间的M的博客-CSDN博客_aplay

aplay 帮助文档:

$ aplay --help
Usage: aplay [OPTION]... [FILE]...

-h, --help              help
    --version           print current version
-l, --list-devices      list all soundcards and digital audio devices
-L, --list-pcms         list device names
-D, --device=NAME       select PCM by name
-q, --quiet             quiet mode
-t, --file-type TYPE    file type (voc, wav, raw or au)
-c, --channels=#        channels
-f, --format=FORMAT     sample format (case insensitive)
-r, --rate=#            sample rate
-d, --duration=#        interrupt after # seconds
-s, --samples=#         interrupt after # samples per channel
-M, --mmap              mmap stream
-N, --nonblock          nonblocking mode
-F, --period-time=#     distance between interrupts is # microseconds
-B, --buffer-time=#     buffer duration is # microseconds
    --period-size=#     distance between interrupts is # frames
    --buffer-size=#     buffer duration is # frames
-A, --avail-min=#       min available space for wakeup is # microseconds
-R, --start-delay=#     delay for automatic PCM start is # microseconds 
                        (relative to buffer size if <= 0)
-T, --stop-delay=#      delay for automatic PCM stop is # microseconds from xrun
-v, --verbose           show PCM structure and setup (accumulative)
-V, --vumeter=TYPE      enable VU meter (TYPE: mono or stereo)
-I, --separate-channels one file for each channel
-i, --interactive       allow interactive operation from stdin
-m, --chmap=ch1,ch2,..  Give the channel map to override or follow
    --disable-resample  disable automatic rate resample
    --disable-channels  disable automatic channel conversions
    --disable-format    disable automatic format conversions
    --disable-softvol   disable software volume control (softvol)
    --test-position     test ring buffer position
    --test-coef=#       test coefficient for ring buffer position (default 8)
                        expression for validation is: coef * (buffer_size / 2)
    --test-nowait       do not wait for ring buffer - eats whole CPU
    --max-file-time=#   start another output file when the old file has recorded
                        for this many seconds
    --process-id-file   write the process ID here
    --use-strftime      apply the strftime facility to the output file name
    --dump-hw-params    dump hw_params of the device
    --fatal-errors      treat all errors as fatal
認可的取樣格式是︰ S8 U8 S16_LE S16_BE U16_LE U16_BE S24_LE S24_BE U24_LE U24_BE S32_LE S32_BE U32_LE U32_BE FLOAT_LE FLOAT_BE FLOAT64_LE FLOAT64_BE IEC958_SUBFRAME_LE IEC958_SUBFRAME_BE MU_LAW A_LAW IMA_ADPCM MPEG GSM S20_LE S20_BE U20_LE U20_BE SPECIAL S24_3LE S24_3BE U24_3LE U24_3BE S20_3LE S20_3BE U20_3LE U20_3BE S18_3LE S18_3BE U18_3LE U18_3BE G723_24 G723_24_1B G723_40 G723_40_1B DSD_U8 DSD_U16_LE DSD_U32_LE DSD_U16_BE DSD_U32_BE
有部份可能選取的硬體不提供
The available format shortcuts are:
-f cd (16 bit little endian, 44100, stereo)
-f cdr (16 bit big endian, 44100, stereo)
-f dat (16 bit little endian, 48000, stereo)

以上是关于A40i使用笔记:使用QT调用aplay播放wav音频/混音的主要内容,如果未能解决你的问题,请参考以下文章

linux qt process 和system 的用法

aplay 管道使用文件而不是标准输入和标准输出来记录

用 Qt 的 QAudioOutput 类播放 WAV 音频文件(使用了libsndfile外部库)

通过 QAudioOutput 播放 wav 文件时只有嗡嗡声

用 Qt 的 QAudioOutput 类播放 WAV 音频文件

使用aplay实现音频播放