make breaks longer around spoken text

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5839 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2007-10-11 13:56:21 +00:00
parent c4ae4e394d
commit 24ff890bbb
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ static switch_status_t cepstral_speech_feed_tts(switch_speech_handle_t *sh, char
return SWITCH_STATUS_FALSE; return SWITCH_STATUS_FALSE;
} }
if ((to_say = switch_mprintf("<break time=\"500ms\"/> %s <break time=\"500ms\"/>", text))) { if ((to_say = switch_mprintf("<break time=\"1000ms\"/> %s <break time=\"1000ms\"/>", text))) {
swift_port_speak_text(cepstral->port, to_say, 0, NULL, &cepstral->tts_stream, NULL); swift_port_speak_text(cepstral->port, to_say, 0, NULL, &cepstral->tts_stream, NULL);
switch_safe_free(to_say); switch_safe_free(to_say);
} }