Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding multiple Loopback Alsa devices in ubuntu [closed]

Tags:

ubuntu

alsa

I need to create virtual loopback alsa sinks in my ubuntu setup. I can create one by adding the following to /etc/modprobe.d/sound.conf

alias snd-card-0 snd-aloop
options snd-aloop index=21 pcm_substreams=8

I need to create multiple of these but I can't seem to find documentation on how to distinguish between the virtual cards. I would like to create 20.

like image 494
amustafa Avatar asked Aug 19 '13 18:08

amustafa


1 Answers

This creates five loopback cards:

options snd-aloop enable=1,1,1,1,1 index=10,11,12,13,14
like image 120
CL. Avatar answered Oct 04 '22 08:10

CL.