Re: [Alsa-user] Capturing stereo signals into files

2013-05-08 Thread Vincent Gulinao
Hi Bill, Sorry for the delay in response. Here's the output: [root@audio-capture ~]# ls /dev/snd by-path controlC0 controlC1 hwC0D2 hwC1D0 midiC1D0 midiC1D1 pcmC0D0c pcmC0D0p pcmC1D0c pcmC1D0p seq timer [root@audio-capture ~]# ls /proc/asound/ card0 card1 cards default devices

Re: [Alsa-user] Capturing stereo signals into files

2013-05-08 Thread Vincent Gulinao
Thanks a lot Friedrich (and to the author Nicholas) for pointing me to rotter! I did a few test and indeed it's looking exactly what I need so far. I might just need to tweak it a bit so I can specify which channels exactly to get the inputs, and make sure that it can run multiple recording

Re: [Alsa-user] Capturing stereo signals into files

2013-05-08 Thread Bill Unruh
On Wed, 8 May 2013, Vincent Gulinao wrote: Hi Bill, Sorry for the delay in response. Here's the output: [root@audio-capture ~]# ls /dev/snd by-path controlC0 controlC1 hwC0D2 hwC1D0 midiC1D0 midiC1D1 pcmC0D0c pcmC0D0p pcmC1D0c pcmC1D0p seq timer [root@audio-capture ~]# ls

Re: [Alsa-user] Capturing stereo signals into files

2013-05-03 Thread Vincent Gulinao
Thanks Bill, The signals I need to record will come from multiple sources (radio stations) that outputs stereo format, so I guess it means I'd need a -c 2 parameter in each of my arecord command then? In what cases is -c 18 in your example applicable? More noob questions: how would arecord

Re: [Alsa-user] Capturing stereo signals into files

2013-05-03 Thread Bill Unruh
On Fri, 3 May 2013, Vincent Gulinao wrote: Thanks Bill, The signals I need to record will come from multiple sources (radio stations) that outputs stereo format, so I guess it means I'd need a -c 2 parameter in each of my arecord command then? In what cases is -c 18 in your example

[Alsa-user] Capturing stereo signals into files

2013-05-02 Thread Vincent Gulinao
Hi everyone, I have a task to setup a system that will continuously capture multiple stereo signals using a MADI audio card (RME HDSPe MADI) and write them into files (perhaps in 1 hour chunks). Few checks I've learned while googling on the topic looks like that my linux setup seem to recognize

Re: [Alsa-user] Capturing stereo signals into files

2013-05-02 Thread Friedrich Ewaldt
Hi Vincent, Vincent Gulinao schrieb am 02.05.2013 19:19: Hi everyone, I have a task to setup a system that will continuously capture multiple stereo signals using a MADI audio card (RME HDSPe MADI) and write them into files (perhaps in 1 hour chunks). Few checks I've learned while googling

Re: [Alsa-user] Capturing stereo signals into files

2013-05-02 Thread Bill Unruh
On Thu, 2 May 2013, Vincent Gulinao wrote: Hi everyone, I have a task to setup a system that will continuously capture multiple stereo signals using a MADI audio card (RME HDSPe MADI) and write them into files (perhaps in 1 hour chunks). Few checks I've learned while googling on the topic

Re: [Alsa-user] Capturing stereo signals into files

2013-05-02 Thread Alex Stefan Kaye
There's also GStreamer which would allow you to build a custom audio pipeline. Something like: alsasrc - deinterleave (to multiple mono's) - interleave (mono pairs to stereo) - encodebin/standalone encoders/muxers - multifilesink (splits output into multiple sequential files). This is the