andrewrk / libsoundio

C library for cross-platform real-time audio input and output
http://libsound.io/
MIT License
1.92k stars 229 forks source link

create dummy device on ubuntu works but not on archlinux #245

Open Shinoby92 opened 3 years ago

Shinoby92 commented 3 years ago

Hey I just successfully created a dummy device on Ubuntu in docker via

RUN apt-get update && apt-get -y install cmake protobuf-compiler
RUN git clone https://github.com/andrewrk/libsoundio.git
RUN cd libsoundio
RUN cmake ./libsoundio
RUN make
RUN make install

and in the entry point just sio_list_devices --backend dummy --watch &

now I want to do the same in arch, I need a dummy device I don't want to use Pulseaudio its to cpu heavy and can't create a dummy device in alsa due to need of mod probe kernel module not available on macosx

so what I've done is,

installing libsoundio as root RUN git clone https://aur.archlinux.org/libsoundio && cd libsoundio && makepkg -si --noconfirm but I don't know how to create the dummy now sio_list_devices --backend dummy --watch & does not work here