All of lore.kernel.org
 help / color / mirror / Atom feed
From: GitHub issues - edited <github@alsa-project.org>
To: alsa-devel@alsa-project.org
Subject: Audient Evo8 split into mono inputs and stereo outputs
Date: Mon, 20 Jul 2026 17:23:59 +0200 (CEST)	[thread overview]
Message-ID: <18c408ceb6112200-webhooks-bot@alsa-project.org> (raw)
In-Reply-To: <18c408ceb60b1700-webhooks-bot@alsa-project.org>

alsa-project/alsa-ucm-conf issue #816 was edited from JMWalkman:

Hi!

So based on the work that @motolav and @perexg did on the evo 4, I managed to create a similar config file for the audient evo8 to expose separate mono inputs and stereo output pairs

It's just that I'm not sure how to submit it to this repo, but i'd like this to be a part of the default experience for more people who have the interface like me. I've been using it for a couple of weeks and it's been awesome, so here's the contents of the file

If in the meantime, anyone finds this issue wanting to implementent it.
I created a file called `99-Audient-EVO8-split.conf` located at `~/.config/pipewire/pipewire.conf.d`

```
context.modules = [
    # ------------------ INPUTS (Mics 1-4 + Loopback) ------------------
    { name = libpipewire-module-loopback
      args = {
        node.name = "EVO8_Mic_1"
        node.description = "EVO 8 Mic/Inst 1"
        capture.props = { target.object = "alsa_input.usb-Audient_EVO8-00.pro-input-0" audio.position = [ AUX0 ] stream.dont-remix = true node.passive = true }
        playback.props = { media.class = "Audio/Source" audio.position = [ MONO ] }
      }
    }
    { name = libpipewire-module-loopback
      args = {
        node.name = "EVO8_Mic_2"
        node.description = "EVO 8 Mic 2"
        capture.props = { target.object = "alsa_input.usb-Audient_EVO8-00.pro-input-0" audio.position = [ AUX1 ] stream.dont-remix = true node.passive = true }
        playback.props = { media.class = "Audio/Source" audio.position = [ MONO ] }
      }
    }
    { name = libpipewire-module-loopback
      args = {
        node.name = "EVO8_Mic_3"
        node.description = "EVO 8 Mic 3"
        capture.props = { target.object = "alsa_input.usb-Audient_EVO8-00.pro-input-0" audio.position = [ AUX2 ] stream.dont-remix = true node.passive = true }
        playback.props = { media.class = "Audio/Source" audio.position = [ MONO ] }
      }
    }
    { name = libpipewire-module-loopback
      args = {
        node.name = "EVO8_Mic_4"
        node.description = "EVO 8 Mic 4"
        capture.props = { target.object = "alsa_input.usb-Audient_EVO8-00.pro-input-0" audio.position = [ AUX3 ] stream.dont-remix = true node.passive = true }
        playback.props = { media.class = "Audio/Source" audio.position = [ MONO ] }
      }
    }
    { name = libpipewire-module-loopback
      args = {
        node.name = "EVO8_Loopback_In"
        node.description = "EVO 8 Loopback Input"
        capture.props = { target.object = "alsa_input.usb-Audient_EVO8-00.pro-input-0" audio.position = [ AUX4 AUX5 ] stream.dont-remix = true node.passive = true }
        playback.props = { media.class = "Audio/Source" audio.position = [ FL FR ] }
      }
    }

    # ------------------ OUTPUTS (Outputs 1-4 + Loopback) ------------------
    { name = libpipewire-module-loopback
      args = {
        node.name = "EVO8_Out_1-2"
        node.description = "EVO 8 Output 1-2"
        capture.props = { media.class = "Audio/Sink" audio.position = [ FL FR ] }
        playback.props = { target.object = "alsa_output.usb-Audient_EVO8-00.pro-output-0" audio.position = [ AUX0 AUX1 ] stream.dont-remix = true node.passive = true }
      }
    }
    { name = libpipewire-module-loopback
      args = {
        node.name = "EVO8_Out_3-4"
        node.description = "EVO 8 Output 3-4"
        capture.props = { media.class = "Audio/Sink" audio.position = [ FL FR ] }
        playback.props = { target.object = "alsa_output.usb-Audient_EVO8-00.pro-output-0" audio.position = [ AUX2 AUX3 ] stream.dont-remix = true node.passive = true }
      }
    }
    { name = libpipewire-module-loopback
      args = {
        node.name = "EVO8_Loopback_Out"
        node.description = "EVO 8 Stereo Loopback Output"
        capture.props = { media.class = "Audio/Sink" audio.position = [ FL FR ] }
        playback.props = { target.object = "alsa_output.usb-Audient_EVO8-00.pro-output-0" audio.position = [ AUX4 AUX5 ] stream.dont-remix = true node.passive = true }
      }
    }
]
```

Issue URL     : https://github.com/alsa-project/alsa-ucm-conf/issues/816
Repository URL: https://github.com/alsa-project/alsa-ucm-conf

       reply	other threads:[~2026-07-20 15:24 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <18c408ceb60b1700-webhooks-bot@alsa-project.org>
2026-07-20 15:23 ` GitHub issues - edited [this message]
     [not found] <18c408abe3e97100-webhooks-bot@alsa-project.org>
2026-07-20 15:21 ` Audient Evo8 split into mono inputs and stereo outputs GitHub issues - opened

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=18c408ceb6112200-webhooks-bot@alsa-project.org \
    --to=github@alsa-project.org \
    --cc=alsa-devel@alsa-project.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.