PlaySounds with simultaneous calls #443
Unanswered
pedroalagao
asked this question in
Q&A
Replies: 1 comment
-
Doesn't that just mean each caller is independent and gets the same sound played from the start? There's nothing special for that case. Each new incoming call should be answered with a new If you want to play the same audio stream at the same position for all callers that's a lot trickier. The audio stream would need to be forked and sent to all incoming callers simultaneously. It's possible but there are no existing examples for that. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
It is possible to use the PlaySounds from the SIPExamples to make simultaneous calls? The idea is to use it to call, for example, to five devices and play the same sound from each answered device. For example:
We used that reference:
#237
We also used the "await Task.WhenAll" and "Parallel.ForEach", but what we have achieved so far is to ring the devices but only one device play the sound when answered. If another device is answered nothing happens.
Best regards.
Beta Was this translation helpful? Give feedback.
All reactions