Record a ConfBridge with separated voices

Hello,

I’m trying to record a Confbridge, but I want people voices to be in different files.
I tried using MixMonitor but both people are in the same file.
I tried to use r option but it is still the same problem

 same => n(start),Set(MIXMONITOR_FILENAME=${STRFTIME(,Europe/Paris,%Y%m%d%H%M%S)}-${ROOMCODE})
 same => n,MixMonitor(${MIXMONITOR_FILENAME}-in.wav, b, r)

I’m not sure about using MixMonitor with Confbridge, but your MixMonitor line is wrong. Try:

same => n,MixMonitor(${MIXMONITOR_FILENAME}-out.wav,br(${MIXMNITOR_FILENAME}-in.wav)

No “,” between the b and r, and r needs a filename.

I already tried this, and no file finishing by -in.wav are created.

ConfBridge uses MixMonitor to record, so it looks like you would need a new feature request to add this as an option.

You could try using separate MixMonitor commands for each participant to create individual recordings. Alternatively, consider using the Monitor application with unique filenames for each channel. That way, each participant’s audio can be captured in separate files. Would that work for your setup?

I can’t use Monitor since it has been removed Monitor Is Deprecated, Farewell ⋆ Asterisk

You could try using separate MixMonitor commands for each participant to create individual recordings

How do I do that ?