简体   繁体   English

从 C 代码设置 ALSA 主卷

[英]Set ALSA master volume from C code

I've been looking for a simple C code example to set the master volume of the ALSA mixer but could not find anything simple for this supposedly common operation.我一直在寻找一个简单的 C 代码示例来设置 ALSA 混音器的主音量,但是对于这个所谓的常见操作找不到任何简单的东西。

I'm totally unfamiliar with ALSA, so making my own minimal example will take time.我对 ALSA 完全不熟悉,所以制作我自己的最小示例需要时间。 I would be happy if anyone could provide one.如果有人能提供一个,我会很高兴。

The following works for me.以下对我有用。 The parameter volume is to be given in the range [0, 100].参数 volume 应在 [0, 100] 范围内给出。 Beware, there is no error handling!请注意,没有错误处理!

void SetAlsaMasterVolume(long volume)
{
    long min, max;
    snd_mixer_t *handle;
    snd_mixer_selem_id_t *sid;
    const char *card = "default";
    const char *selem_name = "Master";

    snd_mixer_open(&handle, 0);
    snd_mixer_attach(handle, card);
    snd_mixer_selem_register(handle, NULL, NULL);
    snd_mixer_load(handle);

    snd_mixer_selem_id_alloca(&sid);
    snd_mixer_selem_id_set_index(sid, 0);
    snd_mixer_selem_id_set_name(sid, selem_name);
    snd_mixer_elem_t* elem = snd_mixer_find_selem(handle, sid);

    snd_mixer_selem_get_playback_volume_range(elem, &min, &max);
    snd_mixer_selem_set_playback_volume_all(elem, volume * max / 100);

    snd_mixer_close(handle);
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM