Bridge

pchero on June 13th, 2014

Freeswitch 에서 Python 으로 dialplan 작성시… Call-Bridge 를 해야 하는 경우.. call_addr = ‘sofia/profile_name/call_to@host_ip’ session.execute(“bridge”, call_addr) 과 같이 입력하면 된다. Freeswitch Python 모듈에서 제공하는 Transfer 의 경우, 이미 작성되어 있는 Dailplan 으로 넘겨주는 역할밖에 하지 못한다. 즉, 다른 곳으로 전화를 걸어서 그쪽으로 넘겨주는 기능이 아닌 것이다. 가장 대표적인 기능이 음성 사서함에서의 콜백 기능인데, 콜백 기능을 […]

Continue reading about [Freeswitch] python-bridge