[Freeswitch-users] Issues with using avmd from python script
Raghu
srraghu45 at gmail.com
Fri Jul 26 06:33:00 MSD 2013
Thanks for checking it Michael. I thought i was trying execute 'speak' when
AVMD detects a beep as below, but may be i am missing something. Please
review the code and let me know if i am missing anything:
from freeswitch import *
# WARNING: known bugs with hangup hooks, use with extreme caution
def hangup_hook(session, what):
%s!!\n\n" % what)
return
def input_callback(session, what, obj):
if (what == "dtmf"):
consoleLog("info", what + " from callback " + obj.digit + "\n")
return
elif (what == "event" and session.getVariable('avmd_detect') == "TRUE"):
consoleLog("info", "Voicemail Detected\n")
return "TRUE"
def handler(session, args):
session.answer()
# session.setVariable("hangup_after_bridge", "false")
callback = session.setInputCallback("input_callback")
session.execute("avmd", "start")
consoleLog("info", "AVMD start\n")
session.execute("sleep", "18000")
consoleLog("info", "AVMD status %s\n" %
session.getVariable('avmd_detect'))
if session.getVariable('avmd_detect'):
consoleLog("info", "Beep Detected\n")
session.execute("speak", "flite|kal|'Hi this is '")
session.execute("avmd", "stop")
session.execute("speak", "flite|kal|'Hi this is '")
consoleLog("info","callback returned %s!!\n\n" % callback)
session.execute("avmd", "stop")
consoleLog("info", "AVMD stop\n")
session.setHangupHook(hangup_hook)
session.hangup() #hangup the call
Appreciate it!
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.freeswitch.org/pipermail/freeswitch-users/attachments/20130725/0ce705e0/attachment.html
Join us at ClueCon 2011 Aug 9-11, 2011
More information about the FreeSWITCH-users
mailing list