add video examples to default config
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7590 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
52760a9ea1
commit
f4bbd19232
|
@ -10,6 +10,7 @@ applications/mod_voicemail
|
||||||
applications/mod_limit
|
applications/mod_limit
|
||||||
applications/mod_expr
|
applications/mod_expr
|
||||||
applications/mod_esf
|
applications/mod_esf
|
||||||
|
applications/mod_fsv
|
||||||
#applications/mod_soundtouch
|
#applications/mod_soundtouch
|
||||||
#applications/mod_rss
|
#applications/mod_rss
|
||||||
#asr_tts/mod_cepstral
|
#asr_tts/mod_cepstral
|
||||||
|
@ -21,7 +22,7 @@ codecs/mod_g723_1
|
||||||
codecs/mod_amr
|
codecs/mod_amr
|
||||||
codecs/mod_g729
|
codecs/mod_g729
|
||||||
codecs/mod_gsm
|
codecs/mod_gsm
|
||||||
#codecs/mod_h26x
|
codecs/mod_h26x
|
||||||
#codecs/mod_voipcodecs
|
#codecs/mod_voipcodecs
|
||||||
codecs/mod_ilbc
|
codecs/mod_ilbc
|
||||||
codecs/mod_l16
|
codecs/mod_l16
|
||||||
|
|
|
@ -44,6 +44,7 @@
|
||||||
<load module="mod_voicemail"/>
|
<load module="mod_voicemail"/>
|
||||||
<load module="mod_limit"/>
|
<load module="mod_limit"/>
|
||||||
<load module="mod_esf"/>
|
<load module="mod_esf"/>
|
||||||
|
<load module="mod_fsv"/>
|
||||||
|
|
||||||
<!-- Dialplan Interfaces -->
|
<!-- Dialplan Interfaces -->
|
||||||
<!-- <load module="mod_dialplan_directory"/> -->
|
<!-- <load module="mod_dialplan_directory"/> -->
|
||||||
|
|
|
@ -238,6 +238,22 @@
|
||||||
</condition>
|
</condition>
|
||||||
</extension>
|
</extension>
|
||||||
|
|
||||||
|
<extension name="video_record">
|
||||||
|
<condition field="destination_number" expression="^9993$">
|
||||||
|
<action application="answer"/>
|
||||||
|
<action application="record_fsv" data="/tmp/testrecord.fsv"/>
|
||||||
|
</condition>
|
||||||
|
</extension>
|
||||||
|
|
||||||
|
<extension name="video_playback">
|
||||||
|
<condition field="destination_number" expression="^9994$">
|
||||||
|
<action application="answer"/>
|
||||||
|
<action application="play_fsv" data="/tmp/testrecord.fsv"/>
|
||||||
|
</condition>
|
||||||
|
</extension>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<extension name="delay_echo">
|
<extension name="delay_echo">
|
||||||
<condition field="destination_number" expression="^9995$">
|
<condition field="destination_number" expression="^9995$">
|
||||||
<action application="answer"/>
|
<action application="answer"/>
|
||||||
|
|
|
@ -62,7 +62,7 @@
|
||||||
H264 - H.264 Video
|
H264 - H.264 Video
|
||||||
|
|
||||||
-->
|
-->
|
||||||
<X-PRE-PROCESS cmd="set" data="global_codec_prefs=G722,PCMU@20i,PCMA@20i"/>
|
<X-PRE-PROCESS cmd="set" data="global_codec_prefs=G722,PCMU@20i,PCMA@20i,H263"/>
|
||||||
<X-PRE-PROCESS cmd="set" data="outbound_codec_prefs=PCMU@20i,PCMA@20i"/>
|
<X-PRE-PROCESS cmd="set" data="outbound_codec_prefs=PCMU@20i,PCMA@20i"/>
|
||||||
<X-PRE-PROCESS cmd="set" data="xmpp_client_profile=xmppc"/>
|
<X-PRE-PROCESS cmd="set" data="xmpp_client_profile=xmppc"/>
|
||||||
<X-PRE-PROCESS cmd="set" data="xmpp_server_profile=xmpps"/>
|
<X-PRE-PROCESS cmd="set" data="xmpp_server_profile=xmpps"/>
|
||||||
|
|
Loading…
Reference in New Issue