EAGI with multiple calls

Hello,

I’m starting to use EAGI App on my Asterisk. I’ve seen that I can easily run scripts when I have incoming calls. Also, I can read the audio using the file descriptor number 3.

(STDERR+1) = audio pipe: Linear pcm audio pipe

My question is, what happens if I have several incoming calls at once? Will I have a problem reading the file descriptor?

Thanks!

Each executed AGI is completely separate and there is no overlap, so there is no problem with reading the file descriptor. You just get the audio for that specific call.

1 Like