How to add office ambiance as a background during live call

We have a voice bot and we want to give a office background ambiance to the conversation, please let me know how it is possible. It will be beneficial for me if you can share the changes that needs to be done.

This has been asked before. I’d suggest some work with Google is required. It’s been asked in your context, and also in the context of providing a service to allow people to pretend to be at work.

Bookmarking this for future discussions on ethical considerations regarding AI deployment.

Also seems relevant to cross-link other relevant topics as hinted at by @david551 :person_juggling:

I did something similar and it works using Originate; the voice is transmitted without any problems, but I haven’t been able to pass the DTMF tones. With this, the background voice plays regardless of which application or point the channel is in.

[incomingBin]
exten => s,1,Answer()
same => n,Set(CONFNO=conf-${UNIQUEID})
same => n,Set(CHANNEL(hangup_handler_push)=end_conference_user,s,1)
same => n,Originate(Local/music@background_channel,exten,background_channel,music,1,30,v(CONFNO=${CONFNO}))
same => n,Originate(Local/start@ivr_channel,app,ConfBridge,${CONFNO},user_profile,30,v(CONFNO=${CALLERID(num)}))
;same => n,DumpChan()
same => n,ConfBridge(${CONFNO},ivr_bridge,user_profile)
same => n,Hangup()

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.