Hi there! I have a number MATLAB scripts that I use for electro-acoustic measurements (mainly impulse responses) and I would like to port them to JULIA. I also written the data acquisition in MATLAB. It works by streaming the test signal to the soundcard outputs while recording from the soundcard inputs. I would like to implement that as well. I was looking at AudioIO but there are few issues:
- I cannot find documentation/examples on how to record from soundcard input. - I cannot find documentation/examples on selecting the audio device to use. - I cannot find documentation/examples on setting sampling variables (it is in my best interest to use the highest sample rate available). Are these things possible with JULIA? I think I can use aplayer and arecord through JULIA (I am on Linux), but I was wishing to have all the code contained within JULIA. Many thanks, I hope you can point me in the right direction.
