User:Birgit bachler/Freeswitch: Difference between revisions
No edit summary |
|||
Line 56: | Line 56: | ||
session.recordFile(record_file,120,500,2) | session.recordFile(record_file,120,500,2) | ||
</pre> | </pre> | ||
<pre>recordFile(filename, <callback_function>, <[callback_args]>, <[max_len]>, <[silence_threshold]>, <[silence_secs]>);</pre> | |||
sessionRecordFile on FS-wiki[http://wiki.freeswitch.org/wiki/Session_recordFile] |
Revision as of 15:39, 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
So foo channel variable is set to the output of the my_script python script: ....getting digits for extenstion maybe via dialplan?
<action application="set" data="foo=${python(my_script)}"/>
getting digits for extension through dialplan and then passing my_digits to the pythonscript??????????????
<extension name="run_python_script"> <condition field="destination_number" expression="\d+"> <action application="play_and_get_digits" data="1 1 3 3000 # file.wav my_digits [12]" /> <action application="set" data="extension=${python(my_digits)} /> </condition> </extension>
Session Record
first_name = str(row[0]) last_name = str(row[1]) record_file = first_name + '-' + last_name + '.wav' session.recordFile(record_file,120,500,2)
recordFile(filename, <callback_function>, <[callback_args]>, <[max_len]>, <[silence_threshold]>, <[silence_secs]>);
sessionRecordFile on FS-wiki[1]