REW Beta Release Trouble finding the API call for multiple microphone measurement

Seth Siegel

Registered
Thread Starter
Joined
Oct 4, 2024
Posts
4
I'm trying to setup an automatic system for SPL measurement where both a surface microphone and an acoustic microphone measure at the same time, however I am struggling to find the API call for multiple measurements. I'm assuming it is one of the measure features, with /measure/sequential-channels being the feature I am working with right now.


Any guidance on getting this to function would be appreciated, thanks!
 

John Mulcahy

REW Author
Joined
Apr 3, 2017
Posts
8,099
The endpoints are in the audio setup. Here's the relevant help section for Java drivers, there's a similar section for ASIO:

After the device and input or output have been selected the input channel and output channel may be selected. If applicable (depending on the timing reference mode for measurement) the timing reference output channel and the input reference (loopback) channel may also be selected. If multiple inputs are being captured (Pro upgrade) the last input channel of the input range may be selected. If using Virtual balanced mode the ref input channel is the second channel used to form the balanced pair. The channel endpoints are /audio/java/input-channel, /audio/java/ref-input-channel, /audio/java/last-input-channel, /audio/java/output-channel and /audio/java/ref-output-channel. Input channels are numeric, indexed from 1. The number of input channels can be read from /audio/java/num-input-channels.
 
Top Bottom