yudha2008 at gmail.com Guest
|
Posted: Fri Jan 09, 2009 7:47 am Post subject: [Freeswitch-users] Fax Tone Detect |
|
|
Hi,
I want to get the events for the tone detect but i cant able to get any events,
Procedures i follow to done detect:
Step 1:I have added the line in default.xml
<extension name="Local_Extension">
<condition field="destination_number" expression="^(1[0-9][0-9][0-9])$">
<action application="set" data="dialed_ext=$1"/>
<action application="tone_detect" data="fax 1100 r +5000 transfer fax XML default" /> ===>I have add this line
<action application="answer"/>
<action application="info"/>
<action application="export" data="Answer-State"/>
<action application="log" data="INFO Answer-State [${Answer-State}]\n"/>
<action application="record_session" data="$${base_dir}/recordings/${destination_number}_${caller_id_number}.wav"/>
<action application="export" data="dialed_ext=$1"/>
</condition>
I have added the line to detect fax.
Quote: | <context name="default">
<extension name="fax"> <condition field="destination_number" expression="^fax$">
<action application="answer"/> <action application="sleep" data="1000"/>
<action application="set" data="fax_file_name=/tmp/fax/${caller_id_number}-${strftime(%Y-%m-%d-%H-%M-%S)}.tiff"/>
<action application="set" data="fax_mode=recv"/> <action application="socket" data="127.0.0.1:8084 async"/>
<action application="hangup"/> </condition>
</extension></context> | Step 2:Then reloaded freeswitch console using reloadxml command
reloadxml
API CALL [reloadxml()] output:
+OK [Success]
2009-01-09 17:49:51 [INFO] mod_enum.c:806 event_handler() ENUM Reloaded
2009-01-09 17:49:51 [INFO] switch_time.c:656 switch_load_timezones() Timezone reloaded 530 definitions
Step3:Through x-lite i have dial the fax no (43951333)
Step4:I have passed events through event socket
event plain DETECTED_TONE
Content-Type: command/reply
Reply-Text: +OK event listener enabled plain ====>But i did not get any events in the event socket when i dial the fax no
Step 5:I have pasted the freeswitch log in the link http://pastebin.freeswitch.org/6713
I need to get the fax tone detect but i cant able to detect the fax tone. If any thing is wrong correct me and help to solve the problem.
--
Warm Regards,
N.Baskar |
|