User:Birgit bachler/Freeswitch: Difference between revisions
No edit summary |
No edit summary |
||
Line 30: | Line 30: | ||
</pre> | </pre> | ||
== | == Python Dialplan API == | ||
Python Dialplan API == | getting digits maybe via dialplan? | ||
<action application="set" | <action application="set" | ||
data="foo=${python(my_script)}"/> | data="foo=${python(my_script)}"/> |
Revision as of 15:22, 28 April 2011
Py PlayAndGetDigits
playAndGetDigits(int min_digits, int max_digits, int max_tries, int timeout, char *terminators, char *audio_files, char *bad_input_audio_files, char *digits_regex)
tempfile = "/path/to/song.mp3" in_rslt = self.session.playAndGetDigits(1, 1, 1, 1000, "*#", tempfile, "", "") actual_result = in_rslt[1] if not actual_result: actual_result = int(actual_result)
Python Dialplan API
getting digits maybe via dialplan?
<action application="set" data="foo=${python(my_script)}"/>