当前位置: 代码迷 >> 综合 >> alsa 1.0.22 混音
  详细解决方案

alsa 1.0.22 混音

热度:93   发布时间:2023-12-21 05:10:56.0

dmix混音。dmix是Alsa自带的混音插件
建立~/.asoundrc,内容如下:
pcm.ossmix {
        type dmix
        ipc_key 1024
        slave {
                pcm "hw:0,0"
                period_time 0
                period_size 1024
                buffer_size 4096
                rate 44100
                format S32_LE
        }
        bindings {
                0 0
                1 1
        }
}

pcm.!default {
        type plug
        slave.pcm "ossmix"
}

pcm.dsp0 {
        type plug
        slave.pcm "ossmix"
}

ctl.mixer0 {
        type hw
        card 0
}