User:Birgit bachler/Freeswitch: Difference between revisions

From XPUB & Lens-Based wiki
No edit summary
Line 46: Line 46:
         </condition>
         </condition>
  </extension>
  </extension>
</pre>
== Session Record ==
<pre>
first_name = str(row[0])
last_name = str(row[1])
record_file = first_name + '-' + last_name + '.wav'
session.recordFile(record_file,120,500,2)
</pre>
</pre>

Revision as of 16:37, 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)